From b06fe3dee1beac8ec8126f06d0a72b93ddfdc5bd Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Wed, 21 Sep 2016 11:13:23 -0700 Subject: [PATCH 01/55] Ohshit --- code/__HELPERS/matrices.dm | 9 +++++ code/modules/bossstuff.dm | 78 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 code/modules/bossstuff.dm diff --git a/code/__HELPERS/matrices.dm b/code/__HELPERS/matrices.dm index 8086121..10d0636 100644 --- a/code/__HELPERS/matrices.dm +++ b/code/__HELPERS/matrices.dm @@ -24,6 +24,15 @@ //doesn't have an object argument because this is "Stacking" with the animate call above //3 billion% intentional +/proc/animate_shockwave(var/atom/A) + if (!istype(A)) + return + var/punchstr = rand(10, 20) + var/original_y = A.pixel_y + animate(A, transform = matrix(punchstr, MATRIX_ROTATE), pixel_y = 16, time = 2, color = "#eeeeee", easing = BOUNCE_EASING) + animate(transform = matrix(-punchstr, MATRIX_ROTATE), pixel_y = original_y, time = 2, color = "#ffffff", easing = BOUNCE_EASING) + animate(transform = null, time = 3, easing = BOUNCE_EASING) + return //Dumps the matrix data in format a-f /matrix/proc/tolist() diff --git a/code/modules/bossstuff.dm b/code/modules/bossstuff.dm new file mode 100644 index 0000000..4806501 --- /dev/null +++ b/code/modules/bossstuff.dm @@ -0,0 +1,78 @@ +/* +Information: +State 0 = INACTIVE +State 1 = ACTIVE +State 2 = ACTIVE, PHASE 2 +State 3 = ACTIVE, PHASE 3 +State 4 = DEAD + +*/ +//I KNOW ITS A OBJECT, I DONT WANT PLAYERS CONTROLLING IT +/area/BossArena + name = "Boss Arena" + +/obj/boss/crystal + name = "Strange statue" + desc = "What" + var/state = 0 //State of the boss, used for things, Start at 0 + bound_width = 96 + bound_height = 96 + var/health = 2000 //temp value, will adjust for amount of players in the Arena + var/list/opponents = null // I SEE ALL + var/list/fists = null // Start null, catalog fists on New() + + +/obj/boss/crystal/New() + var/area/A = get_area() + if(!istype(A,/area/BossArena)) + qdel(src) //Don't fucking SPAWN THIS OUTSIDE THE ARENA REEEEEEEEEEEE + +/obj/boss/crystal/attacked_by(obj/item/I, mob/living/user) + if(!(I.force > 5) || I.damtype == STAMINA) + user << "The [I.name] does no damage!" + else + take_damage(I.force,I.damtype) + + + +/obj/boss/crystal/proc/take_damage(var/damage, var/damtype) //Do damage calculations + if(damtype == STAMINA) + return //Immune to Stamina damage you fucks + health = health - damage + + +/obj/boss/crystal/bullet_act(var/obj/item/projectile/Proj) + take_damage(Proj.damage,Proj.damage_type) + +/obj/boss/crystal/proc/activate() //This turns on the boss, who knew? + START_PROCESSING(SSobj, src) + state = 1 //I HAVE AWOKEN, MORTALS + + +/obj/stonefist + name = "large stone hand" + desc = "A large hand, made of stone." + bound_width = 64 + bound_height = 32 + icon = 'icons/obj/items.dmi' + icon_state = "latexballon" + +/obj/stonefist/proc/smashdown() + //Play animation + var/list/turfs1 = circlerange(src,2) + var/list/turfs2 = circlerange(src,3) + turfs2 =- turfs1 + turfs1 =- get_turf(src) + var/list/turfs3 = circlerange(src,4) + turfs3 =- turfs2 + world << "FUCK" + for(var/turf/T in turfs1) + animate_shockwave(T) + spawn(2) + for(var/turf/T in turfs2) + animate_shockwave(T) + world << "FUCK2" + spawn(2) + for(var/turf/T in turfs3) + animate_shockwave(T) + world << "FUCK3" \ No newline at end of file From 18dbd0a2ba6bcf3796504ad0bf85b132a3388406 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Wed, 21 Sep 2016 11:13:26 -0700 Subject: [PATCH 02/55] GFuck --- tgstation.dme | 1 + 1 file changed, 1 insertion(+) diff --git a/tgstation.dme b/tgstation.dme index 2a8df15..23f7aeb 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -844,6 +844,7 @@ #include "code\game\turfs\space\transit.dm" #include "code\js\byjax.dm" #include "code\js\menus.dm" +#include "code\modules\bossstuff.dm" #include "code\modules\admin\admin.dm" #include "code\modules\admin\admin_investigate.dm" #include "code\modules\admin\admin_memo.dm" From d23561c66f44ae64793321d8073980fb2f281fb0 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Wed, 21 Sep 2016 11:13:37 -0700 Subject: [PATCH 03/55] Revert "GFuck" This reverts commit 18dbd0a2ba6bcf3796504ad0bf85b132a3388406. --- tgstation.dme | 1 - 1 file changed, 1 deletion(-) diff --git a/tgstation.dme b/tgstation.dme index 23f7aeb..2a8df15 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -844,7 +844,6 @@ #include "code\game\turfs\space\transit.dm" #include "code\js\byjax.dm" #include "code\js\menus.dm" -#include "code\modules\bossstuff.dm" #include "code\modules\admin\admin.dm" #include "code\modules\admin\admin_investigate.dm" #include "code\modules\admin\admin_memo.dm" From 6ef8497f0f821ba6a21c83bbdbadd6aa4ac22c25 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Wed, 21 Sep 2016 11:13:41 -0700 Subject: [PATCH 04/55] Revert "Ohshit" This reverts commit b06fe3dee1beac8ec8126f06d0a72b93ddfdc5bd. --- code/__HELPERS/matrices.dm | 9 ----- code/modules/bossstuff.dm | 78 -------------------------------------- 2 files changed, 87 deletions(-) delete mode 100644 code/modules/bossstuff.dm diff --git a/code/__HELPERS/matrices.dm b/code/__HELPERS/matrices.dm index 10d0636..8086121 100644 --- a/code/__HELPERS/matrices.dm +++ b/code/__HELPERS/matrices.dm @@ -24,15 +24,6 @@ //doesn't have an object argument because this is "Stacking" with the animate call above //3 billion% intentional -/proc/animate_shockwave(var/atom/A) - if (!istype(A)) - return - var/punchstr = rand(10, 20) - var/original_y = A.pixel_y - animate(A, transform = matrix(punchstr, MATRIX_ROTATE), pixel_y = 16, time = 2, color = "#eeeeee", easing = BOUNCE_EASING) - animate(transform = matrix(-punchstr, MATRIX_ROTATE), pixel_y = original_y, time = 2, color = "#ffffff", easing = BOUNCE_EASING) - animate(transform = null, time = 3, easing = BOUNCE_EASING) - return //Dumps the matrix data in format a-f /matrix/proc/tolist() diff --git a/code/modules/bossstuff.dm b/code/modules/bossstuff.dm deleted file mode 100644 index 4806501..0000000 --- a/code/modules/bossstuff.dm +++ /dev/null @@ -1,78 +0,0 @@ -/* -Information: -State 0 = INACTIVE -State 1 = ACTIVE -State 2 = ACTIVE, PHASE 2 -State 3 = ACTIVE, PHASE 3 -State 4 = DEAD - -*/ -//I KNOW ITS A OBJECT, I DONT WANT PLAYERS CONTROLLING IT -/area/BossArena - name = "Boss Arena" - -/obj/boss/crystal - name = "Strange statue" - desc = "What" - var/state = 0 //State of the boss, used for things, Start at 0 - bound_width = 96 - bound_height = 96 - var/health = 2000 //temp value, will adjust for amount of players in the Arena - var/list/opponents = null // I SEE ALL - var/list/fists = null // Start null, catalog fists on New() - - -/obj/boss/crystal/New() - var/area/A = get_area() - if(!istype(A,/area/BossArena)) - qdel(src) //Don't fucking SPAWN THIS OUTSIDE THE ARENA REEEEEEEEEEEE - -/obj/boss/crystal/attacked_by(obj/item/I, mob/living/user) - if(!(I.force > 5) || I.damtype == STAMINA) - user << "The [I.name] does no damage!" - else - take_damage(I.force,I.damtype) - - - -/obj/boss/crystal/proc/take_damage(var/damage, var/damtype) //Do damage calculations - if(damtype == STAMINA) - return //Immune to Stamina damage you fucks - health = health - damage - - -/obj/boss/crystal/bullet_act(var/obj/item/projectile/Proj) - take_damage(Proj.damage,Proj.damage_type) - -/obj/boss/crystal/proc/activate() //This turns on the boss, who knew? - START_PROCESSING(SSobj, src) - state = 1 //I HAVE AWOKEN, MORTALS - - -/obj/stonefist - name = "large stone hand" - desc = "A large hand, made of stone." - bound_width = 64 - bound_height = 32 - icon = 'icons/obj/items.dmi' - icon_state = "latexballon" - -/obj/stonefist/proc/smashdown() - //Play animation - var/list/turfs1 = circlerange(src,2) - var/list/turfs2 = circlerange(src,3) - turfs2 =- turfs1 - turfs1 =- get_turf(src) - var/list/turfs3 = circlerange(src,4) - turfs3 =- turfs2 - world << "FUCK" - for(var/turf/T in turfs1) - animate_shockwave(T) - spawn(2) - for(var/turf/T in turfs2) - animate_shockwave(T) - world << "FUCK2" - spawn(2) - for(var/turf/T in turfs3) - animate_shockwave(T) - world << "FUCK3" \ No newline at end of file From 1614366cf46b0971553dfc2427fb2f871d8e6007 Mon Sep 17 00:00:00 2001 From: tortellinitony Date: Wed, 28 Sep 2016 11:13:24 -0400 Subject: [PATCH 05/55] limbflower and buttflower icons (#21) --- code/game/machinery/vending.dm | 2 +- code/modules/hydroponics/grown/buttflower.dm | 1 + code/modules/hydroponics/grown/limbflower.dm | 35 +++++++++++++++++++ icons/obj/hydroponics/growing_flowers.dmi | Bin 12085 -> 13542 bytes icons/obj/hydroponics/harvest.dmi | Bin 47750 -> 48126 bytes icons/obj/hydroponics/seeds.dmi | Bin 21218 -> 21358 bytes tgstation.dme | 1 + 7 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 code/modules/hydroponics/grown/limbflower.dm diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 3aa13dd..ab6f81f 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -842,7 +842,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C product_slogans = "THIS'S WHERE TH' SEEDS LIVE! GIT YOU SOME!;Hands down the best seed selection on the station!;Also certain mushroom varieties available, more for experts! Get certified today!" product_ads = "We like plants!;Grow some crops!;Grow, baby, growww!;Aw h'yeah son!" icon_state = "seeds" - products = list(/obj/item/seeds/ambrosia = 3,/obj/item/seeds/apple = 3,/obj/item/seeds/banana = 3,/*/obj/item/seeds/buttseed = 3,*//obj/item/seeds/berry = 3, + products = list(/obj/item/seeds/ambrosia = 3,/obj/item/seeds/apple = 3,/obj/item/seeds/banana = 3,/obj/item/seeds/buttseed = 3,/obj/item/seeds/limbseed = 3,/obj/item/seeds/berry = 3, /obj/item/seeds/cabbage = 3,/obj/item/seeds/carrot = 3,/obj/item/seeds/cherry = 3,/obj/item/seeds/chanter = 3, /obj/item/seeds/chili = 3,/obj/item/seeds/cocoapod = 3,/obj/item/seeds/coffee = 3,/obj/item/seeds/corn = 3, /obj/item/seeds/eggplant = 3,/obj/item/seeds/grape = 3,/obj/item/seeds/grass = 3,/obj/item/seeds/lemon = 3, diff --git a/code/modules/hydroponics/grown/buttflower.dm b/code/modules/hydroponics/grown/buttflower.dm index 2dddeea..a86c348 100644 --- a/code/modules/hydroponics/grown/buttflower.dm +++ b/code/modules/hydroponics/grown/buttflower.dm @@ -10,6 +10,7 @@ maturation = 8 production = 6 yield = 1 + growing_icon = 'icons/obj/hydroponics/growing_flowers.dmi' potency = 20 plant_type = 0 oneharvest = 1 diff --git a/code/modules/hydroponics/grown/limbflower.dm b/code/modules/hydroponics/grown/limbflower.dm new file mode 100644 index 0000000..ef396f9 --- /dev/null +++ b/code/modules/hydroponics/grown/limbflower.dm @@ -0,0 +1,35 @@ +/obj/item/seeds/limbseed + name = "pack of replica limb seeds" + desc = "Replica limbs, like arms and legs. Break a leg!" + icon_state = "seed-limb" + species = "limb" + plantname = "Replica Limb Flower" + product = /obj/item/weapon/reagent_containers/food/snacks/grown/limb_spawn + lifespan = 25 + endurance = 10 + maturation = 8 + production = 6 + yield = 2 + growing_icon = 'icons/obj/hydroponics/growing_flowers.dmi' + potency = 20 + plant_type = 0 + oneharvest = 1 + growthstages = 3 + +/obj/item/weapon/reagent_containers/food/snacks/grown/limb_spawn + seed = /obj/item/seeds/limbseed + name = "limbplant" + desc = "A cluster of limbs sprouting from a stem." + icon_state = "limbplant" + +/obj/item/weapon/reagent_containers/food/snacks/grown/limb_spawn/canconsume(mob/eater, mob/user) + return 0 + +/obj/item/weapon/reagent_containers/food/snacks/grown/limb_spawn/attack_self(mob/user as mob) + if(user) + user.unEquip(src) + var/obj/item/bodypart/L = newBodyPart(pick("r_arm", "l_arm", "r_leg", "l_leg")) + L.loc = get_turf(src) + L.skin_tone = random_skin_tone() + L.update_limb() + qdel(src) \ No newline at end of file diff --git a/icons/obj/hydroponics/growing_flowers.dmi b/icons/obj/hydroponics/growing_flowers.dmi index e1f308c87b4cc30412c59259d7472ded72a46722..264759f19ffff7cf7b40d05cfd75b624cd907e3a 100644 GIT binary patch literal 13542 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 PF9GDGRir8~4vSOV-QC^&Zol)L`{Ujp@4n~E zB$*^nGMRTaVG42*D2N1z0000*N>Wq_{LcONz{7%nBPL83!LK8C6%9vGBZuGiX10!I zHr4=uYi3fc5K<2*Uhu??x@UufqSk_r0S3>k&$m~07>~hRs!cb2Ah+*cj{MwlZ#DDzO!f95$YmE8MG{_R2CcDD0 zJN77oZ_pZ-yXFZOS>mw&is2-!ZeszdmML9-ee1r7M#x@x-Hu;@$tp&ZG+VVe2L7DF zTq*G6mm5Af5zRj4A*gp^P7AWh?DL7M8#m70=qrdDJBYO8H_|KhhtlLPU63R;Ej+3Y z0lmto_uNehgY|lWYEd9ePneqn#!vH_nz6-wgWfU9!01`rsxeuO!cXzO7T z6j;XghIpQ;xOXvGCJG)K;dgJL9M+lU64jYm00@~rAoSj^pL+eC~p4tFj?I(xTip=yMX%a3bfv9*JUP~r)zteH_ro4I(#;0gB0<^V;pI9V5+HiL z=yuHL7uS~~8|WSoubilnSr`!+Ps*%^xAnKnQ(XPGT=C44W^t%oYIJHWU6`X(fhNCc zqyv&8*f60M&~Cav58UrzjyMnti93{pkSNkUrQ~~^TmY2>%R;(|j((=GV`KLg2ZA^5 zs_1IEPkFnROH;e|!`<|y>dsZFeCaYMI||h~;5PIovg6Mq|j8 zKfN*h^mVi2@IY<|coQOZem|6?2X~CtbmQOf_$X1hXbamcs+P@@gz5_*qqmkC)(T?RVo&XX z^>O>r!@lJVJZKdMRQYooUyD;sJO}qjcQp+3In=_G{d${?MLi5BqiMS5NkRsGk(T1` z&Z}c{7jAB=hEui%TuM;N<=pwuZG;!<=h&pSSTZB2#AO}M-&rLwr9j$x<-AH1Snd=m}&%fu>%y8~8 zdGIl|uBh$(;Nev=QZpKntK&7WwUv|CGTP|MnZ*F1)_9iTqZ6|q775MxjrQ~4ss+s=xxNS&q~r@elS)%d0D zK-q0d>6;PM2hB)tU)|5Ld=_VsjDui9VXcnVA2>En+tPEVTeJ zO3k57Jb%f(SBztJvb$Koi;jpLj{1gQlp3gEMBEMWJup;ZII|yJL+aq~(CY0$#xZ=Y z5H7FrM`~Q{@*;}9qR^kl>0ygm9e*|Y;}EmNf)FQRWens}FSidg++o1XIRrZ#uX?d@wQ(g-vw@$d4VaX#ybp;I zx#*wHUCAG^nldXU>TF?JhQ%xK=9Zk(D!SP=inN0sM?vyDQL(zTXo*E%D&O1M!>&X3hg3fU$qrc zaXl3G=EYg=SCfn(mQ!EoHNGiA;us1Gp`Ksb_i1{asI@v~UnoYPRqK#;(k|(vDz$ew zoogK+Vx*W=+|*9Lu^vBQci7S244n}F3zkTl-y^a$_*>;_=B@_c%TI56E6m9npq?9H zrQC!N65w;FN*5@-**`JGZ2O6GjO$|mwTaBT7Y#NH-yQj=8%BrxCsXmI*`*3>=vV0S zh6-fu?lw3q+B#gaOh^fJ39>@H#?;apwMhY4dzH7(6B-u-lW$JRfj(VrwKkW(-*piZ z&l{UFzcMSa)O@bfi-sf-`Y7FDUH5=L^IFew&Z#-iR0-dYp zUa0IBOAG=}=U6SyFNSW{y95SVeDGz7@DktYUN9ipa59@wX-|A!dk2|8hhDRq@UzSA zhemGJ#lGt$PTeK5?vthn@OXiYdgwZ;96QVziWYNh;~qq~y!LaFQ+%RE@Eu)O)|1^` zi?bRoyjR6g+|i4+(zfJNRzFJc-y{-D8En&-JImzoRuh7sXh*~|eI z(K@hhy{$XcJ8{IT2x!|vO2EQ|Cc6dAuP7kC%=R+T=kvsU|MuyR>YsHLX>5Tqi~K{6 znU*!23vJIjez{)afWGa{+;no3At8rHlOz~|Nh|z;(Isu4_wvspuY^;zGG!bLaCxg| zWbjQe;Tl5yC8noFsJlg&txkRi5$8MmLeI%`UEvWV_u(iqA(%OOwIblDMuf!=+v4tB{2w za#47?anLS3Cw6z|8wT}gy2hxz>58%An*XicCRP*xp~tE+So<$Up2SYp@@$0*C_-(2 za5$F9Ee0le{=g~Gc0>dbh3FX2*JGe#`ifU~TaR&as9?Rf^&0gYbNbD|e3hVeMubOh zhGrxyVZ=VMgqTVQq5>Snt`fME`)cA`F6%6q#~wOF7#@dh^vOFH^A@2^ft;W2piT!x zpd{03RqLGw)V$7!-FvMAWY4#n4{a}ei5hd{S6g0IWRn`WK@HrGwd%QeE>rSGgBQ&5 zuh&ER^7Dy4jM{A{nqh&f-07afqd zCdF{O-t8#*%SGO)BWEJpoLB2aEIn@6g)20hfY3F}!NOgz!N6cs-x$z`2KOmyLEu-6 zgl2BjQ(c`_!3uL~Dj-5cBV_q7j1W8oamj)6dq`cK4A8( zN<^d2POqeWI@xP3$cy%rc=+Z*X8`Ys$$Q)*)xn+7L06LP@cs}To1EUrS^7eZP<%wC z13@SGJiI+sqVp*I<+I>;&9ACOCRv50e9Y@E&Q6GT7i3IaXh#G=N6c3h)`%N-fr~~< zuM}ZabVR<8yFPuV*p#f0k?rjWnNIZJHCQRGa}A7dzcj|afAz_XBtRD{ERAO*9E^8a z!Gj>)N&^F93N?mr{{dA{P z>qicMszG~E@kxPg=v5G?G$PCG$H@)*>G!{x4A@X@t&fMk?h@DnToMkZfna7aFmKQL zNRTuPn2)^b=t!6o8q8%Dsp}ydQ3LOL*H~`3W9hAB71~Us| zZVSN7oRZW2Q}qk5aZ4kiTmtb}VsY-EsmE^Ho%ekukOtQjk#!EIgrAd39sWx0QFY5P z`b2hh&Vtjugic=ps$Gc=|<|{@ZuCs9F>S z(rC6Xs!d3~S9bM`)Yl1iWVKv%D!~3GrwJ;>B7`rp97XFQ)d?^spqY)s)9ux}(Z6T+ zQ#R3`%p){K{FaY+H%~7j?T9OFsJpqdHF((eQkHLUqn6Z~;X6M+Rma6x)B}BN4qq3x z2bcP#%mPJmX+l(*Dzeha0cyG(I<~+NT?R<;cZ-5qW6I z2%CT^h0bhk%F+p`a56V&T-ifC*y{++fT%ni~gM0 z<*ts%*VW~~a7l{Df6SOisuBW)4qvLN#MS!sCd%plZ1zNlK#Me~N0UjH2!cC5bKnfC zQO0-d!752L1nJzCv!OGq-Tt81sqY}F^1;RnyE$4h9iCBHyk z>11V<3mK{X5hyU3?N$r`Q=VGXkckPx+@fkDVs!EM;41+wNpQ&*k(%GskdHn=1vT^J zo%!zCflYO)GchKO1?=h@pOyB(kdmHzAaFb=3Li`r48Ux6TkJ*A%{bLpa-t209+>1cdFT7&4p5 zRkL4+SkZ!XeTe|&$(~FCo|F=D*$xs!NDhM{e1Yf$oxJx-A-fOYi=+@tt)G_XaNRLq zvwliI4@r@PcD}XEFF8*~US0R9M+5&dzNBw}uafXiQcQ+IW6uwPLKNHy4(<5UUq{vT2f?qTiQ$g;`8#fXTAre3%Z>V+X7N$)Z34SNky=Q-wd=bc^RgGEjohv! zr~OJ@pdxr-auJVM^-MeQ>lc_s=n7f>FB?yb+BWE@q=CUY2EOGwOZIQTXoH@weIKqdh-sFReJ-!3nc z^>@3cNrF_BtA$T}e~Y(Uay#AgPpXO17aYC9-tc}kwcg6Ni$hF*$R56v(6W?_bJvm( zPNFLyHrUxex(H7k3i9iEuman(opjGChys!R7`&B5<@GrFFFhceCj-f}R}*tQfea zb+||b2H3(7SQWb;a0G{|^j?tQ7=C$sdxO*KW48;KAZlBs7?51ssCc z>8U~OFV`={Rwyg+AQ6O`&M#f+2msd4fw)O4C!-m5CIS$b_eDx>POH;62zvKe3!$&^ z6r&oBX(lA=D0VG$78TX-d*BEfQkp?{cX31jezzOoT$+V|vKsOkK&mN%KfdoxKA~CmbYhNSu9ovoOSzwxoZ_2)@ zGwED;Yf~SiA17sQfXkcb(N4e|7{Tzu`Lh7a)}q{6`8eSULB)3$tspw7Am8o+nG5~F zxR=GvE}J@H&nM*C(>{c`+Vh$1m2tv-9T%{Q@8E^2*Q}3k{^K_j90zLsOgA{&WXdZu zx3AM-D&rI8BZ6d1{(_^2f@<{qYl9z~uF%}!tn9}MWsjO!RYFH2#|J)>U~VvcUCf-T zV);6>o|5oM^KRfHgfK!6l>gnoKrN0&!NM-WQsq6@VB#|Ckg!wUU#C531F)Q*QfEdh zgLY3+%69Sz>~$QTJX0z z7O6z*hJ7Rw{_%MDM(oBeM7P2bh^EU$<+LnU@qTdbZm?#KTO3FZT=V1b@!Za`SL$(f zV<`UH>r*DTb-!uT2uR{5i&}q^w)4!(XlQ(-nn>GCvyS>AgyHwVzfirp$%SqMK?CR6 zs?8IL=5b#-Ix@mxcQDGcTM&q#M3_r?73N`d(Wxl;#UZCzeVNWuMKg=|YAlna+BD$+ zrwRvBJ<36eB=J-kVY}mrh<#{bFy-b#7jp{Mv^L#}=9Rr3#pXR|Vl0u2fDN;m+nrd% zKU;KjdnW*m<5{$T?=j;`muNMAZo86}!*p_P3 zPXE#k@qxX^z`XRRXLM(`!jJ^7x>GFVw!e($ljE(!i4983y_5*PCk5>u;*V^U0I)3X zd?zwVn6etvnVNYj*kp(Wu1_7GuD5}ZtM40XicKSVvKlSs*e-u z(oQRMpZ?fx0LuvAR#hxYY^lKMjSiWyG%)g^K|w_+8%vi(K)K?)oVhs49zNy_jgChk z*fJ9)UVYz8W#yZmcC)kBhrhE|5O`IWI~%@TO=vFf^(x#ff)cc0UdJBcv(w4tnRJ6` zLg$kYDf>J~5ck;EF>UM|QS#T2l3a3dG-QXeB$Z3xSDDJW4j7$LPtITbO}0Qlv%@~o z_1`Ve`1jhPpYs!1w=4&PBj`~$A!Cf(HtOdMZKcFwJA9_tHd1nP%d;Jz- z*CQ7Z`|HqPY8gPtT-cbU$?z&qp?GzXi6!&||8=@#DhU%tkJmL!py}*q0Y&M;exV8C zICwHnd(Ig2C|Cr?7z7Ed5;27&#`&4-K)UhgM`P(r z^NN;r7+6H%g{xkJ60j$(Z$XBCGE)o^h``?00}^=EWUpcs9zp`MZ4C{2h?FQfjXXYK zum)}HIx3ktsWDdP2uN0n1H_DZOqf9+Rtc!oMB9+aFx0KWej9hW`JMyf#D8un=~#bG zA_)h>Sx7z#u5BCy4|18`h30XDwy_?hF9;jS-lr3cvI#e1x;Dtb6$9!--J7POC_Vp| zd4&8=v=Tc-IqIXbGe&}K4lav<&4060l&fSsbl^f2mAmNajxbw#*P4r9M%(7R_|1-6Y41%?dXATQ-)jycR{n8j{A4U^bD_p!ea2Ic!N1mzvx@*%~8 zM{e9=6Ei!vPL=vtTQ1$+nV5Gi>-Zvi6WPZm{YxTxbJpo+;cqxK`4soF60If5V=;1@4Qk9&n)%D*OpN3@K; z_fg4?N;N-3HG$U3+e+Xgjc?Ph?3J(bSmqIvDcb>Mfd<^xC;OB=eS`E*yL)S2_|Nb1 zI^&7tZ8XWJ4I#Ymb1rsg;f|S9r_iZ398z9S1vVO2C`fdBYQ{;6bw89>pg-=qz^jMe zbv%B8_mj|$d0QEvOcC71`}_DOzVEy35asz(xFjLno)+N`oZObY&t%X@Ij+r8)UWG- zW=ilv`ij4lX}OUTWpBehm%l<;RWR}ojAx0HQO>2Eo4fRUzjy99*pU*nt)@1jZ__IW z`ZuY8)>QPNV%wdw;NeZZ-IxXBP{dpZhQ#&3ZXPaXT)A8XS@E(D?>BlDhfyKf4txEE z7CaAoRo3h-MU#yiK1sl$(p|9b_4b63M^?KtqvtqeY#_+2o!fxTw-GJTs8{|;YUEbV zkC66q$uJ?*0erTKOIbK1@nN|Rmud$-p9y4Mwlm6V4eG(>tHU{Z=`hu*nDq1a{8L(8 zv3_QWa7L)gd|f$B9Om&nBj>M2k$h6&o-t;J=%FJw!Aj(Wb5%Ku%{8CPkjqBJ!Nocc z`X`qKYm^fA<0;ZI(L;KA_?jEu{7a2qIx@Nq9v6cC@tbrP5q7#R+J`6%n@Vr33LRCQ zSCbJCC=SaeeXc@$P(FjfhJYQv(73A?7qHsQ?S_#>!Wwj!V=N<#74>T%U^vI~m+NMfU%A7VRGtzlB~l6Z9bh)Nvbr`#xbL>`z_76Oozv&G2J$_>VX9j)R8={D)c2Ne`@| zxzzWS1SC&;>h)_*kXP-;e%ED|5OY`4RqmADr{Ut#la~Urs33@9j1cypzW17T zx?X8D@U8Ow$v~>J`T+z}G zgjZlnnXF$Sg*{4xt*XoPKkMx)A6Kx@WI6`U)zs2zwmvO(R`&5FO5(8 zcH(_hiUyZT$MB_EhdPhj1**#!n6EN@o&S4VMc?<~x=8cPJt6iV(!%h0`T3HbuE`7x z3_|5I)0JAdbfefR%WG&kKXB-|vywsl*Rc&eS*8sHIQ&;NZTy*XGCdV9MlCJ=@;Stf z;KqoTf4u-sBuJ$*CuK;S{QSCKy^ezfI{P1?wj6tWi!AdYo9-b0tstA~1oE`FTM>r$ zE9~(vla>vCw8Y66JVp>KR!hjy4O}y(rYfQrhOc9GP|&trsLGl;aspK7+$BGP;VGC? zn(!IPrb2E*nXYMj!@>}dL!GC^9fKXHG%!RtoU(cP@Z_))!WpLkoT(wNl7(Dq^}%Ah3B1awwsTKy&uC@8so8HAltka z7)Qx}=D95)LY!;ZjcHx5(S$#mB^X^VJ2B#n`HoW&dk~E7gexBY1o&;8Nm%JTnTrLD( zfj@39Qg8l!;^zJ<6M#2U_5UkIg2nx_{PGg;9X0dwiRr#)OKM4;C4Aj?ppT}U|F?g)IF8D&tmhu zv3`2aR_b}ql9$z{*~vMQUx@e^jfLq54MU==*m!F1EdB(7=Rr+p=!@V4t#zxMlqo74BR-@iO|+^X8GNdes$ za?W@lQdZUmRl;RzZ5gwHYEjfvQH99t>|Tn+N1qV4mw>l+FPpp9zkXRXV~>C`17p2kHCjW^U@eV}4-)g+j_MNuKxmXOJwe)I0GVtQEkiGz*Z-}xpm zpW1XX^7d~u=e@!rOY!?d2Zep-*Q-9SrDbwyMtws|T0s}PZ#?l1w7@`!bJuSiz{t#M znL`%PImyYBo$((j$Wd9e#9ovI`#rXRMIawh*Y7t(L_|E^L-L8%w#H%y@GzcrbK_i{ zJ|#rh=S2jt@!3gnfiTIK9;%$63!435tyXj#4e7?l&{LxRzP_MmtTw9DEtSSEBf8J%Dmkuo z8LPWm=}Uz+I1Dz&Ydj2~w-NI*TSGwz4C?7}_V{LmJH+Kpwk#~#Tw^v8IIx#4l4;}{ zGdl89iH2GXEg}wo;tyRu;<=;7Tz(-3`^#(F{{Src{v7`-ZG4n}C}QN-RonB7Xgzn{ zkACxsi#lPJuzDQk-F7XhOkixCutUcQ5GOiW#em)pteen%v;jGsv%zut%|C^e7c%8{ zyW|WnX#T~Imefvvf*fx6BG6t~AzDtaz58^WQ$pKLzy1lmv>YHb+nB_}VD}Kc-A4&A z%=y)UfPz9vM;8vxIxyhL{{E1|!^52ENkibm>$xBA58g`Bqg|-)%WS~`M&{i0-5&Ms zQWnldAo^(FjDIJmX_M^d${xER1l9rXeTdUoa1^Z6Ck23LH&jQJo;`?ijDOu2O&pI; z-xrTpg&r)s+0DWSV7WG$mMe7DU7)qLc@I|Lp}iVUtj23aJM)|0VUFeq zcfya@H56H)CbcnaNywRBHA!I1tv>E``t<%hsUguoK73VaS%@qiV9B&#!HO586-fNB zVqkIT!&ncqSVIP!+UxDPhp;{QUFk_74$N}02_@;OnVQ`Gmb>?ny1veKyqp2TXehcg z&+kA=X~F@4IOG1+F{JzdU()_>kDpiwwq767#NSZd>^PJkF9cyBSfO7bCr} zZww!gSZC*9T!_Rm)kTpz6Xq62SE%siPG-+Vs4(FA71GlTp`-tRhQ9lyDZe6cI4|LG z8q+=ELbSyr`}#$+<)w*bn zQB4FaE@%5<2RQy6K&<#I90=Ba+WwY4TL;%FI^TmFx zBbiPfUYiL?j^{PPL8b%hV9{7fZI$tsuGSkl^gY+a?<24iUf*W}h~K%Ust8W_AA7IV z4lY($mVX~X_U0cwFc7~_xL1_ao*T7ky7b9{&4Uh&h`<8dr&PUgGsdw|V>pD_qTdVq zG{OX8&8XhX*Iz~tKWwjcxxLeFcB2Qtp%L#2kzCW~-3$cTyvI~NL|tC8I95zNVo$k= zbP`0Rs(QV0=$x{+Te1_HnVH$|3`8;f+$KhU*^XcucDvbkd))B2;45XYK;+iO%xj*f z7?ejZoO6YC+uFDC^lE97PKi(C%=Rjs3$W`4YDT{YQ?ag6{Ox#%+I%&-fS8jSvPf~Z zaq{j55)bi9HKFtRf2x;Lx{CB5qNII#A8y32OG-|rIvC3s6!>_O2i&^zg=g^3H4=@( z&@Wk^9W8Gw8+6YH$Dhq-S26Na;#gYI{O@q1KY3?!GpF5EKW@ZW1_y^(8xE4K&H#C- zr)Fz)QPf!g)eqJMH%W||ua;D$&DiG3Ot{yp=i@C&T%VTf zC=BM$GMh(4wN|M7;YrY#u}Jko{=$jWj~_{ZA5OiDn47JUV%Jd>HoVnvjY04WMhx-l zYnK$^@Yq`rY<&kv59OC1=AB4lf#H|F1lu=3FRG6`s;y!RO(qQzu7W66z`_?*?aDFZ z-#7bX#2D-_jNuU25RDCjKO7YEzoFL9I@Or`d_?N3o>R~GSPfm^9Z`$n1dTnh_?M>` ztxYzH+*!EvvQk6%;ULyH2YoSZbHO&(g@!@XUghWLUK*&@o5~X#8+NzI@1-O=VaAc# zi~6>Q!g#?^@2SJGXL(Q^HI**`6`P(;mn84dXww1%9dmbcxAGi5^3YfZ91(E^6)!Ja zajk&2O*S@Fx~%C84jb#nmmsx6xLao!D;+xF?$*eAMpfs=D|$6KDgNo{>4JFQNMgQa zaE`qB4qS;}30BiDt9Vxa%;=lg;H6QkZfyRS5Al>Tf!CE49%XNA;2oU($;#^iKN7YS zdOe$)*881Zp1Zw&Z|!JRn`6}y$&?jO>`XYU)4xZVqU!r>h19`;%?kJT@Gh_*UU?qz z7~(N-di|_33^P4HOjSml)MNb{e2m#7?$zwh#i4dZ%chXmE*;=DCwg`B5)3L;*yimg zDlRHwZ6ijpzFplWgzaNNDQv>?QJSmKQH08Aid>u&NF&c*cHH~) z1*(cjo1VJ)yZ0WIY1Dn@*=w<|D*I@jScF{phkUo$9hAGaHP7AK-2Ou+rxgZP*4eA{ zV7-4b{AI%+LzdLt5%1jcO3e=w9uRqJawpdGmbmE4)u3<)VdUl@3DW;oYybP% b@hWhXX}}@316K;}g9k{7$%$48>-ql=gvZ>a diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index 40199bff87fa5cb862d339e6ce4d412aff03ea19..23d1cd9a1612a53ea7a4568955cc82064320512e 100644 GIT binary patch delta 14371 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 delta 13992 zcmZX41yCJL@F(u>1Pku&PSD_Pf#AU%g2NJc!JPoXU4j$b;o)w<-QD$}$M?UhtE;-I zt(vKw*`4m5p6==H-|Ib0$Sq79H30MGqowCA{msqX)yCP~#>o*1$}1x&rQ4B25G`cl zP7`g(uG)Hqt(wp{0xyzuNemn~J&9wgfX6TtyjZ**yxfnz5%!bad;?b|9uGKrxq*yy zPOKLdS4}*j+R_fqxIEs>hrT!#7WN$q_=}u)Vl(!7yl9f}WW>w}hn5;p0{xy(tCC-e zw{M!(Gx2bYI)QjG9L;VGwNRE2H6mA%pq(k}zr%Z2t}o+}sboP`lq5*VT)aeXf*&y% z=|Y$IFu#Qnoc)pB0d1Q+A~oky8T>^q<>J#X_>@?~J7pgvrpa-lKWuqp?=kt|=&RoV z)vmV7jh~r5I&F${xpgus5ul#TQQ6q_cdmrWCX7!$8Sj%TQ_{w?VBqw^PhJhF(2y2X zlvxwZ54MuYE`<_|AvhS|5t1G8r_~^|W%mqnaS@TVS4Sta4^F+m(NrQOG0e?nN)#Fz zSC?Q*LPhAvB3b%vFSg(#q6}=P`xlcp;B#f3x=B5Gd`R?kS~u|@lmNj3$2N&ixf>5& zPwv-uU7X)~@0Kb}m4W>%n9)T4s z%My6}@>fG$o~IxhVtxY#PSDsL3o=Um(vdD&rpi$I%_JRZ3?Tf$K_kG&SK@7wLxv>c@*8~oz5eBzi0?RC|YiXBb9#k^R%o~J)!A|bY zxIcAKo&p}PPBCqK9v|D@D1OulOZ^}-|5eKd%MSv4uOCW=TY)#B+6jwwI?8fNIx3V1 zGlNgG5gO|Dc6O1*^TpbqcC8F3`lijkE{vT4!gSRYF!$#7Ca z!z|7Zjau9_13-pgVk(woaw_tcf4kAO!uU|CTeiOInAO_7f3_wH)|fA}kdP1(9L%re zWI8~p_sdF7qr_TGY24cj&x4TfZdpH;d_r~d(-#(J`&6c#;`JXYh&5!c64SJ8m;9aK z3Lb=rvN&183Ni-8==zE~)%6>y`!cl4M9vgg@_tWF%yp4=k6m(um;MNy_Dy_1r?Vz+_Re%rA@a<##Cj{! z&y>F7D+KQD2>E2z{58GBNg2E~BMCoCLV~ z5%uflMv%hqkujFW?rn*%BP}hh#G+U=TSZwJ-LWzKdi>ab^mx8Xb#VS;JG|uD+Jfnp zy>_qgnxGn3zS|7Cs*&I0x9C^=OW|dVIOo4pG``g$dfWN8$MUi=m4y2`V@t<2io+Rvf*@dex)J&#wKO&p^yHClQ#YWA#!*GtM? z9@9}pSBuPg_Mb%gNwp*y(XpbHri z{hi*H6)QP4$p1ex9uYO{TH}YZgTmdP_1R#2Z{v2sXb;rlpMa$5q1*r@3l)zkon`pb zNdrFG7>#2WFOf{Ii!LcS=nd}!hH|tjFohPp-*c3Wz45&mZ6PgQEJ<*Fb5h)LxEO12 z`J&u*R$O$U;O8${nQ_ZQG3W*%-#L0{Mg7MSyF4~321|L_=KG(ePuHz^w$4s^;R@1~ zc;rHInhn{6gaP4HK{vXmyVIWYd;0Q6htkuEK+*VcIi1Ls@!45sQwIZOFmfc7t${DI ziIYVNfy~$W-NU5nhSQy(0vYU9HJRm_0Dqph*H`9i9r$L8T~d$yCfCaFP#tpB|B?Oej{RN0J*na%{+}`JX$p!bARiN6=&H~Yk=X{tYlO`mgX z1cmN&D*|MyK<$!A7kd@&0|^IJ`3?r7Er5kqd(F-K6yIj}Iuqgu2=@owW(T$;km+1= zC0cDp{$+Q0xr2T>zz;NOOmA53hgtqxZcgwp^D1b1$#ExN)yLXScS3Z^N5Mm@Ww=GO zE-OLVz*kqRt>UyFG(y-Ffgd{%oCKSXz#L~cCU~I|YNCeAS=o8b7w^_hTqp7*1fV~W zFfy`sw>=m}tgjEZPPG5==xxrN+}=Cs6W@GnCM>idN~2re3AJ~+m$}^pXNlZ6WS|;{6?wi_`FT|zLk%x42DWXEdb$meVh2o zI9aA@xtXuh;X?&PeLHVMp95Z|k2^ z+dNZ%djIP!b!q2{f~=jbCAhB_Lq3JQM7=}jmi&TWb1V4u)eG>^FZ{cQ!kc_x6O~d$ zAXj&;V)T?W;;7A3rB~jM6Fqi$HMu7za}N zq*scCf-N?P_4j{XrK3TDm{t}HxRwrLlaiSK(?3LZf^xm`BYoq4?=I)+r)d_dWV(mn zFwb|TlPBQZ(Q@l@M#EJs?Dz0}*6&$6s02#mK=13l@abs{LpH*IPKwTTifD?DkoV2L ziKg@U;7ePs4JI5{vBxJJfu52!cdG(XCsmtzeAekk-ut^>86kG=zneaKEpgM($yD^> z1qsj`hjqDpW|pa>C%nk<82&TSqqd9MgLh$#gAH6TN+YC6T=kNSz!MsNjEIQ1Xf6F%#fX3Btf& zK(arUVxlAMLz?g`W8Cpvg>d;!o_6nE#y>?OGp4N!7Dm(X9jrlSGqi+v$HzD}HukS~ zkbjDPLmp0*y-X|1NaxSPKdC5{xzG6jvui1w@zFkVONscAylk(COP818Q5mtELbv$d;)rLsXI^_EVqu^;#}dx7XS$?tGj8 zn|&r1oweCv@#VP))Z&!_>k)lO>WzS?p};QPF5po`AcCJs#{Es zm>2)Eb@iu;fdYYz5SX3Ch+$^7@cr(#(lS!qk@r4IHAPEAE9?Xb5}%1WhBZkG>luWAq><$-Qp^@SRoNLMy^S}rIg!(Ht^ zUBlJy)c@*Xlm}JtO@!&{dVK3M-ep?sIbNiyQKiW9>(?zHO%w3%746t`ohsu;YUB>& z9g~(##)$0eI?}`eb}i6ZEurdB*6!KaRaYVJuJ;N;)vl&G$$TLM7WuwUa>Xk&N~8gw zv0keo=xHga>VN64{`EAcoF(#fb}U1sKIl49YRoM?Wsl5SQ2Zk9zN8L#T{rty}Na_twr{TVj$VTZ1RdcgkUW3YB*L z(%9G}=Bb0epi{U>4--l_X{?KBbhNWToKwBdeD9eYt%xF(2h6R?HFzLw5NCaj(#`+$ zXo_ibj@?%^KFz4aNUhe1g;LOu$Q3RZxv`uDh&-}I)Ym_HY_X*fFgaV1EIlSg79ETV zLc2S0zS0@#*&2yGK0FKw`ML`AD@!Cfc~!;!kU$KmA~*f(d=1~JyJqXHC-5QD(5u|X zw2QEef@m(iv(Tm?A={JSU8880wPlv)It0Jmmf|$XmKn1~OrBxN86mFroUhXcjZcXI z5j~OI6dgtPycoe_bG|>fEQWNYj;*=%el;oFC(QgSyR$v6Q^y?=Nv2LR{s#hikXWy( z5&aE}Wo9lIpHli-AM0k7Y~Bw(&er7o`alm?a+3;N677c*5rB5#t zgzNf#&yEFUXXJYMFVl%(#JKe%)7qxe&O_0RZuN`2rvMHg+P7`~W5S5kZ@3G(r{-s) z$o7?$;LX6)Z$GsfdAM84Gfvm`a>;vgIINJ)yw7xUp{UT-VmK69*dE=MNp4M`DB+gZ z9ZZB9BV6cr+)N=8N&B8_>;!-c1X8{J?6^-mY+#&43kB^wg80eN#%P=Z1zqW7z_sLu z_-F*cRDS?IZBvjR@zSc}`TD)rPg$3HeVqXc?D>G^wB$a(<D?0X|N#Ynn3 z0Z9@WNu&szicFbf1KPK`0XTli3HLPXJdaEI{&2&yjA>mmJ|~g z+#^I5PL3dCg7e6s1^$9D00D)hGgb(iBB*^q!KZ~hg&EXH4^lzw&ex4g?g1)`VC#!cFA)Cu^arg-Twaoiv=sVX)ScM}-Np!C;?bKC$@7Z^5p+mAYf z6vp1X^x}5_(tC&Ty@Qq{F8@rj>70|dRdygQ@ojfXVSQJNVxma+pZ%?uFLHL{$=*o> zF(^|=1e!u8KlOu7xBN2n_S)#R zi3lhhxV(q^5IaJok4)>uia#$gCe0?L3>MVvtPx#Qqgo^8-@k2j0&NRp`u0^G&RhR-&m54N z0IA=uQJ_^ywJi!&0h-C>k2`3l)wGAqHFT@f0k4+yTvwaeDgh^{J9XkvXD4)*S4CFP zP415Xy)q9zzA>_xKAhbT)!aO@3W38!8NUy;8BE9n5rkc0yy^Nf12S)pylGS4K#Xa> z6lbz9t`giy-A;VrGgq;0aAf5eXap=}0ls6)*D&ub_{xX<=&hmJbM^Q8=lXQ=(2DoI z=oFZ8IOd1z zeyv*D=bjl{IyHdUYM(1!zoz{C%hmA&{VveUl%QFLGF`W)+Q#b>r&FT8u86Dsaqt=6 zLR)OvXNtZ}wV|JUBPit;ZhC#HqPeF~WeEG2!vJR(fJRA8sS1_J#zo46hL9dZlBo7V z9*C>myQG@4bM|I-Kc=eYdJh1Fb&s<<=}MRVHGBb=GxaY{$x3xi&|$I|P&Uo7V3k`~ zfrZK|`+ zhP2&JqDoNg(I2b^Lu*gpL8Zt)fwzk;%fwP&r%;-f(Nj~Mwd8&-d{Z2KGn<_HLCKs# zsI$xE_<~q&)c(Omm;q?4vife3z7?qoUy39oRIMW9qxM8r7ubo!f}3Y zNSa|glvm0G&utItI=?Wl`!mBRL!{(w`Rou7l}d+4i8VxiW*uuRl1nTGJE)ejyu@E@ z*zx_eRp4;J>2h>VJp9+^hZ!jr`uK%XU0kPbPWnyT)mUFor$T@WA}79)|8zc(kr>=< z4JN*zZG*|;UZXrX?4DnZQm^VELE64R3NnR)UiIzrV2ag=@)Pj`u9Ojz{purUEvp6Q9GO)XZO_X<`9v+A88Y~Y<|?*W+cxCQKd)D2T@1&2y#&$m`~!CQgmXw zsO}L#lgwd(5`fiF%-IBw`Nb*lx)Qwg5Lp>17URgjQ+Qhu*t&g&YXH4p_y?>4*Pjv8 z^Z>m9eoi;dVlob-RZMn%Kk4O672voek`!19CRp;iz~T?{Oa?HKy&$f^zXl6;;lVaD zEcU+Z-LQ&@hA%KewdDDE8=er(Z>g8Ueh2QdAS?ztfHi=~^^>@ltq(BU`=oC=x~?!w z1kNm|slms07#>hA4q0w9VnKjCM1XY|ukmX+)bIG-pP9jXHgGUK(>IQBtE{oMmUS^N zJ?1z69t7a77Rj!w@I{lccY^noE2d6#Q?U2q*PoO1XJUJ7dA5-s5;UQGg}ctd<%I4x zNRp<&C$)n>4(Mz||H-5{%ezcbW2Jv(+u_Snl!g)~uHKrcPG0UJ^?WY1D@xoDA$Mk4CGmu^lOLYU(adFbr>a)w}yWw@m z%|wq=`JKq&%TV=Reg`G3l{WIXFnp+vrX(&a?1PSBsea-xV0kyEb#(WpUP zGp91@c%$%^ZLCI0skSoq)x=Gg)9Zx=kI&^CRGX4M!kbKNvs#7XdjESo9F=#hn6~%m1slRVm5?@|V z>vrS}dphlSLfKm?ROnMX96|jjQJ}Kwqw}-V&l)=d8-10iA24`Q{5E)7=pHy1_a=Pl z$nbs(fqx%S({%6yA;8|v#QTWv>(%HLf_s30%r#aJduvW8C z_T$Vhw0)1Qm_j+o{CXpWLO6QcJJfPx_vZ_yx+e494|tIR^0H)0c2-slKR}FK-;x^x zQGm1~_rz==%;dN8N03Ufl$91zbC6f2m^&R=hYp2gfr(-B9CQkFHW~cC`%2(=WIusG zyg)gXN+cIcwEN@k;v(Ln&$@Oq!MpoJNQq=@Zg%%-w@6dc+TA5n4?Y!zrueyj^uk8s zaWqIF3|%%w%767Kv8vlz5`Z*u<_>UJwMlK9=8T*UkbuUsu%JDK_sYW${>J7}?vs8q zz8v&@drGWAxPiM2 zX~;$0nZjLBSV)m8_C(Ff`Y5)`+|rR&)g(^gZ9Ll7`4~LCt-X7E1(cZag8ms;etA|l zpkQ9lf}_m`*k+mi^Fb0;b}OvOIr+iwPrX|)`IR7%JAB(!l3Q_ZOe?R;)kBuf!6s8j!%28_KHfs4r^oSn#jP&a_Hf2p``t4(Z4)~AdG#fu;KW2L| zl>FP7Jbms6(zdlnqUnf43U+^*F;c5R{?_exk1bfCkw}4;z0GV?n*UKlXRJ1|-#3$| z@bF|Ib$&tJ9PaZ$x5DAp5wB*5y3!rHPw7y3;`_xLh5%-}#`I$hOF_XSB&I6RDNynm=B}E-#fzoa(Xt}SprR%K}25doV zAH`BA3}T2qTM;w!0@b@$H_Q(4hsYptmLsMOymCqBdM3p!ub{7iWbb#GcniMRzR4#+ z{n=Uk7hn|^B^S2kg3atY#(@5)6rdj@Ab`um7A%eX0CoNI}nEcr= zq+rgm&#GmJnrWQ01J%tj8A9%u?g+n@#-)boXl)5CQh}o@{K{P2png9+*AB1r z^7<}Ji#BNF8fAt}&Ecmb4&agq(@1rE0Hl&mB;E@H%WIdHU93(_fY&RjX~XY7WtwHi zPj%8{{ar|u7p>1bQ6mM#tHG=j3X>#ol>ZD8T<+b$DgxbDGtepVH-{hTf+D)7_NS@!upIudd9pB_)=y4YfCYsA zZGBZ_rPtaAe5}461D>2e6cq-P?$|&hy0HftPX|A3Gd_MDe6PgcOAfXkWoggq2u08C)vHCtL0Am7Qxi{@1?=Cj>aPj5Pi{UqMh@ zB;BM3lVG#)XyQp(N-#l^F3nY(MY!W6Xl8TAu_Z`(>}mG&v^CN4KVqfraGQMnez)JA zu(y4tluyxF_Pq0pCx`eeI$}6k92U68I%8zJA(MmBt2&r%lZ2C3i{VyF)uvtL1iGAv zRvN1{AS_oEub`cb@4z*bZEGuI^<9Wj$L}Ks8tJw`b1I}v6}c2$BUpPHrJFYcI6rcj zOkbNZA>~D5FLe#nSUt$N|EvDD*(Ix(5?fW*kMbEp$)o|-inlA30mZQfj--pvkDF@V z;g9$SwRnAHKhe<@lJbxuyCqzFgwWXt59#XR6uJ97CDLwvJ^+Sne_4}D{9-|r*7hy8*0pD2C$gFFs@f&K8HlHB@-0}GTJEI%wPoMFg+9mz-U$z!!h=CHGCH^x_KIs1>d^Ngo z!leN&h5tL6A#wJ#;qywX{S@|he3WqM1d)P3+}`#Pf^Y~bJAJ-0>HYJOEq1Gsf<9IJ zO=w0~JQNS4!x+K_W$A?I5JL{N$KIBa9P;A#xYoK-ZB~(S_`Z{rO68fIickLMJNz*p z#>Eh{q37G~G^hSb_v-{0UUi~ClRZfYO&iN z7lv;cdY-Sl`ByFFO?E%^T;?O3PJFkjfS0m|W8=5SX#Z#CvoDlq`jBF$o$YKrVL*54 zfe|k{8w@&c$EDxSbsj`%+N;lw*xFjd%@Jyq+JJs)jxB0SORqIIz3BtiyiTr%yXOic zUUyI@XJ=&~|F-k4DoRUXx)$5SDYY;9-3THLd^>vgPrx-55u$*9%D%Bz+<65_<_uxw zmuAW5vzVC!k1-Yfr~k-Ee(_l}y^P)pr_aJ7G=3IUDq88;^3oVfdqR=s@MKbCTmSuc z0GJp~+UhSUrS@GO0MdcPmyhO6RVchV`pkeLR$$mYocov2`-L;6y*v(2s(^=o%}pE zt$h*wcFO*A%k^z`7@vyU|GGriWPsd2R#g?2jI33|hb2_;7C60BDeS_y7Zs!bHsH2B zT{xVUBh1mW(Uy@)b&q|v%-tN~dG-4EF{+&GO zfiRM4b>OuV4>T?|T~dp^K7{;w!Cmusk_J6|RaicWot~Cl^SR~~TfM@5^LtwSMK&@K zaL2v-pIpV9_DjS93Xw|r&kI^V7`*_-1t)rv5PbW^&HZr1h=e6ez$KW@^t5Qmv!tds zhsoqv-VV>o6Um2)nM(YnA3+;TlE7}NT>U{=rO6k7oQl+LJDeE>_;xPSNP&BjoW>eh zk;5tW+L~p(?H|AM09TyRz#E}yF~vZNvY%G_4?(9&;-o5zU0jieU>yS1vtIkl+V9H= zAn|ir^K5aG?DqjB7U{GmVk&4{*a<_}<2kW$P3Qt5 z58&_OLiLRf?f2YGRPJ7e($hZc8TmlEj#~U+lvsX*6b*$tvMH=Lb-!iPy5P(?!aDFz zz9NdEjRo}QyWrf_&zqq0Z1MAPxV<_hyjPBK99+TN!fShJtk+Gacgx;?P949b)Lo6n zG(taCgyDW?$!9f=erG_P{B>$9im{afFrR;UcDrv;Ph=0Im5LqO>9^+KZtk7fN$5qb zsqKkXzL&nKXBk~)UI`G5Fp@J3c;5XZxoM}tL>)X7D2bKdE$z|p^Td86_nZe!uV=()+v;!*EDVb(v zX5Mb47|ky)kLtuLx16fAa=E`+wsEDad|6OO4UP0Om(PA-zETZw*+xyQdHQ6^*+Kn! zUw{8FtAPaP?(V)fIhC4t;Stmga1?$+uotRtaj$dQI7P3@!6il_-P!BF^RMW*W~Deh z#4MBsJL={yJb$7s&ftnx6HsEXe!tp|f5-6gY2)G5k)cRgEDtkbhzg2%C#K0k{OM%u zm&mJlMJBb8FS-gOfb$2Gm+-7X9x_61UAZn;xS^*XJqK3@?qZ?V&CCb@ybi*96(7`G zq=02I+jXhemAY&a>P>QOu;cy!&%8+2C=j-#vO(1WC-!3!2tnQqlyh5oUAyASX1 z=@H+1Zt}zGT$(5s<7%sYyue`{ceCdrmCHm`rP#?%nQ10Z(#w;E`_IXM1M8*O`Q-?4 zB-vn$%!?e{EKuV%iXo8uPb-vx6*aL4kkoT<-u#JSf9Ro9W_-0_lgk(??Pa91QyXpdYzvVb9O@U()R0yVgXFFV}qEdadiW?tNVZ?rsC5 z7)JARFGmU#oAQw_aJ*ljv72ds+Yvfx*_LV}i$6?~n$~yUv%3Q(iinBGA4q0Tb;QNw z1X|z`w!5B4n1Z88%o<5X143`r9mMa|3wLkJq-ArBk~l;ytd^X4UK6*jPzDNn3nNB>ON`?W?l?O?~^taECC&the^ku2gsrG;&-o*4aW{Y!cznXz&D650Y^b+$R zs>VxF){5WHAvtl3mOpKcru=u{A+1wqlLjM3SJeK=Im>>_c9FyQsA8)s26lGI_fn9G ze11o6$j!}GLA@2bh=Pq{DZx9OiHBbsHF&CPXQXw(wS%%kn`I|tJX7Y`bzw74m4Fr%Z|!87<^Rqk)MK&Vimf@aBX>`$H=;<`NQke zo*-2#)Y1~3qe0pNr3<1`%K`P~f*zG)s}#q{xx$?rg?64fh!^=C4Y`b$5fSS=vMOoS z=`F1a?gz}Xb^kkA<%>V@rbzLRXSdmNO^52stwgW)#_~pfHAEcI03(@!D9xiu5_^V>t_BC=$?ZlnY;t!W zB!u8Po`2jmH_Zj2_r%1qn};qNmjX3QQTEFn!J}xXi-O)K%Z-=|J&eVM$#r)X1k|Ue z809+Lr)0A`djvJtBd2)Lso=AvcKfA=pur*5-qW+ZwleGX^khv0a%R#qro2< z;8yuOV2@heI2Q&}-p1;3<-7H2KSd;vwdIn-z_E=tNg_d+;;?KOKTq*YDIuW?`+T_8 zJEEId@$R&}zMruvgO~XHnYWux5lnhDywmYc*x$VBHYz6bTW6G?6@$_HvL-W|_r${0HT}#&wLyDu-gXo>LCk}| zS%6oJvycSR;28DQqf{fwG?&R;xuayRk_dUp@^Nm_+%QE7eE?T~_8AfVoo_^SZ`-Tj zCY@uOIWYY;fgpTn)|AMN;|j2abpgqdEidSJgy~%f4RyE|jpxO+WyDX!;pv?B6=V3p z3Mq9lP4UCJQjx@Uqm7*cFdFph(fcd}#I%Qo2F)O~7rXNIf|!@5G+egLVRUiAbu{l|y*5#`}!*b_5y;nVgkd`d)Fm8$u3Z1L9OHT)CB&DBk(q|$zwyO8*pGC_l1LduPTd!6^@Pehqd9YKAzp8zEIMEOuGN*|w~x(0-% z3-GbV)q}D3uDmJ7@5y5+3ky6h-@8Rdn|sx_dxo0z)KI~h&m86S!rXx>`^EJ`U_Cc# z{xuCZ>CRVY6ND9hM^4i_g2L&hI{n;M?W^W&0YFMecYG~0kIW{sAA4H?l_$oqsTTI_vTmGNJh)NmCr2zfX$6;XwLvT9Z zfdAsMs)+wTFym4fG__7}darWf=ldfiIC1=ahv57__#EO-G+5hDjVOVu$}0U|y{br= z-~WLijp7Beo`z=-bwq$_P3MbVx_tkp3R9yCSpv7J|BqGHP}Y_jPb5+H+Ep}e^yQ1ePZ>gs zlYfadyLhrrA9R9aG$%yd@M6{8qs%ij;h@2jMVd9=d-M%-x+r<8$BeQ*u@uolGF85G zRv)qPtgI~T><^9%)-}O0geUjsnE_%H@_z zY&vqcw1bAsEF9!z`-ZPFGBSZaYikt-jb{o)pmYBlznabfmOT1c#PNA4>8`2L#*ePk zcRIHgr_J8pLqhLdx`H^Yp{?%har8ZIaY&En`bKoO+dbDe>bS!lQ_3R*bUL5_R#sM} zY%x(AoR0gc>%Q>ytWort*K#O0sIp`HP2`aLdWhwPqUWa9h-_hFEHX`w2uEOB(@KBIRzos`M%n#bK$p~A*aF1l9 zjJ*S?s|nSLw$%HbI5^kO&=dfR<3UnIL_USc6y9$NMD4 zuk5G>7R~wXna_T_u3oo&gpjpZV3dH9*=E*h028B)$^GoD=nR~ZzuIv;1iP%-DQWau z>+06L3-|9my)k;lR&+m(KhsvnGP*94a_I|1%sYr!M9gU|Vx=p;`bE5~#t^k>dJ4*tJt(>{wm)JX=e5`WiIv>$PT;W9^exymqYT zzOsyimN2S`x=6GDN2d>Ipu#}f{Gl8+`G4uqWjBQUP)Z_ub+BgP($Nt_pBrkD9RG4{ zEHHT~%#Tb}b-l<7Ou@|U%x6FFw0-wg>yPTQ=h1kASSfk)x&Sz&r+2)NJ9?w&7Pji* zvSYr}5afBZN`FR^A#1J@l_tmKLxq!rkl;S_BZjcGcWhk#M}!EH1W^>p?NvOSV zHm3qY5j`4$fKSCJ4Y{ql9czOeC&-JXAlif~T&c=HOnm;ERW|+i#Yhxs@*JXH|88{s z>C}X}>vRwPyjNYDxn73lK}J+eiW+ELE=SDG_b4neIVGd`8>EvRs`&K%oisyc(xfW3 z#-@J}x=&;|%Vonp)wAq_D0*BiXw0x7uiGKP4k;i&9V>J+5O)@OK1D9ekVRoc@xif# zo@rgH=Gr%2r8?uJ={D`*qu`aW;Zl{ao&%tv^6aDB#=!##!mGA$e-}o`Cm_@Hk2J0+ z%MjlB=3EEemR<;x5&D1PqmuiC7XRJp9jC&D5}Z$GBER(xBaEVR#p}h=yT6Mz>(;+# z0CH4R+0wOQ8dxAcRPZds${{=`k_KXWEV;<-s|@wseI34-4M^ z34+@8gcNTx=yIG8e|xuk#5~7vFXqz$)pQrp z$#CvpBb+)WPm@5MVVW5yssmnPjduZhOeSf{S2eziZID#@u%2<+rv8^aLrXHvj%#;f ziC2Kw7Ch3N_&0Bs&g1=uiR3brbypvsiaXnsz0E3}5`+8Cn93Oaas%CnY8U?ZDFNdK rHdScu`$C)V9Q}V8H!g+ex6fJ0VaKZ`jZjc1P*CzRD$e-83B&gz)i*|B88><#@>=j@b$>lnjy8b3i#qrJ6 zU$roozVB`UdF62fMs01_HwOe7LdB?SMV%s+G;`-F6pF>kGB=J=FCA>pJSD;G$sB0$ zJD=v<78eIKa5VFxg*bD=wtdl-Fc5*jJ+$Mb+Da_)>eT8J3ws%mo5W-o7Lz5)GWu~K zxxDLBFblPWXz}MR3CgF{kJtT`hAd}oY_aa>(j4%lv`2C4ih8RSL#0|RXM2^FbjYAD zwO_=HWa%oZ2)FmuOmnrz5=X}C88;WpygP*F-qJmk1UO?WL`N@w`DkKpsnucyiR0*& zR@GcC**Ln>W1oN{-?IdzY`9E$3!aQlYr zI6m5zXFaG0xeL>lquW<6AvI;mdx7`Ubm);}nsEA~X!^Z!K~29x{9TZP@TK$Rgp{$M z>wZIle+lq4p#02%C{jhdm;2#+ zRAuNF6T6;zHq5b^w>Ez+wJ5%teNSVrw>oLoN-rAz!P&bLXq}slgLhb|E=?EF(J8-Q z=Hf}|rfJ|Q7;9OfN^O>2`eL+H&8f}iG*s4AFTE7dZ6+NgX!nQ^pWwA1YO$c#{Hd=g#<7G%cWcNfMpu;Q8@%valJwPJ#e##fe&mST`N`q#)#2JrRjJAa zDtSXxc#S_n-nr&-L&JXg@)K9R?kN$$aanz}eplCm$}TCW0*0(@dwQCC8qwAldC7bG z0FSjp&~l;drJL?it4o_ z%VQ04U5ZD$4WltXoJ(H?qv-&D{`j-V>?c$=vg^-KCND z_ZPjTO>qmI#Qk0-Ia=Q3smR-1n37Z>23Pj(fM282C%u3vzN$)d5Y) zN~H9bf5$iGqd6_w)h-bgi597`?nxoU-R20L+wAf^$hElzJ7+~wcsTxXuYrZLt|Tf7 zuUOg6frTgTa<>g(o5?RY-nqi-q%R3LIF#$^>h=Uman7-eU zb(*VX-K_d0uC4cf8vi$;Ud3xR;TPCe*4V{UMZ#8K8y0vkOSwwt)cKk>RG7Wa73lU? zc=(t>R>7!j#PFT@;K3I9u$wpRX!4~ZrQFM~Cq3_C7h{sMo<|0itNdLJ2r7~a!a7(I z`8>pPG}P$a=lo}@&k+!H|E{k`Q0;4(agmALQu$DN!`1`T?kIp2m@`vYj;*7kQ#3zs zh)euL#>t5b4u=a{y?aNF{x4VI^W1yQF7E%#O3|WQ;Wt>btBcI}&vB4+o#!0cvRlxt zU;J7=#rpbcJn8+-*LZS_X%S(sEw?cg!eOfv(cRrJKqmS^8enk#BN33@DM;Q2;tcl6m9xo3-h9>`DY`y|5{_VolJ4-5brstDXkCBGmf9JPchH9uEpJj)GBKxsAFFMgo>`%cJPv|X-h_IfBhJw;6KCj}{qdCmh;D(!v zM;jx+!4em&4gOac!*(>yC4TLAp=rO45re&O+|lNUO!Izt4~Rsu?LbY7PW*7)9kYLFf< zKz}P22{-mU-*A2mXCKZ9iav!MF^Z}+0fC|VPRUmnTsXqQ!kAhXL7^FkDh>{p6+uZU z+4+bYOqaW@Y2kCt91d^$fE9|o5`6$ue*~U^b5y)&@lJjfzGw66d~E2rrj#iPfkjZ5 z^=b%F*ICD7UPN+QiZm|J4JmmsO*sw#T_THc){UFufQQ^y9Xg9rE3A4Nc2&pJiWHsTKPjUl8&n#&!QgXX( z=0?3L5H9c`;b_DK*L~49IZQn6upC%eY@KH$0_&E?&9R}W{rDmUSo;*N!y>ce!)r1r zknL0Td~yNNSXg3!tWI%MzFS&ZjIQ~vwuBfwacK-MnQ?X_{MRdNa$a&*KhKPw-4wFq z8TT6)GySPQg_vz>^JZ;FAOh9Tm)ce;*ViNW%)pW2@)$1zCG|YK3iv_gYjmGV_JHFB zxyW;AxK<2n`|B>z)@uFs|M`uf`3UJw3L36dcI7i^baKDBDN#%R?vJ$UB@@d6EHCQ! z)WMNBFCXG#Q`2sW%OrNP=_T?qk^zxzJvAM6#TR}(hG3mm>VVok$K3K&W~bdzKW%qq z@`-yqOI}uuKxpU?1f)`@>lFNv;JCNeWK!sW9Ii`cN(1c`X+eLfIi9Hdzd`=)Zqc@K zX6^{-n2%;GtfqqNv3l#(>Au4>ctJCt@q8iX{rewoA-8J~0JVlvPRAqj08UEZ1;!^@ z39ypV{b591iFgNuSEJ|iNYD~L{>#7{R#s1Offd`=+36bU6Yup{(po%o9??sF<1gTS zKfGUS4P9~+u!Y{mXSadZBaUY79xi7C&?M_JiwlfDF#@kVjzz(%ZGE=Gt5zRC%H#qa zdc443Zi%wNp8$UDRlF?(Ae1&c+(aX?Cw!(}ot^}gv2`spAXF%G3gG0oX31RYxvZ(lieFp4W*s+)fAxdAj_dA?6pyH*%|%CxXHn1l z-}q$2+aVIC>z_ncf6x?QVHws3h}2YiAIAmDv&bmzP^YI6cODD_Ua4e_0#B32(k84< zT#sK5LrW2gvGgU%$WqIv3Aye_T0?={V=I#K-D@J4_kLeZPu(+%c#8+E3As<9&)Dv` zXU<0%rE@Gu=m!-N*+A?Nywm2e(37R?#l|V;;QxHk-@UNnG~b6)4JEuLt`Dctb zDw)%wZ;Y2v8uHT2^ZIrLDo$LznSgPJdOgG>edKP&4{&#W6bwt_Dtn+v|pUDj6|$fRnDi}UEs8H3!7REnF;XglvAqWPrk3JNdd;QQ)~PhN~~ zuN$)0e1YTu)iD18d`;+NZYa}hP!f{X6@l;b;EN2aAo7-Z#bXU{!!5w;Jkf-EK%-Ze zkx9G-c>U*>GVvD5vh*dIxwif58^c-PCKrmQQ~=@Dy>fUQ@pmO@0K-3y?sw^pPR8yD z9nHAy?P>s{?dS+@@e7=@Ug|Mpm5`G;9ZJUmK+k1$nYGd4^rZ&D4-1I_b_y=%FRd!$ z&4h^q_OaK>1 z_TWgSy|{N&o%hj4^dDMU@VGnSajsdSmP<8G#%{Q$nZO;7eA+#ze<$D1InG|sGqq^m*$V&LZ{dLRB=OLZrS{SK2 zcs%$ItqC|TKi;=N1brjQ|}U=8!EBQ=Eh4x zQu6ma`orpSTxZO?$R_FZxsK@6tASzQG zvl%Uc<#0VS9)rx>>r;CHden_PTA-WCfUg*@n$>lj-X_(z?=V4*o=Tf3DJ%p8bG<&2 z&HsKZ8Jk-@<-|zX=vvb9y?b~4*x7B}(heVE*XCL!)@9o9prZU5*S+%QdE_}+4EQQ^ z2nbw#9eI8oq~np)TL*_=?n_&)Cb@ z%dcgan*Sc?6O3~T+v~6Q7Y^s+P`B))r!hh7b~TOCn7BLa`JsV-Ng0DK$;-;h=)+6# za&D0pZ$($=^*j3ujl^uYoIm0MuCNybw8IZiHJ8)yQ?iFg$A7v8#;?_%bHXwMkF1$+ zm3|rtv$z0JyDYLGMo8Pa#YfQ>o$nG8Y=caOCsRhv&*knd7lRv*taE}BXfZZ#ak_d| zxt1WR*<|wD)bL~k<0_xcx21Ys?M$ za0z@q@Q2AtZWbLS)mla#xXt^_R=^inkSeLGAtu$6OH6Op0`@Jk;^%FZ-hd-vc;Js|x!%|mxbk;~ zcLDYzpL`GyMhP1v;~!K=_yGZiY2Zxn&CT69-F|cpgja}4Xga6N=5A@p2#NF=g9;jvOt$HKpJ_rvs4b%r=cNdkWZ{k0i!g zh>c!@I-s#$zf?3sts@FXFa#~6LNg>7@=mWo^9XX|ME$qRpLJ-yw8SfG?8FgTOLa~Z zDA5Rhe0b8QIrH5f*-1unUf=yZpIAJ)R>xVjv<-f4!8fe=gjiB(xWFG3K>uNu{Bw{@ z8v+Bzm8LcDVhK=aD$7J&TkTM+o6RjNsC^)oeJ?w$J8ig#aV`K8YrIY?Iw5<;F8n11 zK`gc0*1Ox$?2i~Cdo3tkH=Y?4QGh-7NsCHX!AUYF3DH)h?-1kr*)s2RBdXn*T0 zR$b&QmaYV3u6JYIIk;42^SB+JuVb|*0zP|g9uSq^q6{D_1p4W4{Wr|gG*8aS>Rjc1 zuGlf3awcveOAFQPU`jZzq$MOWkB^-=I5k%Q0gVM+$ zxxBrHM*b&OhrcjJV0}{0ss_YE75t}7dY^l+^PxUfHVTM_Q7qaU0?+;^zl> z4H9y508Ox>RNr~*`4*dW-TleQcFCT}Ht3#Z&J*31l5;EiAc#)+bIic9d`&HB4ta;q zurGP9e#Y*v{uU$mN!YfbcDzDXeDX$~I_)J+yR`pWGOhQOZ))0L-m!a;!ND^qNE*jl z^{ttqgD(ifFT2W=o%6$p%SGOH%+`4t4r{q*@=TKe|c7N)3~eh6S- zb#(r*J}zBP8mwTeV*ht`ph?@OFs7*q;%tPxtJT>BU|Vd?vj%rJ(k3Vx46@~0jLSYv zzHe@g0Xub22=J;UuVl?uxyAaE`= z>zc%UBF%3>^A)X^1Xv-| z(!|Sn7f(D1HkpbnyxW5k$8JNTuJp#U7^C2RO0_ode&vanR^3%s$#S5R+%c9sExGrj zC8Jj6H<<%O2+t1mg6qd6-g~~zOL^0~XS39yT>~QK+o0DFCRr0$+jyMCwt+NYXGrvx z{UoTZBY3jF<_$67-dsIz-SC`ou!{W{V)wm+hX+2b5Mj+yq~R{eB$)6-8lNETq|>5s zEUw=!Bgx)i%{Sg+n;L+xq^@OLVPW5_1W|HN*5{NoVBm4Bc79wR+7Wp2!}o#0ke%De zCdu)GsOd*}p#_ZL-u!gaep?FY&-FIQ6}<&0fwc@%bY%qOV2`0I=b($5QPlLqdDn^C{&5gcShD)&G2c^iaXaxEi&{afZ_3xwOf~Ob)&E z(`}G(FySCx2q|ML`UcU6)1kHW;L0UbB}-}QzpLi$!Dv$U9l)voqSx0C6l7#lK~~m5 z+!ka^<;fTg{k+)d@naa;n0q(>HWJz?@diJaL8FzmpCg$F65sLjC2H^s05{FB@7vqk z8Uc3dnwkdfY=)mSJK9ukH|PXX%@01c``+(ZlyxvJKvy_z7+jd#Ka*W;ruo&B=ScgR z)rAxAg|??jDcz546sIN@WiUS!d~)1-O#3H&YbS)q>R< zbW?$u?w6`0N!g(`?3sE?k$Rdd+@J7h(xfMHC*m)UC7dOy7mPHGzV?JF8I-0-`zhBU z)_-$i6p*X2F1d4l!#m(DyQW#b@Tl8nWRK%*IeBO9f5e_ip0|vh3v_%pM;5XSXdgWN zy#K`vo}@3|Bi^rdcC(T#4L|lGSTln41Y5o=ucOCQJ5q+|wnG6}t2IHvyPO}_N*JBi z+IpeJ43OU}o!i^i2WTC(dcII*iMoeQPfrUEp%K~sP#mKDsS>h*fq{e!3gWm>a;sm* zgHV+%+73p6)cXa%wn2Lc9!A`Ab=AlTL2HBVu%fK%%i;VSVf1hsla5c4)9O%0_GnF6 znkFiXO?Gck=YCospIrE>pyxZ+*(|6|sw8)l_yrEA3=wHcu%6QIEzsNGSr{h|kL~XW z62!%n=Jwv6$*i)vy3HSA_?cInLg?Gdko2gbJ9C+F~-S;Hpl{4*jS=MD>a{ z(*5_y;%WGV#x$+SuJq&ch!t<#$E*1#8m5+gP&a}f0`MyH_Qkr_!on#ebi#%&N<~x% zw8&Vm1?%k`dAzq28)&XyeBg*P{6i#<+vcu`jWt&r@Ys<3o{F0K0iV^M7*d#{rn`G> z(WBB;pgKpwspjg#GS%5>YOZqhZA1|I%ymj!Ngk}+AC0f3!`8qYWT)LLaGb*pErP%3 z<#jHWNL=fswoo%RK6-Gt1X1Md;2*(TzZ+3EEi(|pHwwiJ@K|P*E*N-mr`czPYvd!z z6M8$fPR-KCKrO4*MZTgEnmdxTmF>B4+0Y6UzAk}1AYNM#2U~u>g2$xs83ir)(3zla zVnt|{s!Al;R_*Dbp3z53?)&00MHhC_XpO(6q|7SDT$vZ(&cXr^vO$n9$xX*w+nf~U z20U{@yciW~X)%gM;ED@goLhwf{yd8%dr7fcY*xI133^@E)N=#ZIqB=a**`vhcnw6e z{?VChsv^F$Y?=t4ILvJzzFhB-(BH$c=ajcQxcW4nJ)r6M2o1$bx0n60VZ?afn~8am zn)i+eGn8jfYEcVVY=IlQeIN)Y4wa5|$ev9+Jn3YCY&B&vl-x31zkRsAP|%`CnkYZE1Fi>x}M$eaS4d>=NJnf8P4`T;zWf%tZ7cBu&;TJxf+Pp>cghF@ZOP1}|@y zC;b=l$zS@tMfC&bA)ez*X6NF|?JnTACxD&OsBtv7%zR_P3V&5*tM?Su>9m&1?ZnM64j9Y8^Ya$~d&k9lHdTcqAa%{v~wX8;9nMs;+`MESs zd(j-j3c88B)y$J3B^Ymggm0)4N+;}u@xv5RsTe9%Q&+22zpfK9a-$d{&)1r77#A=8Y&BM zxo_SG2y%&n(Vu4*!-JbWC}K1Jr)!_u#+SdZ|rLy0gan13e9 z637E7E|+*{!?G+t*qtOypHNs>{5kfmsSLi>GtsfP{}ai@^T$so&GG$B2;nkq)}o;B zVt9x17=M)c5gg|e&O06R2c5NyacBExaXv4p2#=Xng0Z^9MoX2I>pQq@4-UlrjM?Ev zl+&D_+p1fJn7aOjUhRN^V#cXNKn}3s1_Tcb+!f`mGnSUMJ__KM3<^I~IIF*AQC*nf zD`uOImNcKpQ(D}9L7PG38`oRg#9aM%Cx$ey&hy-#ZpS9(X=Q zA?PVAJz(Ink%IZQ#gG(Pb%LCBUZYnLgIna$c^5WItI94TuZGsBS^whmvDxTp5BPMN~tkFa-T`(B8G z<(;%`!8qFtOk;D=zvv>fd81h~TsZ-uOZD z#x&5dLLfp9(F{fiw!X7+IeNu$Wd8}q+(ad$04E<;n7$csa$p2pthHG&Y_`!+V-k{n z4sLmk7q0Y)GV#fS;5c9@*ZE*W8;t}2ldrNLW%j_XQ_nY0$Um=Ky_#Q-YYV@1d^`Bm zeUN~FqxtN*MghDxhLx#55GF)qf=mCgG?nG!*9Ls=qS+t=`U?qi83-k2>t6c@Cmw^C zkp>A(XIP|HmYtwaAWFhSQyt5|RB=6OXmL0I)N8$JHUUqhIB|Cu^`(2p@vV6j*uLIa z<#xo-2iMkUYGYtL!%%)BtJ{)*xCn%yW6K=S({B~O;0N%>a5G@w(iGjSx9tqg=VAi4?fG?l#_ediX@jE>koh->{CKA^`n3as&Y1!e#?yKVT2HOgsJj{v^)H#WyR)SdN1I>$sud<7%vv=VICNFdghDWJk9?^% zL-k;>mB!=kg`>$BUx|#R_i@TR)NqD|r*T#m(>>`O;h1l)2Wo$^Fc|K4aMUt5tO=B;=yz4) z-6p{7tYIj-S@|R-owUE`_NUyYl-P3Po6;oQHj13?Te(N+#wvkhbdHpJ;Z)6D%4&4* ziQ9W6IP&P?5}gN(S-Va;QkNY~#h^Mf@(hWt;d}%?_%z20tEuYfpbd^ngvAx%O|))9 z)jW)&w8t2t5EpXfxk4-C76I1e39}t|C>@7t9{Hf8a3XULA3Z;6OL5EC_33B*Lx)@%K?K&x|H|r1cXq*F}Vy&r`Rn; zDC0TakJ&xa`OqzXv0i)p6glS zNZQyDfs$@37g|Mf>X>seZksS$6?{&bSsdx0X~yN9iPMRftW2~j!K{|rj50@U(vOZ; zTnaYM7^ThdekmE=yiVk2<2S#OIKIC~oraRIo}O7pp6^NK%ep>NO~?`jJNt*xBw7OX z3q}d7?Om_0obrG7p|<7u7cX$P`cE`CK;e1or&}PAfjfHCeNo)_`gPOVm$fzgX^=bB#6Pp{mKGeZT<(J=^%xBhWCjHi8~BHNU}?9+h>{sYI9^o$6cH?(iYF$ zKm$#5IfSj1<)GgB)cr(4`0m7iP~*j+ZT7nN00rwdURU)Y6YcY$*jsoimvX{W_%Xl3 z6!T?}Dr3^9zTO10=#zl6WSgbh5~;gMGKY!Q+5^=407!R@V*a$`51b=&k9?J*B?@NLo?ty+{H zZ$toP*DPwr30%peA)j;R@3B(;6A=0ybPq^#?|{FQn%{7@qznCVOmn@Rv~}`5FcZ}q z-A$s_8$!YA2ecupenx)uU96Z*vAzN;_6g zO&yD(85TC7^75F?$XRLFS!_*f%sb^>TiO9JNT;6yKy zDZv#>5K)2G{Z;nO0Fb(c$t!=C9rCqEeK`nxH;6(C3J`8^Fkv#17jW;b`1g;fO zUG}M&oYZykpzlKjn-9HE$$jcF{v9gB$KuwL3q`vnWTsekMth~3`p#3_54H5B%5!O` z<}7i-CCy7Ob;8Jl*~D5`(fkdD+QHi8ZF@({hYp+XKp$feynk=b>#B8P1BS7USt#_v zCRQ|g@>lVIR|2Eh(E%^u1>$%b|i*@0D|0@ zof~VeNQ#Amb}(`co(SRO2E6uWs;z!FxcZ?0W1CXyf43R*mcVS@*yesrLwJ#2SIMg# zEIo-!sr~Vx_Rdc0?%Ml{y8bbL)48CVi|4P_q*P8$!PBRwdoZ6uM9iD1kPm~0&(PSX zxCBpHk?T3pzkd$QJDo@h32&K_}}OLv?;cDY%S z5I>gXR2itTKPMe8qjmbK4ZGVXy1AEJ+^gU^QguUl+?4L%HC;)R{{ct#1U-@Kn0k$J zVfGaovba@*&hi5HIoW(J-**o%jlhYvQmVU4N&|xnvfZW1Xq}YSZ!Am~SF?VE_S~fH z8^yVBm^(aWP&dx!>N4W@@YZ|3|9i#}<4S7EQ>tKTRC=cOYKjnZ+qrtRIZ-u2fj3~) zFcTMt=cGoiH(lU@xL(JpA#7?Uw16DIWkon8JN>yut*bV;d51$x{1kZkgBk)wPy9 z3SqnlZ~Q!djVG324$hv(R|h=^UYAnGc(E#uA6%J5&oiX?9Au}s_)irhel7v}m$=)L zi)@h+Kni}Olxh1P{~rw_m!Dp~YDl`t5t(HjCE(n@x(pecrr(y82Xe|J=BrLbc{@`+ zVym&PEP^H02q>#2P4KnLr4Fbz?&q~W#IGKf)4x8yd~60YX}T72Ud>n4aI9Rqle(3= zzMy|+UCKX;ruuA`u$_J3{gw&Gc&4gFo=^Le8pwY!Kw)Ar?>%F4U82v~XZ(ot*(y&a&KAdP5yw6=T9cDvL5G6M4UK{7|?}zUmC>cdMj&LB~d<0y}4}a zA8UP4N`0EdxGoH*7kfvRs_EkV0P#^m&nmzC&59$VgjE(}-SHw>@Xr(PnCR2#K*q{4 z@eOUt4xM?*4ZBE_ik7_W8}R}T!;W=dpdwc~(dV>oxW;+*FV_!ux#(jx=K}Z8dJ_-w zqeG}17tB-X668HYipD?6k#b88(B(aCF9`OZ*2TLG$GAg(g5ht5oCKjyAJj0vKs58f z`_z+c=D_17V1Fys@R5X~jEeLdhs=?z%J`a-yOWrsQU|dqKe+eY8M&K+yyP zspNj3`PrrJ2%7-z#dUfG>K9YWBV^x$dfS!g;J zc&b0wAkb=AsjAq?nAE;ZuB?CnC#gr@P!Xt(sg?`DQCCf{XKsDF8p-hh^!J<~55Z#F zidxConi*Vr^-M1n6d3qxi_;m@NvII+zfE{?^*z5hBD9;C_-GDKUZyX=xu{i~6zS1j z*HIukLl;v(H&ZB*<{i5?Hl8Q)5VV)uxM?4G?%HujK68!=XxQpQ^-0UvPt(POeVnC> zVQyL~TP6?f-i&1Mxw%P|zKhAZ#@X-QP`G{@`|||HKY)LGXYPMzlt-5WLU6D`^4idh z+IRmYWaWx^7VBDA#6cj^SDPid;Bx=CpPtl6+436a9_exF0C(p@yz)KN$_mkovO~d$ z^|!~ps7k{ke`Hv_ood_QVA?~5SnsSS45Ony?)$fwix>TsUIeae4in6tuvR^a;vmbX zU(tBBUC1F^C#OT9yxhTZxOvqYDrPT$3*g3+^D|GIfRpq<#4Mv`-@L5(DE<{2Is~;UWhT54LL?Q2*~RuS;7*m zzlg3Ac7DW89Pn8t+?KsnJyhoN8<3=M|GgfiJPx9Ly5=O|vV!S{rwk07xlEkI!!Ecd ziwrLCp7C!uys8&ojKPq0;(n(W3UD%{vEH-F@>KL_Hm5I}LD5HY?S#rW@~Ozw5<@{k zSmPoLv3rZL7t@X;EWOY81j@(Wa^nUpc47+uh6!0&VhtUE24o~iJdnV9Q zIs6M>*r_Lpzq>e(XIvm+_c;>zV|tuyBb*0YRLbvxKDJEAAXt5T4VRL z3P#%5`5c`mPEB(YdJq|2oMtKj|M~Ad`3$B2_ zEvOklNJ&3cCih6r zT0&BW?Pgc5px+2l(QDq;9bCS#8=5H>zLS)a%arvof!j_O3qOn|&zP7(15R5a_i}-p#dXZqU46b-SE@XdCu{Q@GW13cDz##+>9t$0 zxV6GlKYWy&NM}+`)90RMfiV60(r$bX zbLIO~m$>G_^vX`*6=arm;u{+&+Lmj0CVeZqgv2xp!iS&SWy@W@AH|dalS*DbU+Bh# zTR%@>1qO~Q58WJwM5eE7W`l}91~BCbTqH4el869m8|b@yJ3rBgAU+(5v#7E~?7w${ z?>kB%eThVt`4m#`->Ru?8@?mgDOSs07Y`bh@`-T&^>js_;_2EXvdl_(T%TRDW-_3!l2Af^z(NB zNQ=sez}c7Gem`0b^nAe5+oy~Ii$s!AQ*Q4SWFjizd79QG=Z={Tl0;5lnPi*z%~6Rm zQOBpZVhW(Mbbaog=4Z+60oRS`!0m;-8BE%vHlzedSWaOywz<|dk0099aeEt_@M2SN5V%A|>&&d3;vM-B^#u=HJ{7-(`zZki>)yh1`wEep8 z(Xx0vCN^KSQ%$jdq5#ONli++(Dt+x4QGR<%D!+qf#XVxkM_Xzc*RMQ^O`z}cN0iU| zL_n^7BJ5J<@=YlqYR`#97j7sRdCCptkr+iRSM6kPXrXywBCEay+iwp>E&2XVC^43; z(e>n__T466E5NWS-ZgM=fuzU&D;?Y1?~%lo4W! zCR%4%WUg9%h**-IF!0Tjt6#PJL;MpJ$$gh*gzn2l9XB=UlWH|FV}Hub{iQ?LR(dY% z>c~N;QL#oBgHAD+e*R4QE-_z>7j5R*0G3}L5^Zr})drs$yG?L`pwShdPk*3mYkp(L zsAVMU{F#if{d>)-nUL2-yn*cb`o(f#;5bGQ1T7H2$0WoK<)IN`x1Vk5<&reRlQA!4 zRCBx*92}<9Vv>$!t+sfmc05vd-!>XVBhJ;C?71ht%nUViocn+Ax`F>q?0)L&R@OTF zf8iSGWTQFUCmftsa=xOo?jL+bC6;>gkLDaFna|RVzYJNm!+9VJw!|cYAJHRKW003Z zGt&?GJzf+^qtIReHqO}e3A-AMB2e4#5QudHI<}Chws#6w4Itt(N2mrc``oWhV&Db)9AkqrtATlFlN#Zj|tr781|E}Ooyap*Fi zzYxwMhW5LM;{gxv!IIGy9qRQoM;Z(}#{=S&)8?R5RrnSg>&T*Z_vB>CqYyg@rt~auTPOCt;?oD-j z`u`P1_3;=NE|PV=gMVThJW8#&clzE;js{SkJfR&%tMg=3#1R8?*SmrPrF<8oJ2nWkNkw!w2XPujY_aEZAmX3vdX)akrFb0o{pYR#b8;0xk866#j&(3P=)U4Eh*wwWe& zg_pc?+zjU_sLRp6xVx<6DX8C8WVON4`rq)$KPDHb0r7pQP$+wZk)DT4hC#+yUVHbm zPAocM{5rpRXrF6u$A*tt5k(SAhrIB~wC66nTJ8T*yg^zO@ZDbY0p8w6;Fr=ZxwSCm z<0o%_K!8XaUKN&n`{;$8rbQ3vh)z7FO|A)P%06Q*S3@_p>Oy_93xrhK^@^QS`#3*FFR=XiV^aEGtQ2s?SDRy zWFmS3Qh05r`8%ho#Z+o(4F2`!dL0HHE6x0wKKH%%hwUmE;XsNGeLe3Ld<3b{XUT?S!+ZDz)&*9;y zm4KRDJ9_{O`)%T-Hf?FsS?U@-dyu$&b+6oXV1cTw zK0RH#23&Y?uv(Lm9CX`Pu@9xCqY;&RMQN8@r9iG^{ z{!#r4?8PAsS9omzI;}D8Zp!wEfFn%eMYG*~g{jxXv%{6=(ipkOaorDqB(*)S+yk>{ zzA7#ARcjaSvodZe$479$n>rPH-f*_REXw$njATPABeMg8VQ^zmrDWH!o1=4jz?Z0D zWHARvzr1UZk0sx{$-xc%LN4~Z&YhaFj`;OXkOyG3Gea>mY> zwl#Z!m28e5s?Nb^3v)qsZDW}bVnuVCgDp0JHurhaR)EdXVV{Op zWro{?z=hq(C{Fdd-+(cV7yz|50#`Y$N- z&{k)w-aIw1aS^|3vI8&Am@Zdx_x0I>BL>J%6IhswIj$$y?~SD}Jv&qfYAZsz{p1}? zXI$H-vDDcKC@$~FSs&MmKJN5?T7Gy`=In*wK%C|^T|7dAONo20$8B>Y##OE?*Z%Wja3(Pe|6n9NltkqMZ~s{%_B@U8zl2X|+`~M| zz@G@+)QIo>aj3Gc(Vp67+FpP1PNU;ABNE@6{$_BEvgL6pU9y#k)j<;^7Qkfcu${K}8O#Y};O2h{B3Q>Nq*W z=}*oRUqQ2MhV-ESKYkaZrk@c9FWC#eeQsb>pSMtHY?`#TaaY*?vV7-Dl0rEIWe{}D zIDi--{Z*Y6-hMN)1ECChC;nL;>-g?tzL$>^8IvNJwcD^|>?4L+8r5rh=G}%Z>yo&4 zC-QHROPmzs@fffD`>I}F{#g=c#<=rIMAjJS4xykiB}LDF7tlPR>*lk<##1j6-l_!< zDx{1r_4Ux@hs!TXo(jj9|BjddO+SgU^b{JIs2CbAYA+I1gsu)Z9=xY`*Z$YUL%=a+j&JRvXk`BHWSd)g)(ATLEv_#yA+VP0p-hzXa zzD~S=$Qi(vYOU}RdG4tse2(4hmm=m1hY^JRlK)Q^=NZ*hv-R=N;gObzG%3o32Su77 z0t$pKMIs2&n-3j?&_gpP(jo{77>d%nv>+uQ1PH}~Ql&}_9Sprm3vk1__rrbPS?9~F zS!dRsJ!hSnwfFzGHM1(YfM9vnfEg`=_?f{SbJH50rtz%7S4=4ksOL@#i?nwpZNJlQG@qGP9`IMn8{Az zBa6WQN=Ixev-h{{mJcS^4GgA?sNK~+T*3GkvEw&)S-v`y z;-w65{qkRt=SCx^GYvj<7pGIimM*YC+m`S;<}hgjPngUKGxtxb^%rE z$50DcUFY#(fS&PewOtvtAdw|h#E==UZ$I6GVPx3R~ z=ExzDTck4FWGMU^h=m3F?2F=3ddrZ?cSWH4!lJSVUrYiUV6dk#vJig@RJ^e*-}p$EvpQ4pYUt{3o`GJ=c3$L5>z6jj=C2 zAND`jDZc4%Es35Yh|T5~j>`oyN`IrIT0YE=d(gPLCXC*H-agxNuZNO|Fh8;X%P(8M zs@u3|R3+`7-2hA9!?BKmPb)qENHa>)sHth8DM8R*1JzHt-d@>&Q#@m z`d_gM$G>zFDD=&7%Hv#R6{t{Uwy91A)to7OGUm7HcJ*>RE{5V(lLqPWzRGofiw0gR z<%6IVU_>VykQ%cO=B&g0q7W=&V2<7dbToIg(w&0%g*>hU`5O_v__aHd$)Ilsq`r+E zNcy0qZ#7?Dht;@R`mF_XtM9s*gvhd`u%7S$;}}6ajQDwdr!UmwinCNg6 zi#?)}K2b_Y|Chq)IzO=tphR{#dw9C1BP52WEG;5K*+!~eU#qMGdQT3Lt3+dfr#9%L z_sj4SQZGJ8OzsgPqmrTcmeu*M`|xU_xZ1h^k$D$W{|)v9`au#yl1(VTY-_b%$0@%QP8N1_V&fA}Su(=DVnak&&Ob{BMu; z92OTfl>3Z2NiTQt*qC`!NQ@^JR3%`xKgxTda7ARE;ua9Qx^D#R-cKdfH#7d!4f*Q_ zQ$nyG4GOSa`uzeg8KG#lfC#X+IgeM2+Q74q9|zV?EsCr$QRF#@0>df#?LV&1Q_;$6 zQyYQ(CZ%r3(0V+7-}e!5gq8+NRFU#$?r&q(#r?JD*l6CKKW)5Pk&VJM0EKjA{}ZQm;*5OT=>UA*EWJ}Y(BE9?0Z z=kOa~Jhqtsj4V&AK*Cuxxy16I|G_CFw=beskS+7xu3mOp>b58~U*Br0-B*yes!X>4 zML3q`;dr+AQ|dT-Dd#vHGr|KBTaw6mJ-LKXArN}|l#R4ZAd$)n8m&l7LEi*Jx69(~ zO0tL(->i;@od|O$oJ zlvV!c9vhUrMTa0;`q=IS*zbiR=RQ{%}lLcULFH;w}gR&#T^ng8I8GqL4) z=GP?1(UDSNVc~K-?bP$@d%?!kwDwdVf57h8d^&QmmXAQ$d9KJfJ2|mHs}{-V)DJc#!3IJQ#(c7}9$KAMo#|Hm5^z5O zXNDxaE4RbCZ^mc1@^17uioTDQ_4a=KHMBsAi?p4cO8rbqg$R(|nk7!Y417a8UFxap z!WA_is+{6lgq}&Y_z>N0wXeE&YdY&_I;v_$i?_Ut1J2=_Vd{A==M>H|RpZ6`lOQx2 z$Ma9k4EEU7ZaUu-;T+>MDh{t0Ug@`0kM+_=lMJ;*p3TVV>D=Pb`WnufRH8^z=Ts2Q z5d(32=CK~gP3&H)tH9sgjGu2|W8Ul`3y`NB_G<_ME?IidY@`g2`Q63KMae z^QbYPNn>G_wjvmbTcWDP0rXnnead65xAhP^0^fE!Z3wx0L?j{mLj3{wv|p^j8TL|u zyB*;yLOH-l`)Xe=-14Zb?>uBQ{YHNLbp=LRs~3MxBx&Uv@|Fl=GmqygegwTYG2Jjd zF*cU%?6S?z8okHo|5hV0`?4Y12qc4r83Ym=Z*t|Njl(48=JfzqIcxq(IbnP#20dki zwzg2O#T-`02hedhAV;p)J0eZ5%*0mRH`>i6JV)!E?G61?{$nyH%f-nl&)y72DHF1E zX_%~u6imz$I7w)K7@l|~Yq#SXjJ4T5DV_dR3(HsM8m1)SC>`Rbn_r?$P|hX*3QK(_ z_n5~2%8Z3UPF}dsy=b6v(7AE!*OpBZ#S{_x$}4 zlbw~Ctk?AzIaO#0%#+hwY>~$bp1vDm0}eN#$_ICE3;_8O1i&Y_Qb@U(Y|ict>pCrm(U98okX>MpDMo&(#B2JE`Z#!~yeZnwg(We^f}LrgXxf62 zkDscJ^?@e#>ACsmc;aSwYlQksj%5wu8;aR9pvUQ>LNghr;V@A4sBt&8wa|q*g_H8? z*pn7O=0O?IwiX)?PY4U9F!%Luo;0DCk9> zYga2*>BXp>wf5EPAXNv4{F&__byW3FHKlpCzTeH7_;LFP5n9GH0-hmW0tb88eI z>$f}IoH>hGw6op{eEBof3*HL4m$J9I5SffV^*1MPI3v))OZlB%rex3y#{qs?^| T-6%vSh|+YmV47HU`|y7QM)_v- delta 20174 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 Date: Wed, 28 Sep 2016 12:34:39 -0400 Subject: [PATCH 06/55] Chemistry fixes (#22) * Solidification * Fix grinding --- .../chemistry/machinery/reagentgrinder.dm | 14 ++- .../reagents/chemistry/recipes/others.dm | 98 ++++++++++++++++--- 2 files changed, 95 insertions(+), 17 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index 0e3f521..327a3ea 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -411,10 +411,14 @@ remove_object(O) //Everything else - Transfers reagents from it into beaker - for (var/obj/item/weapon/reagent_containers/O in holdingitems) + for (var/obj/item/O in holdingitems) if (beaker.reagents.total_volume >= beaker.reagents.maximum_volume) break - var/amount = O.reagents.total_volume - O.reagents.trans_to(beaker, amount) - if(!O.reagents.total_volume) - remove_object(O) + var/allowed = get_allowed_by_id(O) + for (var/r_id in allowed) + var/space = beaker.reagents.maximum_volume - beaker.reagents.total_volume + var/amount = allowed[r_id] + beaker.reagents.add_reagent(r_id,min(amount, space)) + if (space < amount) + break + remove_object(O) \ No newline at end of file diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index e21feeb..e7fb76a 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -47,18 +47,6 @@ results = list("sodiumchloride" = 3) required_reagents = list("water" = 1, "sodium" = 1, "chlorine" = 1) -/datum/chemical_reaction/plasmasolidification - name = "Solid Plasma" - id = "solidplasma" - required_reagents = list("iron" = 5, "frostoil" = 5, "plasma" = 20) - mob_react = 1 - -/datum/chemical_reaction/plasmasolidification/on_reaction(datum/reagents/holder, created_volume) - var/location = get_turf(holder.my_atom) - for(var/i in 1 to created_volume) - new /obj/item/stack/sheet/mineral/plasma(location) - return - /datum/chemical_reaction/capsaicincondensation name = "Capsaicincondensation" id = "capsaicincondensation" @@ -518,3 +506,89 @@ id = "laughter" results = list("laughter" = 10) required_reagents = list("sugar" = 1, "banana" = 1) + +//////////////////////////////////// Solidification /////////////////////////////////////////// + +/datum/chemical_reaction/plasmasolidification + name = "Solid Plasma" + id = "solidplasma" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "plasma" = 20) + mob_react = 1 + +/datum/chemical_reaction/plasmasolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/mineral/plasma(location) + return + +/datum/chemical_reaction/metalsolidification + name = "Solid Metal" + id = "solidmetal" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "iron" = 20) + mob_react = 1 + +/datum/chemical_reaction/metalsolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/metal(location) + return + +/datum/chemical_reaction/glasssolidification + name = "Solid Glass" + id = "solidglass" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "silicon" = 20) + mob_react = 1 + +/datum/chemical_reaction/glasssolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/glass(location) + return + +/datum/chemical_reaction/uraniumsolidification + name = "Solid Uranium" + id = "soliduranium" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "uranium" = 20) + mob_react = 1 + +/datum/chemical_reaction/uraniumsolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/mineral/uranium(location) + return + +/datum/chemical_reaction/bananiumsolidification + name = "Solid Bananium" + id = "solidbananium" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "banana" = 20) + mob_react = 1 + +/datum/chemical_reaction/bananiumsolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/mineral/bananium(location) + return + +/datum/chemical_reaction/silversolidification + name = "Solid Silver" + id = "solidsilver" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "silver" = 20) + mob_react = 1 + +/datum/chemical_reaction/silversolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/mineral/silver(location) + return + +/datum/chemical_reaction/goldsolidification + name = "Solid Gold" + id = "solidgold" + required_reagents = list("pyrosium" = 10, "cryostylane" = 10, "gold" = 20) + mob_react = 1 + +/datum/chemical_reaction/goldsolidification/on_reaction(datum/reagents/holder, created_volume) + var/location = get_turf(holder.my_atom) + for(var/i in 1 to created_volume) + new /obj/item/stack/sheet/mineral/gold(location) + return \ No newline at end of file From 32c9e4089f899b16796d18fc8198778cf1031820 Mon Sep 17 00:00:00 2001 From: Pyko1 Date: Fri, 30 Sep 2016 16:08:07 +0300 Subject: [PATCH 07/55] Trapdoors (#23) * Trapdoors readded * FALSE SRC bleh * fixes * herp * HERPDERP fixed! * urange * tested and works --- code/game/machinery/doors/brigdoors.dm | 10 + code/modules/recycling/disposal-unit.dm | 219 +++++++++++++++++++--- icons/obj/atmospherics/pipes/trapdoor.dmi | Bin 0 -> 1907 bytes sound/machines/blast_door.ogg | Bin 0 -> 9717 bytes 4 files changed, 206 insertions(+), 23 deletions(-) create mode 100644 icons/obj/atmospherics/pipes/trapdoor.dmi create mode 100644 sound/machines/blast_door.ogg diff --git a/code/game/machinery/doors/brigdoors.dm b/code/game/machinery/doors/brigdoors.dm index 29f3bc8..e7a5a66 100644 --- a/code/game/machinery/doors/brigdoors.dm +++ b/code/game/machinery/doors/brigdoors.dm @@ -57,6 +57,10 @@ if(C.id == id) targets += C + for(var/obj/machinery/disposal/trapdoor/T in urange(20, src)) + if (T.id == src.id) + targets += T + if(!targets.len) stat |= BROKEN update_icon() @@ -101,6 +105,9 @@ continue C.locked = 1 C.update_icon() + + for(var/obj/machinery/disposal/trapdoor/T in targets) + T.close() return 1 @@ -131,6 +138,9 @@ C.locked = 0 C.update_icon() + for(var/obj/machinery/disposal/trapdoor/T in targets) + T.open() + return 1 diff --git a/code/modules/recycling/disposal-unit.dm b/code/modules/recycling/disposal-unit.dm index ab2da6b..e9f0b4b 100644 --- a/code/modules/recycling/disposal-unit.dm +++ b/code/modules/recycling/disposal-unit.dm @@ -86,11 +86,11 @@ user << "Eject the items first!" return playsound(src.loc, 'sound/items/Welder2.ogg', 100, 1) - user << "You start slicing the floorweld off \the [src]..." + user << "You start slicing the floorweld off \the [name]..." if(do_after(user,20/I.toolspeed, target = src)) if(!W.isOn()) return - user << "You slice the floorweld off \the [src]." + user << "You slice the floorweld off \the [name]." Deconstruct() return @@ -104,9 +104,9 @@ return ..() /obj/machinery/disposal/proc/place_item_in_disposal(obj/item/I, mob/user) - I.loc = src - user.visible_message("[user.name] places \the [I] into \the [src].", \ - "You place \the [I] into \the [src].") + I.forceMove(src) + user.visible_message("[user.name] places \the [I] into \the [name].", \ + "You place \the [I] into \the [name].") // mouse drop another mob or self @@ -123,26 +123,26 @@ if(target.buckled || target.has_buckled_mobs()) return if(target.mob_size > MOB_SIZE_HUMAN) - user << "[target] doesn't fit inside [src]!" + user << "[target] doesn't fit inside [name]!" return add_fingerprint(user) if(user == target) - user.visible_message("[user] starts climbing into [src].", \ - "You start climbing into [src]...") + user.visible_message("[user] starts climbing into [name].", \ + "You start climbing into [name]...") else - target.visible_message("[user] starts putting [target] into [src].", \ - "[user] starts putting you into [src]!") + target.visible_message("[user] starts putting [target] into [name].", \ + "[user] starts putting you into [name]!") if(do_mob(user, target, 20)) if (!loc) return target.forceMove(src) if(user == target) - user.visible_message("[user] climbs into [src].", \ - "You climb into [src].") + user.visible_message("[user] climbs into [name].", \ + "You climb into [name].") else - target.visible_message("[user] has placed [target] in [src].", \ - "[user] has placed [target] in [src].") - add_logs(user, target, "stuffed", addition="into [src]") + target.visible_message("[user] has placed [target] in [name].", \ + "[user] has placed [target] in [name].") + add_logs(user, target, "stuffed", addition="into [name]") target.LAssailant = user update_icon() @@ -166,7 +166,7 @@ // leave the disposal /obj/machinery/disposal/proc/go_out(mob/user) - user.loc = src.loc + user.forceMove(src.loc) user.reset_perspective(null) update_icon() return @@ -199,7 +199,7 @@ /obj/machinery/disposal/attack_animal(mob/living/simple_animal/M) if(M.environment_smash) M.do_attack_animation(src) - visible_message("[M.name] smashes \the [src] apart!") + visible_message("[M.name] smashes \the [name] apart!") qdel(src) return @@ -268,7 +268,7 @@ /obj/machinery/disposal/Deconstruct() if(stored) var/turf/T = loc - stored.loc = T + stored.forceMove(T) src.transfer_fingerprints_to(stored) stored.anchored = 0 stored.density = 1 @@ -352,7 +352,7 @@ return if(mode==-1 && !href_list["eject"]) // only allow ejecting if mode is -1 - usr << "\The [src]'s power is disabled." + usr << "\The [name]'s power is disabled." return ..() usr.set_machine(src) @@ -383,11 +383,11 @@ if(istype(I, /obj/item/projectile)) return if(prob(75)) - I.loc = src - visible_message("\the [I] lands in \the [src].") + I.forceMove(src) + visible_message("\the [I] lands in \the [name].") update_icon() else - visible_message("\the [I] bounces off of \the [src]'s rim!") + visible_message("\the [I] bounces off of \the [name]'s rim!") return 0 else return ..(mover, target, height) @@ -518,7 +518,7 @@ if(istype(AM, /obj)) var/obj/O = AM - O.loc = src + O.forceMove(src) else if(istype(AM, /mob)) var/mob/M = AM if(prob(2)) // to prevent mobs being stuck in infinite loops @@ -527,6 +527,179 @@ M.forceMove(src) flush() +//Trap Door +/obj/machinery/disposal/trapdoor + name = "trapdoor" + desc = "Almost like a door, but on floor." + density = FALSE + icon = 'icons/obj/atmospherics/pipes/trapdoor.dmi' + icon_state = "closed" + mode = FALSE + layer = 2.01 + var/id = 1 + var/auto_close = 1200 + var/auto_close_on_mob = 100 + var/sound_open = 'sound/machines/blast_door.ogg' + var/sound_close = 'sound/machines/blast_door.ogg' + var/open = FALSE + +/obj/machinery/disposal/trapdoor/proc/open() + if(flushing) + return + if(open) + return + open = TRUE + flick("opening", src) + playsound(loc, sound_open, 100, 1) + icon_state = "open" + spawn(5) + for(var/mob/living/M in loc) + if(!M.floating) + M.forceMove(src) + trap_flush() + if(auto_close_on_mob) + spawn(auto_close_on_mob) + close() + for(var/obj/item/O in loc) + if(!O.throwing || !O.anchored) + O.forceMove(src) + trap_flush() + if(auto_close) + spawn(auto_close) + close() + return 1 + + +/obj/machinery/disposal/trapdoor/proc/close() + if(open) + flick("closing", src) + icon_state = "closed" + playsound(loc, sound_open, 100, 1) + open = FALSE + return 1 + +/obj/machinery/disposal/trapdoor/New(loc,var/obj/structure/disposalconstruct/make_from) + ..() + stored.ptype = DISP_END_CHUTE + spawn(5) + trunk = locate() in loc + if(trunk) + trunk.linked = src + +/obj/machinery/disposal/trapdoor/Crossed(AM as mob|obj) + if(open) + if(istype(AM, /mob/living)) + var/mob/living/M = AM + if(M.floating) + return + M.forceMove(src) + trap_flush() + if(auto_close_on_mob) + spawn(auto_close_on_mob) + close() + return + if(istype(AM, /obj/item)) + var/obj/item/O = AM + spawn(5) + if(O.throwing || O.anchored) + return + else if(O.loc == src.loc) + O.forceMove(src) + trap_flush() + +/obj/machinery/disposal/trapdoor/MouseDrop_T(mob/living/target, mob/living/user) + if (!open) + return + if(istype(target)) + push_mob_in(target, user) + return 1 + +/obj/machinery/disposal/trapdoor/proc/push_mob_in(mob/living/target, mob/living/carbon/human/user) + if(target.buckled) + return + add_fingerprint(user) + if(user == target) + if(target.floating) + user.visible_message("[user] is attempting to dive into [name].", \ + "You start diving into [name]...") + if(!do_mob(target, user, 10)) + return + target.forceMove(src) + user.visible_message("[user] dives into [name].", \ + "You dive into [name].") + sleep(5) + trap_flush() + if(auto_close_on_mob) + spawn(auto_close_on_mob) + close() + else + user.visible_message("[user] is attempting to step on the edge of [name].", \ + "You start attempting to step on the edge of [name]...") + if(!do_mob(target, user, 30)) + return + var/chance = 25 // normal chance, 25% to fall inside + var/turf/open/floor/T = get_turf(src) + var/M = "fall inside" + var/U = "falls inside" + if(user.disabilities & CLUMSY) + chance = 80 + M = "accidentally do a backward flip, falling inside" + U = "accidentally does a backward flip, falling inside" + else if(user.getBrainLoss() >= 50) + chance = 70 + M = "close your eyes and boldly step forward" + U = "closes his eyes and boldly steps forward" + else if(istype(T) && T.wet && isobj(user.shoes) && user.shoes.flags&NOSLIP) + chance = 60 + M = "slip and fall inside" + U = "slips and falls inside" + if(prob(chance)) + user.visible_message("[U] \the [name]!", "You [M] \the [name]!") + user.forceMove(src) + trap_flush() + user.Stun(10) + if(auto_close_on_mob) + spawn(auto_close_on_mob) + close() + else + target.forceMove(src.loc) + user.visible_message("[user] steps on the edge of [name].", \ + "You step on the edge of [name].") + + if(user != target) + target.visible_message("[user] starts pushing [target] into [name].", \ + "[user] starts pushing you into [name]!") + user.visible_message("You start pushing [target] into [name]...") + if(do_mob(target, user, 10)) + if (!loc) + return + target.forceMove(src) + target.visible_message("[user] has pushed [target] in \the [name].", \ + "[user] has pushedd [target] in \the [name].") + add_logs(user, target, "pushed", addition="into [name]") + sleep(5) + trap_flush() + +/obj/machinery/disposal/trapdoor/proc/trap_flush() + if(flushing) + return + + flushing = TRUE + if(last_sound < world.time + 1) + playsound(src, 'sound/machines/disposalflush.ogg', 50, 0, 0) + last_sound = world.time + sleep(5) + if(gc_destroyed) + return + var/obj/structure/disposalholder/H = new() + newHolderDestination(H) + H.init(src) + air_contents = new() + H.start(src) + flushing = FALSE + sleep(5) + + /atom/movable/proc/disposalEnterTry() return 1 diff --git a/icons/obj/atmospherics/pipes/trapdoor.dmi b/icons/obj/atmospherics/pipes/trapdoor.dmi new file mode 100644 index 0000000000000000000000000000000000000000..646c108ea7197f2d886027578ba1d18512be713b GIT binary patch literal 1907 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 Date: Fri, 30 Sep 2016 21:09:19 +0300 Subject: [PATCH 08/55] Gooncode (#26) added to the code --- code/game/gamemodes/objective_items.dm | 6 ++++++ code/modules/research/research.dm | 9 ++++++++- icons/obj/items.dmi | Bin 58393 -> 61969 bytes 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/objective_items.dm b/code/game/gamemodes/objective_items.dm index 1fd3017..79456ac 100644 --- a/code/game/gamemodes/objective_items.dm +++ b/code/game/gamemodes/objective_items.dm @@ -71,6 +71,12 @@ difficulty = 5 excludefromjob = list("Research Director") +/datum/objective_item/steal/gooncodedisk + name = "the Gooncode disk" + targetitem = /obj/item/weapon/disk/tech_disk/gooncode + difficulty = 5 + excludefromjob = list("Research Director") + /datum/objective_item/steal/documents name = "any set of secret documents of any organization" targetitem = /obj/item/documents //Any set of secret documents. Doesn't have to be NT's diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index e8b891b..cd04640 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -297,4 +297,11 @@ research holder datum. /obj/item/weapon/disk/tech_disk/New() src.pixel_x = rand(-5, 5) - src.pixel_y = rand(-5, 5) \ No newline at end of file + src.pixel_y = rand(-5, 5) + +/obj/item/weapon/disk/tech_disk/gooncode + name = "Gooncode disk" + desc = "A disk containing Goonstation source code for further research." + icon = 'icons/obj/items.dmi' + icon_state = "gooncode" + stored = new/datum/tech/programming{level = 4} \ No newline at end of file diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 226ff760a5aaadd1c794a1e887c45279002e783f..ef79d55acb27c26cb93567d6baca198a3cca09b8 100644 GIT binary patch literal 61969 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 literal 58393 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 From f220dfab5ebc52ca0d6c0d657eb7b96e4aad06fa Mon Sep 17 00:00:00 2001 From: Pyko1 Date: Fri, 30 Sep 2016 21:10:58 +0300 Subject: [PATCH 09/55] Clown & Mime lockers and mime statues (#27) Also adds Icons for Honkcooler and nailed coffins. --- .../crates_lockers/closets/secure/misc.dm | 34 ++++++++++++++++++ code/game/objects/structures/showcase.dm | 10 +++++- icons/obj/closet.dmi | Bin 33185 -> 35188 bytes icons/obj/statue.dmi | Bin 21597 -> 24100 bytes icons/obj/vending.dmi | Bin 70647 -> 71165 bytes 5 files changed, 43 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/misc.dm b/code/game/objects/structures/crates_lockers/closets/secure/misc.dm index 0864e8a..36e2e32 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/misc.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/misc.dm @@ -65,3 +65,37 @@ new /obj/item/weapon/storage/box/metalfoam(src) for(var/i in 1 to 3) new /obj/item/weapon/rcd_ammo/large(src) + +/obj/structure/closet/secure_closet/mime + name = "Mime closet" + desc = "Filled with mime stuff" + req_access = list(access_theatre) + icon_state = "mime" + +/obj/structure/closet/secure_closet/mime/New() + ..() + new /obj/item/toy/crayon/mime(src) + new /obj/item/clothing/head/beret(src) + new /obj/item/clothing/mask/gas/mime(src) + new /obj/item/clothing/shoes/sneakers/mime(src) + new /obj/item/clothing/under/rank/mime(src) + new /obj/item/weapon/storage/backpack/mime(src) + new /obj/item/weapon/reagent_containers/food/snacks/baguette(src) + new /obj/item/clothing/gloves/color/white(src) + new /obj/item/clothing/suit/suspenders(src) + +/obj/structure/closet/secure_closet/clown + name = "Clown closet" + desc = "Filled with clown stuff" + req_access = list(access_theatre) + icon_state = "clown" + +/obj/structure/closet/secure_closet/clown/New() + ..() + new /obj/item/toy/crayon/rainbow(src) + new /obj/item/weapon/stamp/clown(src) + new /obj/item/clothing/under/rank/clown(src) + new /obj/item/clothing/shoes/clown_shoes(src) + new /obj/item/clothing/mask/gas/clown_hat(src) + new /obj/item/weapon/storage/backpack/clown(src) + new /obj/item/weapon/bikehorn(src) \ No newline at end of file diff --git a/code/game/objects/structures/showcase.dm b/code/game/objects/structures/showcase.dm index 170b709..fd4564a 100644 --- a/code/game/objects/structures/showcase.dm +++ b/code/game/objects/structures/showcase.dm @@ -73,4 +73,12 @@ if(SHOWCASE_SCREWDRIVERED) user << "The showcase has its screws loosened." else - user << "If you see this, something is wrong." \ No newline at end of file + user << "If you see this, something is wrong." + +/obj/structure/showcase/mimestatue + name = "Mime Statue" + icon = 'icons/obj/statue.dmi' + icon_state = "mimestatue" + desc = "A creepy, silent statue, or an excellent mime." + density = 1 + anchored = 0 \ No newline at end of file diff --git a/icons/obj/closet.dmi b/icons/obj/closet.dmi index 3f3eda012cc0921ad8f8b43ef5a8dec658cad5ef..aacd3b0e9395868b120be4e51e8b3a33b333132c 100644 GIT binary patch literal 35188 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

uGm8e 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 z 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 diff --git a/icons/obj/statue.dmi b/icons/obj/statue.dmi index 0fe4f7f539eaafca5db53e26082d80f3e5be07d6..8d7833c81a6c64de156014c291e5fa3089a339f2 100644 GIT binary patch delta 23707 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 G(C>dw$bk6( delta 21233 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∈#9@+LDXIm}W$1n6MJsM2wfYLVz# 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 From 40fade57cbc29c26e501492e6e2f6192b13dccaf Mon Sep 17 00:00:00 2001 From: McBawbaggings Date: Mon, 3 Oct 2016 15:53:39 +0100 Subject: [PATCH 10/55] Readds pocketknife. (#29) --- code/game/objects/items/weapons/weaponry.dm | 49 ++++++++++++++++++++ config/admins.txt | 3 +- icons/obj/weapons.dmi | Bin 54719 -> 55166 bytes sound/weapons/knife.ogg | Bin 0 -> 5691 bytes sound/weapons/raise.ogg | Bin 0 -> 6536 bytes 5 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 sound/weapons/knife.ogg create mode 100644 sound/weapons/raise.ogg diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index 0e33361..ca677c7 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -289,6 +289,55 @@ var/highlander_claymores = 0 user.visible_message("[user] is slitting \his own throat with the [src.name]! It looks like \he's trying to commit suicide.") return (BRUTELOSS) +/obj/item/weapon/pocketknife + name = "pocket knife" + desc = "Small, concealable blade that fits in the pocket nicely." + icon = 'icons/obj/weapons.dmi' + icon_state = "pocketknife" + force = 3 + throwforce = 3 + hitsound = "swing_hit" //it starts deactivated + throw_speed = 3 + throw_range = 8 + var/active = 0 + var/active_force = 12 + var/deactive_force = 3 + w_class = 1 //note to self: weight class + sharpness = IS_BLUNT + +/obj/item/weapon/pocketknife/suicide_act(mob/user) + user.visible_message("[user] is slitting \his own throat with the [src.name]! It looks like \he's trying to commit suicide.") + return (BRUTELOSS) + +/obj/item/weapon/pocketknife/attack_self(mob/living/user) + if (user.disabilities & CLUMSY && prob(50)) + user << "You accidentally cut yourself with [src], like a doofus!" + user.take_organ_damage(5,0) + active = !active + if (active) + force = active_force + throwforce = 14 + sharpness = IS_SHARP_ACCURATE + hitsound = 'sound/weapons/knife.ogg' + attack_verb = list("stabbed", "torn", "cut", "sliced") + icon_state = "pocketknife_open" + w_class = 3 + playsound(loc, 'sound/weapons/raise.ogg', 20, 1) + user << "[src] is now open." + else + force = deactive_force + throwforce = 3 + sharpness = IS_BLUNT + hitsound = "swing_hit" + attack_verb = null + icon_state = "pocketknife" + w_class = 1 + playsound(loc, 'sound/weapons/raise.ogg', 20, 1) + user << "[src] is now closed." + add_fingerprint(user) + return + + /obj/item/weapon/phone name = "red phone" desc = "Should anything ever go wrong..." diff --git a/config/admins.txt b/config/admins.txt index 0b31edb..1ef569c 100644 --- a/config/admins.txt +++ b/config/admins.txt @@ -12,4 +12,5 @@ Danhibiki = Host DinduStuffin = Host TortelliniTony = Host Dudeinyourbackyard = Host -Spacedong = Host \ No newline at end of file +Spacedong = Host +McBawbaggings = Host \ No newline at end of file diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi index c178229ea61245626ea6ad8e51e50bf359d7e0b7..8e034b42c3922ee09341d426836bcd27b6eb30ef 100644 GIT binary patch delta 14642 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 b?ghN5niL^*_520^{XKr9{jgZsGVuQa$?Z1Q delta 14201 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 diff --git a/sound/weapons/knife.ogg b/sound/weapons/knife.ogg new file mode 100644 index 0000000000000000000000000000000000000000..6ec4b9b1f8a6064b7f94f682c24d5b3b9b3cf57d GIT binary patch literal 5691 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 C2fbhb literal 0 HcmV?d00001 From 02dc56c3f79ee1226d3494bf7c3afc9a058b26da Mon Sep 17 00:00:00 2001 From: tortellinitony Date: Mon, 3 Oct 2016 10:54:01 -0400 Subject: [PATCH 11/55] Fix mint toxin (#28) --- code/modules/reagents/chemistry/reagents/toxin_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm index 7100446..a2a318e 100644 --- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm @@ -130,7 +130,7 @@ toxpwr = 0 /datum/reagent/toxin/minttoxin/on_mob_life(mob/living/M) - if(M.disabilities & FAT) + if (M.nutrition >= NUTRITION_LEVEL_FAT) M.gib() return ..() From 7521f0c4898018641f6280be07f837862b8159c6 Mon Sep 17 00:00:00 2001 From: Carbonhell Date: Tue, 4 Oct 2016 17:28:43 +0200 Subject: [PATCH 12/55] Adds the broken hippie map(NEEDS FIXING) --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 79630 ++++++++++++++-- _maps/tgstation2.dm | 4 +- 2 files changed, 72530 insertions(+), 7104 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index 942c3b5..45e759d 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -1,6919 +1,72344 @@ -"aaa" = (/turf/open/space,/area/space) -"aab" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_n"; name = "north of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space) -"aac" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 9},/turf/closed/wall/mineral/plastitanium{dir = 8; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aad" = (/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate) -"aae" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters"; name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate) -"aaf" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aag" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aah" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aai" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4; pixel_y = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaj" = (/obj/machinery/computer/shuttle/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aak" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters"; name = "remote shutter control"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aal" = (/obj/structure/frame/computer,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aam" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aan" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aao" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aap" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; freerange = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_y = -32; subspace_transmission = 1; syndie = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaq" = (/obj/structure/closet/syndicate/personal,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aar" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aas" = (/obj/machinery/door/window{name = "Cockpit"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aat" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aau" = (/turf/open/space,/area/shuttle/syndicate) -"aav" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaw" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1; pixel_y = 2},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aax" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aay" = (/obj/machinery/porta_turret/syndicate{dir = 4},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate) -"aaz" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaA" = (/obj/structure/closet/syndicate/nuclear,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaB" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_ne"; name = "northeast of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space) -"aaC" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaD" = (/obj/structure/table,/obj/item/device/aicard,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaE" = (/obj/machinery/door/poddoor{auto_close = 300; id = "smindicate"; name = "outer blast door"},/obj/machinery/button/door{id = "smindicate"; name = "external door control"; pixel_x = -26; pixel_y = 0; req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate"; name = "syndicate infiltrator"; port_angle = 0; roundstart_move = "syndicate_away"; width = 18},/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_nw"; name = "northwest of station"; turf_type = /turf/open/space; width = 18},/turf/open/floor/plating,/area/shuttle/syndicate) -"aaF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate) -"aaG" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2; pixel_y = -5},/obj/item/weapon/c4{pixel_x = -3; pixel_y = 3},/obj/item/weapon/c4{pixel_x = 2; pixel_y = -3},/obj/item/weapon/c4{pixel_x = -2; pixel_y = -1},/obj/item/weapon/c4{pixel_x = 3; pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate) -"aaI" = (/obj/machinery/door/window{name = "Ready Room"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaJ" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space) -"aaK" = (/obj/machinery/door/window{dir = 4; name = "EVA Storage"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaL" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaM" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "EVA Storage"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaN" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"aaO" = (/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/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaP" = (/obj/machinery/sleeper/syndie{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aaQ" = (/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aaR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aaS" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aaT" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aaU" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaV" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaW" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaX" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaY" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"aaZ" = (/obj/structure/bed/roller,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aba" = (/obj/structure/sign/bluecross_2,/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate) -"abb" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abc" = (/obj/machinery/door/window{dir = 4; name = "Infirmary"; req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abd" = (/obj/machinery/door/window/westright{name = "Tool Storage"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abe" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Infirmary"; req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abf" = (/obj/machinery/door/window{dir = 8; name = "Tool Storage"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abg" = (/obj/machinery/recharge_station,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abh" = (/obj/structure/lattice,/turf/open/space,/area/space) -"abi" = (/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate) -"abj" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/robot_parts/r_arm,/obj/item/robot_parts/l_arm,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abk" = (/obj/machinery/door/window{dir = 1; name = "Surgery"; req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abl" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abm" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abn" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abo" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abp" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4; pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abq" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space) -"abr" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abs" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abt" = (/obj/machinery/nuclearbomb/syndicate,/obj/machinery/door/window{dir = 1; name = "Secure Storage"; req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abu" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abv" = (/obj/structure/sign/securearea{pixel_y = -32},/turf/open/space,/area/space) -"abw" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abx" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"aby" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate) -"abz" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/shuttle/syndicate) -"abA" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abB" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abC" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate) -"abD" = (/turf/closed/wall/r_wall,/area/security/prison) -"abE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison) -"abF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/prison) -"abG" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison) -"abH" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison) -"abI" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/open/floor/plating,/area/shuttle/syndicate) -"abJ" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating,/area/shuttle/syndicate) -"abK" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/open/floor/plating,/area/shuttle/syndicate) -"abL" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/ambrosia,/turf/open/floor/plasteel/green/side{dir = 9},/area/security/prison) -"abM" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/plasteel/green/side{dir = 1},/area/security/prison) -"abN" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plating,/area/security/prison) -"abO" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/glowshroom,/turf/open/floor/plasteel/green/side{dir = 1},/area/security/prison) -"abP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/hydroponics/soil,/obj/item/device/plant_analyzer,/obj/machinery/camera{c_tag = "Prison Common Room"; network = list("SS13","Prison")},/turf/open/floor/plasteel/green/side{dir = 5},/area/security/prison) -"abQ" = (/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"abR" = (/obj/structure/sink{pixel_y = 20},/turf/open/floor/plating,/area/security/prison) -"abS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"abT" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"abU" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 6},/turf/closed/wall/mineral/plastitanium{dir = 4; icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"abV" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 10},/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate) -"abW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plating,/area/security/prison) -"abX" = (/turf/open/floor/plating,/area/security/prison) -"abY" = (/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plating,/area/security/prison) -"abZ" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/security/prison) -"aca" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acb" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/seeds/potato,/turf/open/floor/plasteel/green/side{dir = 10},/area/security/prison) -"acc" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/seeds/grass,/turf/open/floor/plasteel/green/side{dir = 2},/area/security/prison) -"acd" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) -"ace" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/turf/open/floor/plasteel/green/side{dir = 2},/area/security/prison) -"acf" = (/obj/structure/window/reinforced,/obj/machinery/hydroponics/soil,/obj/item/weapon/cultivator,/turf/open/floor/plasteel/green/side{dir = 6},/area/security/prison) -"acg" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"ach" = (/turf/open/floor/plating/airless,/area/space/nearstation) -"aci" = (/obj/structure/bookcase,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acj" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"ack" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/barber,/area/security/prison) -"acl" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/barber,/area/security/prison) -"acm" = (/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acn" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/security/prison) -"aco" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/prison) -"acp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/barber,/area/security/prison) -"acq" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/barber,/area/security/prison) -"acr" = (/obj/structure/lattice,/obj/structure/sign/securearea{pixel_y = -32},/turf/open/space,/area/space) -"acs" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space) -"act" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acu" = (/obj/structure/chair/stool,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acv" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/security/prison) -"acw" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/prison) -"acx" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/barber,/area/security/prison) -"acy" = (/obj/machinery/washing_machine,/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/security/prison) -"acz" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"acA" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space) -"acB" = (/turf/closed/wall,/area/security/transfer) -"acC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/security/transfer) -"acD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer) -"acE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/security/transfer) -"acF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/transfer) -"acG" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acH" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acI" = (/obj/machinery/light/small{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison) -"acJ" = (/obj/machinery/shower{dir = 8},/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison) -"acK" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) -"acL" = (/obj/structure/grille,/turf/open/space,/area/space) -"acM" = (/turf/closed/wall/r_wall,/area/security/main) -"acN" = (/turf/closed/wall,/area/security/main) -"acO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/main) -"acP" = (/turf/closed/wall,/area/security/hos) -"acQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/hos) -"acR" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxport) -"acS" = (/obj/machinery/door/poddoor{id = "executionspaceblast"; name = "blast door"},/turf/open/floor/plating,/area/security/transfer) -"acT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/darkwarning{dir = 9},/area/security/transfer) -"acU" = (/obj/machinery/light/small{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_x = 0; pixel_y = 25},/turf/open/floor/plasteel/darkwarning{dir = 1},/area/security/transfer) -"acV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/darkwarning{dir = 5},/area/security/transfer) -"acW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/transfer) -"acX" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acY" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"acZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"ada" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adb" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"add" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"ade" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Unisex Showers"; req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"adf" = (/turf/open/floor/plasteel/freezer,/area/security/prison) -"adg" = (/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adh" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adi" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adj" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_x = 0; pixel_y = 30},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/structure/table/wood,/obj/item/weapon/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/deputy,/turf/open/floor/carpet,/area/security/hos) -"adk" = (/obj/machinery/computer/secure_data,/turf/open/floor/carpet,/area/security/hos) -"adl" = (/obj/machinery/computer/security,/turf/open/floor/carpet,/area/security/hos) -"adm" = (/obj/machinery/computer/card/minor/hos,/turf/open/floor/carpet,/area/security/hos) -"adn" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/carpet,/area/security/hos) -"ado" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard) -"adp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"adq" = (/turf/open/floor/plasteel/darkwarning{dir = 8},/area/security/transfer) -"adr" = (/obj/structure/bed,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/security/transfer) -"ads" = (/obj/machinery/sparker{dir = 2; id = "executionburn"; pixel_x = 25},/turf/open/floor/plasteel/darkwarning{dir = 4},/area/security/transfer) -"adt" = (/turf/closed/wall,/area/security/prison) -"adu" = (/obj/machinery/door/poddoor/preopen{id = "permacell3"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt3"; name = "Cell 3"},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adv" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adx" = (/obj/machinery/door/airlock{name = "Unisex Restroom"; req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"ady" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adz" = (/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adA" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"adB" = (/obj/machinery/newscaster/security_unit{pixel_x = -30; pixel_y = 0},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 4; network = list("SS13")},/obj/machinery/recharger{pixel_y = 4},/obj/structure/table/wood,/turf/open/floor/carpet,/area/security/hos) -"adC" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet,/area/security/hos) -"adD" = (/turf/open/floor/carpet,/area/security/hos) -"adE" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/security/hos) -"adF" = (/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 10},/obj/structure/table/wood,/obj/item/device/radio/off,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/carpet,/area/security/hos) -"adG" = (/obj/structure/sign/securearea{pixel_y = -32},/obj/structure/lattice/catwalk,/turf/open/space,/area/space) -"adH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"adI" = (/obj/structure/lattice,/obj/item/stack/cable_coil/random,/turf/open/space,/area/space) -"adJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/darkwarning{dir = 10},/area/security/transfer) -"adK" = (/turf/open/floor/plasteel/darkwarning{dir = 2},/area/security/transfer) -"adL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2},/turf/open/floor/plasteel/darkwarning{dir = 6},/area/security/transfer) -"adM" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adN" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt3"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adO" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adQ" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adR" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1"; network = list("SS13","Prison")},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 0; pixel_y = 24; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adT" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"adU" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) -"adV" = (/obj/structure/table,/obj/item/weapon/storage/box/firingpins,/obj/item/weapon/storage/box/firingpins,/obj/item/key/security,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"adW" = (/obj/structure/table,/obj/item/weapon/storage/box/chemimp{pixel_x = 6},/obj/item/weapon/storage/box/trackimp{pixel_x = -3},/obj/item/weapon/storage/lockbox/loyalty,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"adX" = (/obj/structure/rack,/obj/machinery/firealarm{pixel_y = 24},/obj/item/weapon/gun/energy/gun/dragnet,/obj/item/weapon/gun/energy/gun/dragnet,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"adY" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof{pixel_y = 0},/obj/item/clothing/suit/armor/bulletproof{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; dir = 2; name = "motion-sensitive security camera"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"adZ" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 1},/obj/item/clothing/head/helmet/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/shield/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"aea" = (/obj/structure/rack,/obj/machinery/airalarm{pixel_y = 23},/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"aeb" = (/obj/structure/closet/secure_closet/lethalshots,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory) -"aec" = (/obj/vehicle/secway,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory) -"aed" = (/obj/structure/closet/l3closet/security,/obj/machinery/camera{c_tag = "Brig Equipment Room"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aee" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aef" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{on = 0; pixel_x = -3; pixel_y = 8},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/carpet,/area/security/hos) -"aeg" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/security/hos) -"aeh" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/security/hos) -"aei" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/suit_storage_unit/hos,/turf/open/floor/carpet,/area/security/hos) -"aej" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/security/main) -"aek" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxport) -"ael" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aem" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/transfer) -"aen" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/transfer) -"aeo" = (/obj/machinery/door/poddoor/preopen{id = "executionfireblast"; layer = 2.9; name = "blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Transfer Room"; req_access_txt = "2"},/turf/open/floor/plasteel/vault{dir = 8},/area/security/transfer) -"aep" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 3"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aeq" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aer" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aet" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aeu" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aev" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aew" = (/obj/structure/toilet{dir = 1},/turf/open/floor/plasteel/freezer,/area/security/prison) -"aex" = (/obj/item/weapon/grenade/barrier{pixel_x = 4},/obj/item/weapon/grenade/barrier,/obj/item/weapon/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"aey" = (/turf/open/floor/plasteel/warning{dir = 9},/area/ai_monitored/security/armory) -"aez" = (/turf/open/floor/plasteel/warning{dir = 1},/area/ai_monitored/security/armory) -"aeA" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "Armory APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel/warning{dir = 1},/area/ai_monitored/security/armory) -"aeB" = (/obj/machinery/vending/security,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aeC" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/carpet,/area/security/hos) -"aeD" = (/obj/structure/chair{dir = 1},/turf/open/floor/carpet,/area/security/hos) -"aeE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/hos) -"aeF" = (/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 35},/obj/structure/closet/secure_closet/hos,/turf/open/floor/carpet,/area/security/hos) -"aeG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plating,/area/security/main) -"aeH" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard) -"aeI" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aeJ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeK" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeM" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeN" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"aeQ" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/open/space,/area/space) -"aeR" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/turf/open/floor/plasteel/black,/area/security/transfer) -"aeS" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/device/taperecorder{pixel_x = -3; pixel_y = 0},/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/turf/open/floor/plasteel/black,/area/security/transfer) -"aeT" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 24; pixel_y = 5},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plasteel/black,/area/security/transfer) -"aeU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/prison) -"aeV" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3"; req_access_txt = "2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aeW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/prison) -"aeX" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aeY" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison) -"aeZ" = (/obj/structure/closet/secure_closet{anchored = 1; name = "Contraband Locker"; req_access_txt = "3"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory) -"afa" = (/obj/item/weapon/storage/toolbox/drone,/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/security/armory) -"afb" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/shotgun/riot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/bot{dir = 2},/area/ai_monitored/security/armory) -"afc" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/bot{dir = 2},/area/ai_monitored/security/armory) -"afd" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/bot{dir = 2},/area/ai_monitored/security/armory) -"afe" = (/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/bot{dir = 2},/area/ai_monitored/security/armory) -"aff" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afh" = (/obj/machinery/door/window/eastleft{name = "armoury desk"; req_access_txt = "1"},/obj/machinery/door/window/westleft{name = "armoury desk"; req_access_txt = "3"},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afi" = (/obj/machinery/power/apc{dir = 8; name = "Head of Security's Office APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/hos) -"afj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/carpet,/area/security/hos) -"afk" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/security/hos) -"afl" = (/obj/machinery/light_switch{pixel_y = -23},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/security/hos) -"afm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/carpet,/area/security/hos) -"afn" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afo" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afp" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afq" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afr" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afs" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aft" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"afu" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxport) -"afv" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating/warnplate{dir = 9},/area/security/transfer) -"afw" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating/warnplate{dir = 1},/area/security/transfer) -"afx" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/transfer) -"afy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/security/transfer) -"afz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plasteel/black,/area/security/transfer) -"afA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/transfer) -"afB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/prison) -"afC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"afD" = (/obj/machinery/button/door{id = "permacell3"; name = "Cell 3 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 3"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison) -"afE" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison) -"afF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison) -"afG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"afH" = (/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison) -"afI" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Prison Hallway"; network = list("SS13","Prison")},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison) -"afJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison) -"afK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/prison) -"afL" = (/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = -4; pixel_y = 25; req_access_txt = "2"},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 6; pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/prison) -"afM" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison) -"afN" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Prison Wing APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/prison) -"afO" = (/obj/machinery/flasher/portable,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"afP" = (/turf/open/floor/plasteel/warning{dir = 10},/area/ai_monitored/security/armory) -"afQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/warning{dir = 2},/area/ai_monitored/security/armory) -"afR" = (/turf/open/floor/plasteel/warning{dir = 2},/area/ai_monitored/security/armory) -"afS" = (/turf/open/floor/plasteel/warning/corner{dir = 1},/area/ai_monitored/security/armory) -"afT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afU" = (/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"afW" = (/obj/machinery/door/poddoor/shutters{id = "armory"; name = "Armoury Shutter"},/obj/machinery/button/door{id = "armory"; name = "Armory Shutters"; pixel_x = 0; pixel_y = -26; req_access_txt = "3"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/ai_monitored/security/armory) -"afX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"afY" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"afZ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/hos) -"aga" = (/obj/machinery/door/airlock/glass_command{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/security/hos) -"agb" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/hos) -"agc" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/main) -"agd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/warning{dir = 5},/area/security/main) -"age" = (/obj/machinery/camera{c_tag = "Security Escape Pod"; dir = 4; network = list("SS13")},/turf/open/floor/plating,/area/security/main) -"agf" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3) -"agg" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3) -"agh" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast"; name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard) -"agi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating/warnplate{dir = 8},/area/security/transfer) -"agj" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/security/transfer) -"agk" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/weapon/tank/internals/anesthetic{pixel_x = -3; pixel_y = 1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 3},/turf/open/floor/plasteel/vault{dir = 8},/area/security/transfer) -"agl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/security/transfer) -"agm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/black,/area/security/transfer) -"agn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 0; icon_state = "door_closed"; id_tag = null; locked = 0; name = "Prisoner Transfer Centre"; req_access = null; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/security/transfer) -"ago" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/prison) -"agp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"agq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/security/prison) -"agr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"ags" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"agt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"agu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/prison) -"agv" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"agw" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/prison) -"agx" = (/obj/structure/rack,/obj/item/weapon/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/item/weapon/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"agy" = (/obj/structure/rack,/obj/item/weapon/storage/box/teargas{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory) -"agz" = (/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/security/armory) -"agA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"agB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/red/side,/area/ai_monitored/security/armory) -"agC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/red/side,/area/ai_monitored/security/armory) -"agD" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"agE" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"agF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"agG" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"agH" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main) -"agI" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"agJ" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"agK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"agL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"agM" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"agN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/main) -"agO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/warning{dir = 4},/area/security/main) -"agP" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Pod Three"; req_access_txt = "0"},/turf/open/floor/plating,/area/security/main) -"agQ" = (/turf/open/floor/plating,/area/security/main) -"agR" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"; req_access_txt = "0"},/turf/open/floor/plating,/area/security/main) -"agS" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod3"; name = "escape pod 3"; port_angle = 180; preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3) -"agT" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -32},/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3) -"agU" = (/obj/machinery/computer/shuttle/pod{pixel_y = -32; possible_destinations = "pod_asteroid3"; shuttleId = "pod3"},/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3) -"agV" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_3) -"agW" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_asteroid3"; name = "asteroid"},/turf/open/space,/area/space) -"agX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/transfer) -"agY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating/warnplate{dir = 10},/area/security/transfer) -"agZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/door/window/southleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Armory"; req_access_txt = "2"},/turf/open/floor/plating/warnplate,/area/security/transfer) -"aha" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahc" = (/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahd" = (/turf/closed/wall/r_wall,/area/security/transfer) -"ahe" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/prison) -"ahf" = (/obj/structure/extinguisher_cabinet{pixel_x = 1; pixel_y = -27},/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahg" = (/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahh" = (/obj/structure/table,/obj/item/device/electropack,/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahi" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/weapon/storage/box/hug,/obj/item/weapon/razor{pixel_x = -6},/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahj" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahk" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/turf/open/floor/plasteel/red/side,/area/security/prison) -"ahl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/prison) -"ahm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/prison) -"ahn" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/security/armory) -"aho" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/security/armory) -"ahp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/window/southleft{name = "Armory"; req_access_txt = "3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/warning{dir = 10},/area/ai_monitored/security/armory) -"ahq" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning{dir = 2},/area/ai_monitored/security/armory) -"ahr" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory) -"ahs" = (/obj/structure/reagent_dispensers/peppertank,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aht" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{pixel_x = -32},/turf/open/floor/plating,/area/security/main) -"ahu" = (/obj/machinery/door/airlock/glass_security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/main) -"ahw" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main) -"ahx" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/timer,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"ahy" = (/turf/open/floor/plasteel,/area/security/main) -"ahz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Head of Security"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"ahA" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) -"ahB" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel,/area/security/main) -"ahC" = (/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ahD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main) -"ahE" = (/obj/structure/sign/pods{pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 6},/area/security/main) -"ahF" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/security/main) -"ahG" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 1},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahH" = (/obj/structure/table,/obj/item/device/electropack,/obj/item/weapon/screwdriver,/obj/item/weapon/wrench,/obj/item/clothing/head/helmet,/obj/item/device/assembly/signaler,/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahI" = (/obj/structure/closet/secure_closet/injection,/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "Prisoner Transfer Centre"; pixel_x = 0; pixel_y = -27},/turf/open/floor/plasteel/black,/area/security/transfer) -"ahJ" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/security/prison) -"ahK" = (/turf/closed/wall,/area/security/brig) -"ahL" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/security/brig) -"ahM" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/security/brig) -"ahN" = (/turf/closed/wall/r_wall,/area/security/warden) -"ahO" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -30; pixel_y = 0},/obj/machinery/camera{c_tag = "Brig Control Room"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas/sechailer{pixel_x = -3; pixel_y = 3},/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahP" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahQ" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahR" = (/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahS" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahU" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahV" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ahW" = (/obj/structure/table,/obj/machinery/syndicatebomb/training,/obj/item/weapon/gun/energy/laser/practice,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main) -"ahX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"ahY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"ahZ" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main) -"aia" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/main) -"aib" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"aic" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"aid" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/security/main) -"aie" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main) -"aif" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/security/prison) -"aig" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison) -"aih" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison) -"aii" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/security/prison) -"aij" = (/turf/open/floor/plasteel/black,/area/security/prison) -"aik" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 9},/area/security/brig) -"ail" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/regular,/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig) -"aim" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 0; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig) -"ain" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip{density = 0},/obj/item/weapon/reagent_containers/blood/empty,/turf/open/floor/plasteel/whitered/side{dir = 5},/area/security/brig) -"aio" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"aip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"aiq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"air" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ais" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ait" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiv" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiw" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aix" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"aiy" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main) -"aiz" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main) -"aiA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"aiB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"aiC" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"aiD" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/main) -"aiE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"aiF" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 8},/turf/open/floor/plasteel,/area/security/main) -"aiG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plasteel,/area/security/main) -"aiH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aiI" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 7},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main) -"aiJ" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/delivery,/area/security/main) -"aiK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Security"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/bot,/area/security/main) -"aiL" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiM" = (/turf/closed/wall,/area/maintenance/fsmaint) -"aiN" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison) -"aiO" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/black,/area/security/prison) -"aiP" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/prison) -"aiQ" = (/obj/item/weapon/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/item/weapon/reagent_containers/syringe{name = "steel point"},/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig) -"aiR" = (/turf/open/floor/plasteel/whitered/corner{tag = "icon-whiteredcorner (WEST)"; dir = 8},/area/security/brig) -"aiS" = (/turf/open/floor/plasteel/white,/area/security/brig) -"aiT" = (/obj/machinery/door/window/westleft{base_state = "left"; dir = 4; icon_state = "left"; name = "Brig Infirmary"; req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig) -"aiU" = (/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aiZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aja" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajc" = (/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajd" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main) -"aje" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"ajg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aji" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/chair,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main) -"ajk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajl" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajn" = (/obj/machinery/power/apc{dir = 4; name = "Security Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main) -"ajo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/main) -"ajp" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajq" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plasteel/black,/area/security/prison) -"ajr" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8},/turf/open/floor/plasteel/black,/area/security/prison) -"ajs" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/turf/open/floor/plasteel/black,/area/security/brig) -"ajt" = (/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/brig) -"aju" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"; req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig) -"ajv" = (/obj/structure/closet/secure_closet/warden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajw" = (/obj/structure/table,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajx" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Warden"},/obj/machinery/button/door{id = "Prison Gate"; name = "Prison Wing Lockdown"; pixel_x = -27; pixel_y = 8; req_access_txt = "2"},/obj/machinery/button/door{id = "Secure Gate"; name = "Cell Shutters"; pixel_x = -27; pixel_y = -2; req_access_txt = "0"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajy" = (/obj/structure/table,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajz" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajC" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ajD" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"ajE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/main) -"ajF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajG" = (/obj/structure/noticeboard{dir = 1; pixel_y = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/main) -"ajH" = (/obj/machinery/light_switch{pixel_y = -23},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side,/area/security/main) -"ajI" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side,/area/security/main) -"ajL" = (/obj/machinery/camera{c_tag = "Security Office"; dir = 1; network = list("SS13")},/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajM" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/computer/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajN" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/red/side,/area/security/main) -"ajQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/main) -"ajR" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/main) -"ajS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/prison) -"ajW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/prison) -"ajX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/security/prison) -"ajY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/security/prison) -"ajZ" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/security/brig) -"aka" = (/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig) -"akb" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side,/area/security/brig) -"akc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/turf/open/floor/plasteel/whitered/side{dir = 6},/area/security/brig) -"akd" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"ake" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"akf" = (/obj/structure/table/reinforced,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"akg" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"akh" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden) -"aki" = (/obj/machinery/door/airlock/glass_security{name = "Brig Control"; req_access_txt = "3"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"akj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) -"akk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access = null; req_access_txt = "1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"akl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/main) -"akm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"akn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ako" = (/obj/item/stack/rods,/turf/open/space,/area/space) -"akp" = (/turf/closed/wall,/area/security/processing) -"akq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) -"akr" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access = null; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/prison) -"aks" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig) -"akt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig) -"aku" = (/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akw" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akx" = (/obj/structure/sign/goldenplaque{pixel_y = 32},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"aky" = (/obj/machinery/camera{c_tag = "Brig East"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akB" = (/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"akC" = (/turf/closed/wall/r_wall,/area/security/brig) -"akD" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/closet/secure_closet/courtroom,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/securearea{pixel_x = -32},/obj/item/weapon/gavelhammer,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akE" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/obj/machinery/camera{c_tag = "Courtroom North"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akF" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 9},/area/crew_quarters/courtroom) -"akG" = (/obj/structure/chair{name = "Judge"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/blue/side{dir = 1},/area/crew_quarters/courtroom) -"akH" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 5},/area/crew_quarters/courtroom) -"akI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akJ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"akK" = (/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"akL" = (/turf/closed/wall,/area/crew_quarters/courtroom) -"akM" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"akN" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing) -"akO" = (/obj/machinery/computer/gulag_teleporter_computer,/turf/open/floor/plasteel,/area/security/processing) -"akP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/computer/security{name = "Labor Camp Monitoring"; network = list("Labor")},/turf/open/floor/plasteel,/area/security/processing) -"akQ" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/obj/machinery/camera{c_tag = "Labor Shuttle Dock North"},/turf/open/floor/plasteel,/area/security/processing) -"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) -"akS" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"akT" = (/obj/machinery/power/apc{dir = 1; name = "Labor Shuttle Dock APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akU" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig) -"akY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig) -"akZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ala" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"alb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"alc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ald" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ale" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"alf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig) -"ali" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Brig"; req_access = null; req_access_txt = "63; 42"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"alk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/courtroom) -"all" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; listening = 1; name = "Station Intercom (Court)"; pixel_x = 0},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom) -"alm" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom) -"aln" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom) -"alo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/courtroom) -"alp" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/crew_quarters/courtroom) -"alq" = (/obj/machinery/door/window/southleft{name = "Court Cell"; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"alr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarport) -"als" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"alt" = (/turf/closed/wall/mineral/titanium,/area/shuttle/labor) -"alu" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor) -"alv" = (/turf/closed/wall/r_wall,/area/security/processing) -"alw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/warning/corner{dir = 1},/area/security/processing) -"alx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/processing) -"aly" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing) -"alz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/processing) -"alA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Labor Shuttle"; req_access = null; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/brig) -"alC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "Brig West"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig) -"alE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig) -"alG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig) -"alI" = (/obj/machinery/light,/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig) -"alK" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig) -"alL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alM" = (/obj/machinery/camera{c_tag = "Brig Central"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"alP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"alQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 4"; name = "Cell 4"; pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig) -"alR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig) -"alS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"alT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig) -"alU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) -"alV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"alW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/courtroom) -"alX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/courtroom) -"alY" = (/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"alZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"ama" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31; pixel_y = 0},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amb" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amc" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amd" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) -"ame" = (/turf/open/floor/plasteel/warning{dir = 8},/area/security/processing) -"amf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/security/processing) -"amg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing) -"amh" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"ami" = (/obj/machinery/door/airlock/glass_security{id_tag = null; name = "Evidence Storage"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side,/area/security/brig) -"amj" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amk" = (/obj/machinery/door/window/brigdoor{id = "Cell 1"; name = "Cell 1"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig) -"aml" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall,/area/security/brig) -"amn" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amo" = (/obj/machinery/door/window/brigdoor{id = "Cell 2"; name = "Cell 2"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig) -"amp" = (/obj/machinery/door/window/brigdoor{id = "Cell 3"; name = "Cell 3"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/brig) -"amq" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amr" = (/obj/machinery/door/airlock/glass_security{name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/security/brig) -"ams" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amt" = (/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"amu" = (/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"amv" = (/obj/structure/grille,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amw" = (/obj/machinery/door/window/brigdoor{id = "Cell 4"; name = "Cell 4"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/brig) -"amx" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"amy" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 9},/area/crew_quarters/courtroom) -"amz" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/courtroom) -"amA" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/bot,/area/crew_quarters/courtroom) -"amB" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/courtroom) -"amC" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/open/floor/plasteel/green/side{dir = 5},/area/crew_quarters/courtroom) -"amD" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"amE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"amF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"amG" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amH" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher"; name = "Flash Control"; pixel_x = 0; pixel_y = -26; req_access_txt = "1"},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amI" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2; pixel_x = 30; pixel_y = 30},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amJ" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/mineral/plastitanium,/area/shuttle/labor) -"amK" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"; shuttledocked = 1},/turf/open/floor/plating,/area/security/processing) -"amL" = (/turf/open/floor/plating,/area/security/processing) -"amM" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/security/processing) -"amN" = (/turf/open/floor/plasteel,/area/security/processing) -"amO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing) -"amP" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing) -"amQ" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"amR" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"amS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"amT" = (/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"amU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"amV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"amW" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"amX" = (/obj/machinery/button/door{id = "briggate"; name = "Desk Shutters"; pixel_x = -26; pixel_y = 6; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -28; pixel_y = -8},/turf/open/floor/plasteel/black,/area/security/brig) -"amY" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/black,/area/security/brig) -"amZ" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/eastleft{name = "Brig Desk"; req_access_txt = "1"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/security/brig) -"ana" = (/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"anb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/obj/machinery/flasher{id = "Cell 4"; pixel_x = 28},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"and" = (/obj/structure/chair{dir = 4; name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 10},/area/crew_quarters/courtroom) -"ane" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/courtroom) -"anf" = (/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/courtroom) -"ang" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/courtroom) -"anh" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/courtroom) -"ani" = (/obj/structure/chair{dir = 8; name = "Defense"},/turf/open/floor/plasteel/green/side{dir = 6},/area/crew_quarters/courtroom) -"anj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"ank" = (/turf/closed/wall,/area/maintenance/fsmaint2) -"anl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"anm" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) -"ann" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Fore Port Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"ano" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"anp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"anq" = (/turf/closed/wall,/area/maintenance/fpmaint2) -"anr" = (/obj/effect/decal/cleanable/vomit,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ans" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ant" = (/obj/item/weapon/cigbutt/cigarbutt,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anu" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/shuttle/labor) -"anv" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2; output_dir = 1},/turf/open/floor/plasteel/black,/area/shuttle/labor) -"anw" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/warning{dir = 8},/area/security/processing) -"anx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing) -"any" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"anz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing) -"anA" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/brig) -"anB" = (/turf/open/floor/plasteel,/area/security/brig) -"anC" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig) -"anD" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anE" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anF" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anG" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anH" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anI" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anJ" = (/obj/machinery/light/small{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = -5; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -26; pixel_y = 5; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/brig) -"anK" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig) -"anL" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/eastright{name = "Brig Desk"; req_access_txt = "2"},/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/open/floor/plasteel/black,/area/security/brig) -"anM" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"anN" = (/obj/structure/closet/secure_closet/brig{id = "Cell 4"; name = "Cell 4 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anP" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; dir = 2; name = "Prison Intercom (General)"; pixel_x = 25; pixel_y = -2; prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"anQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"anR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"anS" = (/obj/machinery/door/airlock/glass{name = "Courtroom"; req_access_txt = "42"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"anT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"anU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"anV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"anW" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"anX" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"anY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"anZ" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"aoa" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aob" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoc" = (/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aod" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bedsheet,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoe" = (/obj/machinery/computer/slot_machine{balance = 15; money = 500},/obj/item/weapon/coin/iron,/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/diamond,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aof" = (/obj/structure/chair{dir = 1},/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aog" = (/obj/structure/chair{dir = 1},/obj/structure/noticeboard{dir = 8; pixel_x = 27; pixel_y = 0},/obj/item/trash/plate,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoh" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"aoi" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1; pixel_x = 30; pixel_y = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"aoj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/closed/wall,/area/security/processing) -"aok" = (/obj/machinery/door/airlock/glass_security{name = "Prisoner Processing"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/processing) -"aol" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) -"aom" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/brig) -"aon" = (/obj/machinery/light,/turf/open/floor/plasteel/red/side,/area/security/brig) -"aoo" = (/obj/structure/closet{name = "Evidence Closet"},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/brig) -"aop" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"aoq" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"aor" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig) -"aos" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/security/brig) -"aot" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "briggate"; name = "security shutters"},/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/brig) -"aou" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "briggate"; name = "security blast door"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig) -"aov" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig) -"aow" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig) -"aox" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"aoy" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"aoz" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"aoA" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 8; name = "Courtroom APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"aoB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aoC" = (/obj/machinery/light/small{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aoD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aoE" = (/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aoF" = (/turf/closed/wall,/area/mining_construction) -"aoG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Fore Port Solar APC"; pixel_x = -25; pixel_y = 3},/obj/machinery/camera{c_tag = "Fore Port Solar Control"; dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"aoH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"aoI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarport) -"aoJ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoM" = (/obj/item/trash/sosjerky,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoN" = (/obj/item/weapon/electronics/airalarm,/obj/item/weapon/circuitboard/machine/seed_extractor,/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoO" = (/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/fpmaint2) -"aoP" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/fpmaint2) -"aoQ" = (/obj/structure/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher"; pixel_x = 25},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"aoR" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/warning{dir = 9},/area/security/processing) -"aoS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing) -"aoT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing) -"aoU" = (/obj/machinery/button/door{desc = "A remote control switch for the exit."; id = "laborexit"; name = "exit button"; normaldoorcontrol = 1; pixel_x = 26; pixel_y = -6; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/processing) -"aoV" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"aoW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"aoX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"aoY" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aoZ" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"apa" = (/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"apb" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"apc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"apd" = (/turf/open/floor/plating,/area/maintenance/fsmaint) -"ape" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apf" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aph" = (/turf/open/floor/plating/warnplate{dir = 9},/area/shuttle/auxillary_base) -"api" = (/turf/open/floor/plating/warnplate{dir = 1},/area/shuttle/auxillary_base) -"apj" = (/turf/open/floor/plating/warnplate{dir = 5},/area/shuttle/auxillary_base) -"apk" = (/obj/machinery/door/airlock/engineering{icon_state = "door_closed"; locked = 0; name = "Fore Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"apl" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) -"apm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apn" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apo" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"app" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"apq" = (/obj/machinery/door/airlock/shuttle{id_tag = "prisonshuttle"; name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 5; id = "laborcamp"; name = "labor camp shuttle"; port_angle = 90; width = 9},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; width = 9},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"apr" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Labor Camp Shuttle Airlock"; shuttledocked = 1},/turf/open/floor/plating,/area/security/processing) -"aps" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plating,/area/security/processing) -"apt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{id_tag = "laborexit"; name = "Labor Shuttle"; req_access = null; req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/processing) -"apu" = (/obj/item/severedtail,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"apv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"apw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"apx" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"apy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"apz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apB" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apC" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apD" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/camera{c_tag = "Courtroom South"; dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"apF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apG" = (/obj/structure/disposalpipe/segment,/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"apH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"apJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fsmaint) -"apK" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) -"apL" = (/obj/machinery/power/solar_control{id = "auxsolareast"; name = "Fore Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"apM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"apN" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/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 = 32},/obj/item/device/multitool,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"apO" = (/turf/open/floor/plating/warnplate{dir = 8},/area/shuttle/auxillary_base) -"apP" = (/turf/open/floor/plating,/area/shuttle/auxillary_base) -"apQ" = (/turf/open/floor/plating/warnplate{dir = 4; luminosity = 2; initial_gas_mix = "o2=0.01;n2=0.01"},/area/shuttle/auxillary_base) -"apR" = (/obj/machinery/camera{c_tag = "Fore Port Solar Access"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apU" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apV" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apW" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/monkey_recycler,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"apX" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) -"apY" = (/obj/structure/grille,/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 = -32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) -"apZ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 10},/area/security/processing) -"aqa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing) -"aqb" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera{c_tag = "Labor Shuttle Dock South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing) -"aqc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/processing) -"aqd" = (/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore) -"aqe" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway West"; dir = 1},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore) -"aqf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore) -"aqg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA"; location = "Security"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aqh" = (/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqi" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqj" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqk" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway East"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aql" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqm" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqn" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore) -"aqo" = (/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"aqp" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3; pixel_y = 5},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom) -"aqq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqr" = (/obj/machinery/light/small{dir = 8},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating/warnplate{dir = 9},/area/maintenance/fsmaint) -"aqs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Out"; on = 1},/turf/open/floor/plating/warnplate{dir = 5},/area/maintenance/fsmaint) -"aqt" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aqu" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aqv" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aqw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aqx" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aqy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/mining_construction) -"aqz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqA" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqB" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqC" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqD" = (/turf/open/space,/area/space/nearstation) -"aqE" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"aqF" = (/turf/open/floor/plasteel/airless,/area/space/nearstation) -"aqG" = (/obj/structure/table,/obj/item/weapon/stamp,/obj/item/weapon/poster/legit,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqH" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aqI" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/labor) -"aqJ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/security/processing) -"aqK" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/security/processing) -"aqL" = (/turf/closed/wall,/area/security/vacantoffice2) -"aqM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Vacant Office B"; req_access_txt = "32"},/turf/open/floor/plating,/area/security/vacantoffice2) -"aqN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqO" = (/turf/closed/wall,/area/lawoffice) -"aqP" = (/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/turf/open/floor/plasteel,/area/lawoffice) -"aqQ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"aqR" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aqS" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"aqT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fsmaint) -"aqU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) -"aqV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall,/area/maintenance/fsmaint) -"aqW" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqX" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqZ" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "Dormitory Maintenance APC"; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arb" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"arc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ard" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"are" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air In"; on = 1},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating/warnplate{dir = 8},/area/maintenance/fsmaint) -"arf" = (/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating/warnplate{dir = 4},/area/maintenance/fsmaint) -"arg" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Fore Starboard Solar APC"; pixel_x = -25; pixel_y = 3},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"arh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"ari" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"arj" = (/turf/closed/wall/r_wall,/area/maintenance/fsmaint2) -"ark" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"arl" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"arm" = (/obj/machinery/light,/turf/open/floor/plating,/area/shuttle/auxillary_base) -"arn" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/mining_construction) -"aro" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction) -"arp" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/mining_construction) -"arq" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"arr" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/fpmaint2) -"ars" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/maintenance/fpmaint2) -"art" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aru" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"arv" = (/obj/effect/landmark{name = "carpspawn"},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"arw" = (/obj/item/weapon/paper{info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110"; name = "Note from Beepsky's Mom"},/turf/open/floor/plating,/area/security/processing) -"arx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/security/processing) -"ary" = (/obj/structure/chair,/turf/open/floor/plating,/area/security/vacantoffice2) -"arz" = (/obj/machinery/airalarm{frequency = 1439; locked = 0; pixel_y = 23},/obj/structure/chair,/turf/open/floor/plating,/area/security/vacantoffice2) -"arA" = (/turf/open/floor/plasteel,/area/security/vacantoffice2) -"arB" = (/turf/open/floor/plating,/area/security/vacantoffice2) -"arC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"arD" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/wood,/area/lawoffice) -"arE" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/wood,/area/lawoffice) -"arF" = (/turf/open/floor/wood,/area/lawoffice) -"arG" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/wood,/area/lawoffice) -"arH" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"arI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) -"arJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"arM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arO" = (/obj/machinery/power/apc{dir = 2; name = "Dormitory APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep) -"arP" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fsmaint) -"arT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 2; name = "Fitness Room APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness) -"arU" = (/obj/structure/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/turf/open/floor/plating/warnplate{dir = 10},/area/maintenance/fsmaint) -"arV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/warnplate{dir = 6},/area/maintenance/fsmaint) -"arW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"arX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"arY" = (/obj/structure/grille,/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"arZ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"asa" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/engineering{icon_state = "door_closed"; locked = 0; name = "Fore Starboard Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"asc" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) -"asd" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ase" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asf" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asg" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ash" = (/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asi" = (/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/coin/gold,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asj" = (/obj/machinery/computer/slot_machine{balance = 15; money = 500},/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ask" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asl" = (/obj/machinery/camera{c_tag = "Auxillary Mining Base"; dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base) -"asm" = (/obj/docking_port/mobile/auxillary_base{dheight = 4; dir = 4; dwidth = 4; height = 9; width = 9},/obj/machinery/bluespace_beacon,/obj/machinery/computer/shuttle/auxillary_base{pixel_y = 0},/turf/closed/wall,/area/shuttle/auxillary_base) -"asn" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; req_one_access_txt = "0"},/turf/open/floor/plating,/area/mining_construction) -"aso" = (/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction) -"asp" = (/turf/open/floor/plasteel,/area/mining_construction) -"asq" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/structure/mining_shuttle_beacon{dir = 2},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction) -"asr" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/maintenance/fpmaint2) -"ass" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ast" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"asu" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"asv" = (/obj/machinery/power/apc{dir = 1; name = "Arrivals North Maintenance APC"; pixel_x = -1; pixel_y = 26},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"asw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"asx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"asy" = (/turf/open/floor/plating,/area/maintenance/fpmaint) -"asz" = (/obj/item/weapon/bedsheet/red,/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/security/processing) -"asA" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/turf/open/floor/plating,/area/security/processing) -"asB" = (/obj/machinery/power/apc{dir = 8; name = "Labor Shuttle Dock APC"; pixel_x = -24},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/security/processing) -"asC" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/plating,/area/security/vacantoffice2) -"asD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/security/vacantoffice2) -"asE" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/security/vacantoffice2) -"asF" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/requests_console{department = "Law office"; pixel_x = -32; pixel_y = 0},/obj/structure/closet/lawcloset,/turf/open/floor/wood,/area/lawoffice) -"asG" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/lawoffice) -"asH" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/lawoffice) -"asI" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/lawoffice) -"asJ" = (/turf/closed/wall,/area/crew_quarters/sleep) -"asK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"asL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fsmaint) -"asM" = (/turf/closed/wall,/area/crew_quarters/fitness) -"asN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"asO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/fitness) -"asP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"asQ" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) -"asR" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asS" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asT" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asV" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Access"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asW" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asX" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asY" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"asZ" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ata" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atb" = (/obj/structure/closet,/obj/item/weapon/coin/iron,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atc" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atd" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base) -"ate" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction) -"atf" = (/obj/structure/rack{dir = 4},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/device/assault_pod/mining,/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction) -"atg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall,/area/maintenance/fpmaint2) -"ath" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"ati" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atl" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2) -"atn" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ato" = (/obj/structure/closet/crate{icon_state = "crateopen"; opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atp" = (/obj/machinery/monkey_recycler,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atq" = (/turf/closed/wall,/area/maintenance/fpmaint) -"atr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ats" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/security/vacantoffice2) -"att" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/security/vacantoffice2) -"atu" = (/obj/structure/table/wood,/turf/open/floor/plating,/area/security/vacantoffice2) -"atv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plating,/area/security/vacantoffice2) -"atw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/lawoffice) -"atx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/filingcabinet/employment,/turf/open/floor/wood,/area/lawoffice) -"aty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"atz" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"atA" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Lawyer"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/wood,/area/lawoffice) -"atB" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"atC" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"atD" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet,/area/crew_quarters/sleep) -"atE" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm4"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"atF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep) -"atG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/sleep) -"atH" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/sleep) -"atI" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/sleep) -"atJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep) -"atK" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/wood,/area/crew_quarters/sleep) -"atL" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/sleep) -"atM" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep) -"atN" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/fitness) -"atO" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness) -"atP" = (/obj/structure/closet/athletic_mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness) -"atQ" = (/obj/structure/closet/boxinggloves,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness) -"atR" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/structure/closet/masks,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness) -"atS" = (/obj/structure/closet/lasertag/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/fitness) -"atT" = (/obj/structure/closet/lasertag/red,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/fitness) -"atU" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atW" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atX" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atY" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"atZ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aua" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aub" = (/turf/closed/wall,/area/maintenance/electrical) -"auc" = (/turf/closed/wall,/area/space/nearstation) -"aud" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/mining_construction) -"aue" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction) -"auf" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aug" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"auh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aui" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"auj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"auk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fpmaint2) -"aum" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aun" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fpmaint) -"auo" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aup" = (/obj/structure/chair/stool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) -"auq" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aur" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aus" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aut" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/vacantoffice2) -"auu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating,/area/security/vacantoffice2) -"auv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) -"auw" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/lawoffice) -"aux" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/wood,/area/lawoffice) -"auy" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/wood,/area/lawoffice) -"auz" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"auA" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"auB" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"auC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"auD" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"auE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"auF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/sleep) -"auG" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/sleep) -"auH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"auI" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm5"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep) -"auJ" = (/turf/open/floor/wood,/area/crew_quarters/sleep) -"auK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/sleep) -"auL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm6"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = -25; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep) -"auM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness) -"auN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"auO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"auP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"auQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/crew_quarters/fitness) -"auR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/crew_quarters/fitness) -"auS" = (/obj/structure/table,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/shard{icon_state = "small"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auU" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint2) -"auV" = (/obj/machinery/button/door{id = "maint3"; name = "Blast Door Control C"; pixel_x = 0; pixel_y = 24; req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auW" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auX" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auY" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auZ" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"ava" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10; layer = 2.9},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"avb" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/maintenance/electrical) -"avc" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"avd" = (/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/electrical) -"ave" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/bluegrid,/area/maintenance/electrical) -"avf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/mining_construction) -"avg" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/mining_construction) -"avh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) -"avj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"avk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) -"avm" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/space/nearstation) -"avn" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/space/nearstation) -"avo" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avp" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avq" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avr" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"avs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"avt" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/turf/open/floor/plating,/area/security/vacantoffice2) -"avu" = (/obj/machinery/camera{c_tag = "Vacant Office B"; dir = 1},/obj/structure/table/wood,/turf/open/floor/plasteel,/area/security/vacantoffice2) -"avv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/vacantoffice2) -"avw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/lawoffice) -"avx" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/weapon/cartridge/lawyer,/turf/open/floor/wood,/area/lawoffice) -"avy" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Law Office"; dir = 1; network = list("SS13")},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; dir = 1; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = -27},/turf/open/floor/wood,/area/lawoffice) -"avz" = (/obj/machinery/photocopier,/obj/machinery/button/door{id = "lawyer_blast"; name = "Privacy Shutters"; pixel_x = 25; pixel_y = 8},/turf/open/floor/wood,/area/lawoffice) -"avA" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/camera{c_tag = "Fore Primary Hallway"; dir = 4; network = list("SS13")},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"avB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/sleep) -"avD" = (/obj/machinery/door/airlock{id_tag = "Dorm5"; name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"avE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/sleep) -"avF" = (/obj/machinery/door/airlock{id_tag = "Dorm6"; name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"avG" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness) -"avH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avI" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"avJ" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"avK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"avL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avM" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/crew_quarters/fitness) -"avN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avP" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avQ" = (/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"avS" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avT" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avU" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avX" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avY" = (/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"avZ" = (/turf/open/floor/plating,/area/maintenance/electrical) -"awa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"awb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"awc" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"awd" = (/turf/open/floor/plating/warnplate{dir = 10},/area/shuttle/auxillary_base) -"awe" = (/turf/open/floor/plating/warnplate,/area/shuttle/auxillary_base) -"awf" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/warnplate{dir = 6},/area/shuttle/auxillary_base) -"awg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/mining_construction) -"awh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side,/area/mining_construction) -"awi" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/pipe_dispenser,/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = 24; pixel_y = 0; req_access_txt = "0"; req_one_access_txt = "32;47;48"},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/mining_construction) -"awj" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/mining_construction) -"awk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"awn" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awo" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awp" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28; shattered = 1},/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/circuitboard/computer/operating,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awq" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/chair,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aws" = (/obj/item/weapon/airlock_painter,/obj/structure/lattice,/obj/structure/closet,/turf/open/space,/area/space/nearstation) -"awt" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awu" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"awv" = (/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 = 32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aww" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"awx" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"awy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice2) -"awz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice2) -"awA" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{dir = 8; name = "Vacant Office B APC"; pixel_x = -24; pixel_y = 0},/turf/open/floor/plating,/area/security/vacantoffice2) -"awB" = (/obj/machinery/power/apc{dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/lawoffice) -"awC" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore) -"awD" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore) -"awE" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"awF" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"awG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/sleep) -"awH" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awI" = (/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/machinery/camera{c_tag = "Dormitory North"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awM" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/sleep) -"awO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/sleep) -"awP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"awQ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/fitness) -"awR" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"awS" = (/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness) -"awT" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"awU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"awV" = (/obj/machinery/computer/holodeck,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"awW" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"awX" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"awY" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"awZ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall,/area/maintenance/electrical) -"axa" = (/obj/machinery/power/apc{dir = 1; name = "Electrical Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"axb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/electrical) -"axc" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"axd" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"axe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/turf/open/floor/plasteel/delivery,/area/mining_construction) -"axf" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 1; name = "Auxillary Base Construction"; req_access_txt = "0"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/mining_construction) -"axg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) -"axi" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axj" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/weapon/surgical_drapes,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axk" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/space/nearstation) -"axl" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axm" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axn" = (/obj/machinery/light/small{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) -"axp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"axq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"axr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint) -"axs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall,/area/maintenance/fpmaint) -"axu" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axv" = (/obj/machinery/power/apc{dir = 1; name = "EVA Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"axA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"axB" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"axC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"axD" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"axE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fsmaint) -"axH" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"axI" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axJ" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axL" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axM" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axN" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axO" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axP" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"axS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"axT" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"axU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"axV" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness) -"axW" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness) -"axX" = (/obj/structure/table,/obj/item/weapon/paper{desc = ""; info = "Brusies sustained in the holodeck can be healed simply by sleeping."; name = "Holodeck Disclaimer"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"axY" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"axZ" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aya" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayb" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayc" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayd" = (/obj/machinery/button/door{id = "maint2"; name = "Blast Door Control B"; pixel_x = -28; pixel_y = 4; req_access_txt = "0"},/obj/machinery/button/door{id = "maint1"; name = "Blast Door Control A"; pixel_x = -28; pixel_y = -6; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aye" = (/obj/structure/janitorialcart,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayf" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayg" = (/obj/structure/table/glass,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayh" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"ayj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance"; req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"ayk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"ayl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aym" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"ayn" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plating,/area/maintenance/electrical) -"ayo" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/electrical) -"ayp" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/electrical) -"ayq" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2) -"ayr" = (/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2) -"ays" = (/turf/closed/wall,/area/hallway/secondary/entry) -"ayt" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry) -"ayu" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry) -"ayv" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry) -"ayw" = (/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry) -"ayx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry) -"ayy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/secondary/entry) -"ayz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/hallway/secondary/entry) -"ayA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/secondary/entry) -"ayB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry) -"ayC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/arrival{dir = 5},/area/hallway/secondary/entry) -"ayD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayE" = (/obj/machinery/sleeper{dir = 4; icon_state = "sleeper-open"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayF" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayG" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayH" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall,/area/maintenance/fpmaint2) -"ayJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayK" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayO" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayS" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayT" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayW" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayX" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayY" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ayZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"azb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ai_monitored/storage/eva) -"azc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore) -"azd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aze" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore) -"azf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"azg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fsmaint) -"azh" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azi" = (/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azj" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azk" = (/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azl" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azm" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azn" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azp" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"azq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"azu" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"azv" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Fitness Ring"},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness) -"azw" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness) -"azx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"azB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"azC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"azD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"azE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"azF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) -"azG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) -"azH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"azI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/electrical) -"azJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/maintenance/electrical) -"azK" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_asteroid2"; name = "asteroid"},/turf/open/space,/area/space) -"azL" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2) -"azM" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_asteroid2"; shuttleId = "pod2"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2) -"azN" = (/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 25},/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2) -"azO" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod2"; name = "escape pod 2"; port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2) -"azP" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"azQ" = (/turf/open/floor/plating,/area/hallway/secondary/entry) -"azR" = (/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"azS" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"azT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/warning/corner{dir = 1},/area/hallway/secondary/entry) -"azU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"azV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning/corner{dir = 2},/area/hallway/secondary/entry) -"azW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"azX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"azY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning/corner{dir = 1},/area/hallway/secondary/entry) -"azZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aAa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAb" = (/obj/structure/closet/wardrobe/white,/obj/item/clothing/shoes/jackboots,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAc" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAd" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAh" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAi" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAk" = (/turf/closed/wall/r_wall,/area/maintenance/fpmaint2) -"aAl" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAm" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAn" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAo" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAp" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAq" = (/turf/closed/wall/r_wall,/area/maintenance/fpmaint) -"aAr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAs" = (/turf/closed/wall/r_wall,/area/gateway) -"aAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aAv" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aAw" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor"; name = "motion-sensitive security camera"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aAx" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aAy" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAz" = (/obj/machinery/power/apc{dir = 1; name = "EVA Storage APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAA" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/device/radio/off,/obj/item/device/assembly/timer,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAB" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aAC" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/weapon/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aAD" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aAE" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAF" = (/obj/machinery/light{dir = 1},/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAG" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAH" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aAI" = (/turf/closed/wall,/area/ai_monitored/storage/eva) -"aAJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore) -"aAK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore) -"aAL" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aAM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"aAN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aAO" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep) -"aAP" = (/obj/machinery/light,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aAQ" = (/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aAR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/sleep) -"aAS" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/fitness) -"aAT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness) -"aAU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAV" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAW" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAY" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAZ" = (/obj/machinery/camera{c_tag = "Fitness Room South"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 4},/area/crew_quarters/fitness) -"aBa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/fitness) -"aBb" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"aBc" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aBd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aBe" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aBf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aBg" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aBh" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"aBi" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aBj" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aBk" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2"; dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aBl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aBm" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"aBn" = (/turf/open/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"aBo" = (/turf/open/floor/plasteel/warning{dir = 4},/area/hallway/secondary/entry) -"aBp" = (/turf/open/floor/plasteel/warning{dir = 10},/area/hallway/secondary/entry) -"aBq" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"aBr" = (/turf/open/floor/plasteel/warning/corner{dir = 1},/area/hallway/secondary/entry) -"aBs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aBt" = (/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aBu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aBv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/maintenance/fpmaint2) -"aBx" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space) -"aBy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/space,/area/space) -"aBz" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/black,/area/gateway) -"aBA" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway) -"aBB" = (/obj/machinery/gateway{dir = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway) -"aBC" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway) -"aBD" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/gateway) -"aBE" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aBF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBN" = (/obj/structure/table,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aBO" = (/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore) -"aBP" = (/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore) -"aBQ" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aBR" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep) -"aBS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aBT" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aBU" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aBV" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/sleep) -"aBW" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/sleep) -"aBX" = (/turf/closed/wall,/area/crew_quarters/toilet) -"aBY" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aBZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/fitness) -"aCa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"aCb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"aCc" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"aCd" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/fitness) -"aCe" = (/obj/structure/reagent_dispensers/water_cooler,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/fitness) -"aCf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCg" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCh" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCi" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCj" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCk" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCl" = (/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCm" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCn" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aCo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/closed/wall,/area/maintenance/electrical) -"aCp" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/electrical) -"aCq" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aCr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"aCs" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aCt" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 10},/area/hallway/secondary/entry) -"aCu" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"aCv" = (/obj/machinery/camera{c_tag = "Arrivals Bay 1 North"; dir = 1},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"aCw" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/warning{dir = 6},/area/hallway/secondary/entry) -"aCx" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"aCy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aCz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/power/apc{dir = 2; name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint2) -"aCA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCD" = (/obj/machinery/power/apc{dir = 4; name = "Garden APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCE" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCF" = (/obj/machinery/light{dir = 1},/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCH" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCI" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCJ" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aCK" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCM" = (/obj/machinery/power/apc{dir = 2; name = "Primary Tool Storage APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/primary) -"aCN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCP" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"aCQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"aCR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"aCS" = (/turf/open/floor/plasteel/black,/area/gateway) -"aCT" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway) -"aCU" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/black,/area/gateway) -"aCV" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway) -"aCW" = (/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24; pixel_y = -1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/gateway) -"aCX" = (/obj/machinery/camera{c_tag = "EVA Maintenance"; dir = 8; network = list("SS13")},/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aCY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aCZ" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 9},/area/ai_monitored/storage/eva) -"aDa" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/ai_monitored/storage/eva) -"aDb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDc" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDe" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/ai_monitored/storage/eva) -"aDf" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 5},/area/ai_monitored/storage/eva) -"aDg" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aDh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aDj" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore) -"aDk" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"aDl" = (/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aDm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aDn" = (/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aDo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint2) -"aDq" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDr" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDs" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDt" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"aDu" = (/turf/closed/wall,/area/security/checkpoint2) -"aDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/checkpoint2) -"aDw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint2) -"aDx" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/turf/open/floor/plating,/area/security/checkpoint2) -"aDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aDz" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aDA" = (/obj/item/seeds/apple,/obj/item/seeds/banana,/obj/item/seeds/cocoapod,/obj/item/seeds/grape,/obj/item/seeds/orange,/obj/item/seeds/sugarcane,/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/structure/table/glass,/obj/item/seeds/tower,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aDB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aDC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aDD" = (/obj/machinery/door/airlock/maintenance{name = "Garden Maintenance"; req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aDE" = (/turf/closed/wall,/area/storage/primary) -"aDF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/primary) -"aDG" = (/turf/closed/wall/r_wall,/area/storage/primary) -"aDH" = (/obj/structure/closet/secure_closet/freezer/money,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage) -"aDI" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aDJ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aDK" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aDL" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage) -"aDM" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway) -"aDN" = (/obj/machinery/gateway,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway) -"aDO" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway) -"aDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDQ" = (/obj/machinery/requests_console{department = "EVA"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/storage/eva) -"aDR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/weapon/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDV" = (/turf/open/floor/plasteel/warning{dir = 4},/area/ai_monitored/storage/eva) -"aDW" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aDX" = (/obj/machinery/camera{c_tag = "EVA East"; dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aDY" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 0; req_access_txt = "0"; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aDZ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aEa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aEb" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aEc" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aEd" = (/obj/structure/table/wood,/obj/machinery/requests_console{department = "Theatre"; departmentType = 0; name = "theatre RC"; pixel_x = -32; pixel_y = 0},/obj/item/weapon/reagent_containers/food/snacks/baguette,/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aEe" = (/obj/machinery/camera{c_tag = "Theatre Storage"},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aEf" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aEg" = (/turf/closed/wall,/area/crew_quarters/theatre) -"aEh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"aEj" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"aEk" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness) -"aEl" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEm" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEo" = (/obj/structure/grille/broken,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/window{icon_state = "window"; dir = 4},/obj/structure/window,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fsmaint2) -"aEp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fsmaint2) -"aEq" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEr" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint2) -"aEt" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEu" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEy" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEA" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEB" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main) -"aED" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main) -"aEE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/chapel/main) -"aEF" = (/turf/closed/wall,/area/chapel/main) -"aEG" = (/turf/closed/wall/mineral/titanium,/area/shuttle/arrival) -"aEH" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/open/floor/plating,/area/shuttle/arrival) -"aEI" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival) -"aEJ" = (/obj/machinery/camera{c_tag = "Arrivals North"; dir = 8; network = list("SS13")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aEK" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint2) -"aEL" = (/obj/structure/closet/wardrobe/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2) -"aEM" = (/obj/machinery/computer/security,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0; pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2) -"aEN" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2) -"aEO" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2) -"aEP" = (/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint2) -"aEQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aER" = (/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aES" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aET" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/primary) -"aEU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aEV" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/primary) -"aEW" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/storage/primary) -"aEX" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/turf/open/floor/plasteel,/area/storage/primary) -"aEY" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aEZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/storage/primary) -"aFa" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) -"aFb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aFc" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/storage/primary) -"aFd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage) -"aFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aFf" = (/obj/machinery/nuclearbomb/selfdestruct,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/nuke_storage) -"aFg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aFh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage) -"aFi" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/black,/area/gateway) -"aFj" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/gateway) -"aFk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/gateway) -"aFl" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/gateway) -"aFm" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/gateway) -"aFn" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aFo" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/warning{dir = 10},/area/ai_monitored/storage/eva) -"aFp" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/warning{dir = 2},/area/ai_monitored/storage/eva) -"aFq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aFr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aFs" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage"; dir = 1},/turf/open/floor/plasteel/warning{dir = 2},/area/ai_monitored/storage/eva) -"aFt" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/warning{dir = 6},/area/ai_monitored/storage/eva) -"aFu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aFv" = (/obj/machinery/door/airlock/command{name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aFw" = (/obj/machinery/door/airlock/command{cyclelinkeddir = 2; name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aFx" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aFy" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/sleep) -"aFz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) -"aFA" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFD" = (/obj/machinery/door/airlock{name = "Unisex Showers"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFF" = (/obj/machinery/light/small,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFG" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aFH" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random{pixel_x = 2; pixel_y = 2},/obj/item/weapon/lipstick/random{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aFI" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Mime"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aFJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/crew_quarters/theatre) -"aFK" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre) -"aFL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j1s"; sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFM" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFP" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFT" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 2; name = "Chapel APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/chapel/main) -"aFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aGa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main) -"aGb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/chapel/main) -"aGc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/main) -"aGd" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access_txt = "22"},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/turf/open/floor/plating/warnplate{dir = 8},/area/chapel/main) -"aGe" = (/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 = 32},/obj/effect/landmark/event_spawn,/turf/open/floor/plating/warnplate{dir = 4},/area/chapel/main) -"aGf" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/open/floor/plating,/area/chapel/main) -"aGg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGh" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGi" = (/obj/machinery/computer/arcade,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGj" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGk" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGl" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGm" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGn" = (/obj/machinery/requests_console{department = "Arrival shuttle"; pixel_y = 30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aGo" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/shuttle/arrival) -"aGp" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/open/floor/plasteel/black,/area/shuttle/arrival) -"aGq" = (/obj/machinery/power/apc{dir = 4; name = "Entry Hall APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aGr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint2) -"aGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aGt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aGu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aGv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aGw" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint2) -"aGx" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/turf/open/floor/plasteel/green/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aGy" = (/obj/machinery/door/airlock{name = "Garden"; req_access_txt = "0"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aGz" = (/turf/open/floor/plasteel,/area/storage/primary) -"aGA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary) -"aGB" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1; pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1; pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage) -"aGC" = (/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aGD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"aGE" = (/obj/item/weapon/coin/silver{pixel_x = 7; pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12; pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4; pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6; pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5; pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage) -"aGF" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4; network = list("SS13")},/obj/structure/table,/obj/structure/sign/biohazard{pixel_x = -32},/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aGG" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway) -"aGH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"aGI" = (/obj/structure/table,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off,/turf/open/floor/plasteel,/area/gateway) -"aGJ" = (/obj/structure/table,/obj/machinery/recharger,/obj/structure/sign/biohazard{pixel_x = 32},/turf/open/floor/plasteel,/area/gateway) -"aGK" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aGL" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aGM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aGN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aGO" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aGP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aGQ" = (/obj/machinery/camera{c_tag = "Dormitory South"; c_tag_order = 999; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"aGR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/sleep) -"aGS" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aGT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aGU" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aGV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) -"aGW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/toilet) -"aGX" = (/obj/machinery/light/small{dir = 8},/obj/structure/dresser,/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre) -"aGY" = (/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre) -"aGZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/redblue/redside,/area/crew_quarters/theatre) -"aHa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHc" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHd" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHe" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/space,/area/space) -"aHf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHj" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHk" = (/turf/closed/wall,/area/library) -"aHl" = (/turf/closed/wall,/area/chapel/office) -"aHm" = (/obj/machinery/power/apc{dir = 2; name = "Chapel Office APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/office) -"aHn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHo" = (/turf/open/floor/plasteel/black,/area/chapel/main) -"aHp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/chapel/main) -"aHq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24; pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/main) -"aHr" = (/obj/structure/chair,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aHs" = (/obj/structure/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aHt" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/open/floor/plasteel/black,/area/shuttle/arrival) -"aHu" = (/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry) -"aHv" = (/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 1},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light_switch{pixel_x = 6; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint2) -"aHw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/side,/area/security/checkpoint2) -"aHx" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side,/area/security/checkpoint2) -"aHy" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/red/side,/area/security/checkpoint2) -"aHz" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/plasteel/red/side,/area/security/checkpoint2) -"aHA" = (/obj/item/device/radio/off,/obj/item/weapon/crowbar,/obj/item/device/assembly/flash/handheld,/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint2) -"aHB" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/green/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aHC" = (/obj/machinery/camera{c_tag = "Garden"; dir = 8; network = list("SS13")},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aHD" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2; pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aHE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aHF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/storage/primary) -"aHG" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) -"aHH" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/primary) -"aHI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aHJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aHK" = (/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/nuke_storage) -"aHL" = (/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/nuke_storage) -"aHM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/vault,/area/ai_monitored/nuke_storage) -"aHN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("MiniSat")},/obj/machinery/light,/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/nuke_storage) -"aHO" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/gun/projectile/revolver/russian,/obj/item/ammo_box/a357,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/nuke_storage) -"aHP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHQ" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aHR" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/gateway) -"aHS" = (/turf/open/floor/plasteel,/area/gateway) -"aHT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel,/area/gateway) -"aHU" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHV" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/storage/eva) -"aHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aHX" = (/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aHY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aHZ" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/open/floor/plasteel/warning{dir = 4},/area/ai_monitored/storage/eva) -"aIa" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aIb" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aIc" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/fore) -"aId" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/fore) -"aIe" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIf" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIg" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIh" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIi" = (/obj/machinery/light/small{dir = 8},/obj/machinery/recharge_station,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIj" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/device/flashlight/lamp/bananalamp{pixel_y = 3},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aIk" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Clown"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aIl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/secure_closet/freezer/cream_pie,/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aIm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) -"aIn" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIp" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIt" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIz" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIB" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aID" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIE" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space) -"aIG" = (/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j2s"; sortType = 17},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aII" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/library) -"aIJ" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) -"aIK" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/library) -"aIL" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/stack/packageWrap,/turf/open/floor/wood,/area/library) -"aIM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/library) -"aIN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office) -"aIO" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_access_txt = "27"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/chapel/office) -"aIP" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aIQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aIR" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aIS" = (/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aIT" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office) -"aIU" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office) -"aIV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/chapel/main) -"aIW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main) -"aIX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main) -"aIY" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"aIZ" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aJa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main) -"aJb" = (/turf/closed/wall/mineral/titanium,/area/shuttle/escape) -"aJc" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/escape) -"aJd" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/open/space,/area/space) -"aJe" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aJf" = (/obj/effect/landmark{name = "Observer-Start"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aJg" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/entry) -"aJh" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access = null; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/checkpoint2) -"aJi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint2) -"aJj" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/item/weapon/paper,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/delivery,/area/hallway/secondary/entry) -"aJk" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/green/side{dir = 5},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aJl" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aJm" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2; pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/green/side{dir = 9},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aJn" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) -"aJo" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) -"aJp" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/storage/primary) -"aJq" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"aJr" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked"; locked = 1; req_access_txt = "53"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/ai_monitored/nuke_storage) -"aJs" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"aJt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/gateway) -"aJu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway) -"aJv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/gateway) -"aJw" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel/warning{dir = 9},/area/gateway) -"aJx" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJy" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/storage/eva) -"aJz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aJA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aJB" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/warning{dir = 4},/area/ai_monitored/storage/eva) -"aJC" = (/obj/machinery/door/airlock/command{cyclelinkeddir = 1; name = "Command Tool Storage"; req_access = null; req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/eva) -"aJD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"aJE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central) -"aJG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/sleep) -"aJH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/sleep) -"aJI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aJJ" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aJK" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aJL" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aJM" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aJN" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/weapon/storage/crayons{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/food/snacks/pie/cream{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aJO" = (/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aJP" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/turf/open/floor/plasteel/redblue,/area/crew_quarters/theatre) -"aJQ" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/crew_quarters/theatre) -"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJT" = (/obj/machinery/power/apc{dir = 2; name = "Bar APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) -"aJU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar) -"aJV" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/bar) -"aJW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall,/area/crew_quarters/bar) -"aJX" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bot{dir = 2},/area/crew_quarters/bar) -"aJY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) -"aJZ" = (/obj/machinery/power/apc{dir = 2; name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aKa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKe" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKg" = (/obj/machinery/power/apc{dir = 2; name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hydroponics) -"aKh" = (/turf/closed/wall,/area/hydroponics) -"aKi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hydroponics) -"aKj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKk" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) -"aKl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/library) -"aKm" = (/obj/structure/chair/office/dark,/obj/machinery/camera{c_tag = "Library North"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aKn" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aKo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aKp" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/library) -"aKq" = (/obj/structure/bodycontainer/crematorium,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/chapel/office) -"aKr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/office) -"aKs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aKt" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/chair,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aKu" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aKv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aKw" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office) -"aKx" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"aKy" = (/obj/structure/table/glass,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"aKz" = (/turf/open/floor/mineral/titanium,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/escape) -"aKA" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aKB" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aKC" = (/obj/machinery/computer/emergency_shuttle,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aKD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aKE" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aKF" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aKG" = (/turf/open/floor/plasteel/bot,/area/hallway/secondary/entry) -"aKH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bot,/area/hallway/secondary/entry) -"aKI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bot,/area/hallway/secondary/entry) -"aKJ" = (/obj/machinery/camera{c_tag = "Arrivals Lounge"; dir = 2},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aKK" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aKL" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aKM" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aKN" = (/obj/structure/table/glass,/obj/item/weapon/hatchet,/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/plant_analyzer,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/green/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aKO" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table/glass,/obj/item/device/plant_analyzer,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -25},/turf/open/floor/plasteel/green/side{dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aKP" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/open/floor/plasteel,/area/storage/primary) -"aKQ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/primary) -"aKR" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plasteel,/area/storage/primary) -"aKS" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/storage/primary) -"aKT" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/primary) -"aKU" = (/turf/open/floor/plasteel/delivery,/area/storage/primary) -"aKV" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bot,/area/storage/primary) -"aKW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/storage/primary) -"aKX" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port) -"aKY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/hallway/primary/port) -"aKZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aLa" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/gateway) -"aLb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"aLc" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/turf/open/floor/plasteel/warning{dir = 10},/area/gateway) -"aLd" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/warning{dir = 8},/area/ai_monitored/storage/eva) -"aLe" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aLf" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel/warning{dir = 4},/area/ai_monitored/storage/eva) -"aLg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"aLh" = (/turf/open/floor/plasteel/blue/side{dir = 9},/area/hallway/primary/central) -"aLi" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Central Hallway North"; dir = 2},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"aLj" = (/turf/open/floor/plasteel/blue/corner{dir = 1},/area/hallway/primary/central) -"aLk" = (/turf/open/floor/plasteel,/area/hallway/primary/central) -"aLl" = (/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel/blue/corner{dir = 4},/area/hallway/primary/central) -"aLm" = (/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"aLn" = (/turf/open/floor/plasteel/blue/side{dir = 5},/area/hallway/primary/central) -"aLo" = (/turf/closed/wall,/area/hallway/primary/central) -"aLp" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/black,/area/hallway/primary/central) -"aLq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/central) -"aLr" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/central) -"aLs" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aLt" = (/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aLu" = (/obj/machinery/door/airlock{name = "Theatre Backstage"; req_access_txt = "46"},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aLv" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLw" = (/turf/closed/wall,/area/crew_quarters/bar) -"aLx" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/structure/table/wood,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar) -"aLy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aLz" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aLA" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Bar Delivery"; req_access_txt = "25"},/turf/open/floor/plasteel/delivery,/area/crew_quarters/bar) -"aLB" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"aLC" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aLD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/kitchen) -"aLE" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot{dir = 2},/area/crew_quarters/kitchen) -"aLF" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot{dir = 2},/area/hydroponics) -"aLG" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hydroponics) -"aLH" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aLI" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aLJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/library) -"aLK" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/wood,/area/library) -"aLL" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) -"aLM" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"aLN" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/library) -"aLO" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/library) -"aLP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office) -"aLQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office) -"aLR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"aLS" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aLT" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aLU" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aLW" = (/obj/structure/closet/coffin,/obj/machinery/door/window/eastleft{dir = 8; name = "Coffin Storage"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office) -"aLX" = (/obj/structure/table/glass,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aLY" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aLZ" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aMa" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aMb" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aMc" = (/obj/machinery/computer/security,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aMd" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aMe" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival) -"aMf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 8},/turf/open/floor/plasteel/black,/area/shuttle/arrival) -"aMg" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/secondary/entry) -"aMh" = (/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry) -"aMi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry) -"aMj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/entry) -"aMk" = (/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/secondary/entry) -"aMl" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aMm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aMn" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) -"aMo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aMp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aMq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) -"aMr" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port) -"aMs" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port) -"aMt" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port) -"aMu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/vault{dir = 5},/area/hallway/primary/port) -"aMv" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/port) -"aMw" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/port) -"aMx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aMy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{icon_state = "door_closed"; lockdownbyai = 0; locked = 0; name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aMz" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"aMA" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/turf/open/floor/plasteel,/area/gateway) -"aMB" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/gateway) -"aMC" = (/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central) -"aMD" = (/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central) -"aME" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/black,/area/hallway/primary/central) -"aMF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/central) -"aMG" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aMH" = (/turf/open/floor/wood,/area/crew_quarters/theatre) -"aMI" = (/obj/machinery/airalarm{dir = 2; pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aMJ" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Theatre Stage"; dir = 2},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aMK" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aML" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aMM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aMN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aMO" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"aMP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"aMQ" = (/obj/machinery/camera{c_tag = "Bar Storage"},/turf/open/floor/wood,/area/crew_quarters/bar) -"aMR" = (/turf/open/floor/wood,/area/crew_quarters/bar) -"aMS" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aMT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aMU" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Kitchen Delivery"; req_access_txt = "28"},/turf/open/floor/plasteel/delivery,/area/crew_quarters/kitchen) -"aMV" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/turf/open/floor/plasteel/delivery,/area/hydroponics) -"aMW" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aMX" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aMY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aMZ" = (/obj/structure/closet/wardrobe/botanist,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aNa" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aNb" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/machinery/light/small{dir = 1},/obj/machinery/plantgenes,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aNc" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aNd" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0; pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/weapon/watertank,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aNe" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/wood,/area/library) -"aNf" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) -"aNg" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/library) -"aNh" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/obj/item/toy/cards/deck/cas,/obj/item/toy/cards/deck/cas/black{pixel_x = -2; pixel_y = 6},/turf/open/floor/wood,/area/library) -"aNi" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/wood,/area/library) -"aNj" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/office) -"aNk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/office) -"aNl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office) -"aNm" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aNn" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aNo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aNp" = (/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aNq" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/main) -"aNr" = (/obj/machinery/computer/crew,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aNs" = (/obj/structure/chair{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aNt" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aNu" = (/obj/machinery/button/flasher{id = "cockpit_flasher"; pixel_x = 6; pixel_y = -24},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aNv" = (/obj/machinery/computer/communications,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aNw" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/mobile{dwidth = 5; height = 7; id = "arrival"; name = "arrival shuttle"; port_angle = -90; preferred_direction = 8; width = 15},/obj/docking_port/stationary{dwidth = 5; height = 7; id = "arrival_home"; name = "port bay 1"; width = 15},/turf/open/floor/plating,/area/shuttle/arrival) -"aNx" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/warning{dir = 8},/area/hallway/secondary/entry) -"aNy" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aNz" = (/obj/structure/chair/comfy/beige,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aNA" = (/obj/structure/chair/comfy/beige,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aNB" = (/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aNC" = (/obj/structure/chair/comfy/beige,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aND" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aNE" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry) -"aNF" = (/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/secondary/entry) -"aNG" = (/obj/machinery/door/firedoor,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNH" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNI" = (/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNJ" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{name = "Port Hall APC"; dir = 1; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNM" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNN" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/turf/open/floor/plasteel/warning/corner{dir = 8},/area/hallway/primary/port) -"aNO" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNP" = (/obj/machinery/camera{c_tag = "Port Hallway 2"; dir = 2},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNQ" = (/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warning/corner{dir = 4},/area/hallway/primary/port) -"aNT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aNU" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/warning/corner{dir = 8},/area/hallway/primary/port) -"aNV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/port) -"aNX" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/warning/corner{dir = 4},/area/hallway/primary/port) -"aNY" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aNZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOa" = (/obj/machinery/camera{c_tag = "Central Hallway North-West"; dir = 2},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOb" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOc" = (/turf/open/floor/plasteel/blue/corner{dir = 4},/area/hallway/primary/central) -"aOd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOe" = (/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) -"aOf" = (/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) -"aOg" = (/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) -"aOh" = (/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) -"aOi" = (/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) -"aOj" = (/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) -"aOk" = (/turf/open/floor/plasteel{desc = ""; icon_state = "L13"; name = "floor"},/area/hallway/primary/central) -"aOl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central) -"aOn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central) -"aOo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central) -"aOp" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central) -"aOq" = (/obj/machinery/camera{c_tag = "Central Hallway North-East"; dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOr" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOs" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOt" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOu" = (/obj/structure/piano{tag = "icon-piano"; icon_state = "piano"},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aOv" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aOw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aOx" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aOy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aOz" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aOA" = (/obj/machinery/computer/slot_machine,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aOB" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) -"aOC" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aOD" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/crew_quarters/bar) -"aOE" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/crew_quarters/bar) -"aOF" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aOG" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aOH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aOI" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOJ" = (/obj/machinery/light/small,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOK" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = -31},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aON" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOQ" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aOR" = (/turf/open/floor/wood,/area/library) -"aOS" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood,/area/library) -"aOT" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"aOU" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/chapel/office) -"aOV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/chapel/office) -"aOW" = (/obj/structure/table/wood,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/turf/open/floor/plasteel/grimy,/area/chapel/office) -"aOX" = (/obj/machinery/camera{c_tag = "Chapel North"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/black,/area/chapel/main) -"aOY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/main) -"aOZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main) -"aPa" = (/turf/closed/wall,/area/hallway/secondary/exit) -"aPb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"aPc" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Cockpit"; req_access_txt = "19"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aPd" = (/obj/machinery/status_display,/turf/closed/wall/mineral/titanium,/area/shuttle/escape) -"aPe" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aPf" = (/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aPg" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"aPh" = (/turf/open/floor/carpet,/area/hallway/secondary/entry) -"aPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"aPj" = (/obj/structure/chair/comfy/beige{dir = 8},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aPk" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry) -"aPl" = (/turf/open/floor/goonplaque,/area/hallway/secondary/entry) -"aPm" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHW"; location = "Lockers"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPn" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPo" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPr" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPs" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPt" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPz" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPA" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aPB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPF" = (/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) -"aPG" = (/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) -"aPH" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers"; location = "EVA"},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) -"aPI" = (/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) -"aPJ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security"; location = "EVA2"},/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) -"aPK" = (/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) -"aPL" = (/turf/open/floor/plasteel{desc = ""; icon_state = "L14"},/area/hallway/primary/central) -"aPM" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA2"; location = "Dorm"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPO" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/turf/open/floor/wood,/area/crew_quarters/theatre) -"aPP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aPQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/theatre) -"aPR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aPS" = (/obj/machinery/door/window{dir = 4; name = "Theatre Stage"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aPT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aPU" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aPV" = (/obj/machinery/computer/slot_machine,/obj/machinery/light/small{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aPW" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar) -"aPX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"aPY" = (/obj/structure/closet/gmcloset,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/cable_coil,/obj/item/device/flashlight/lamp,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/crew_quarters/bar) -"aPZ" = (/obj/structure/kitchenspike,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aQa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aQb" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aQc" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/chefcloset,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aQd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hydroponics) -"aQe" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics) -"aQf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics) -"aQg" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/open/floor/wood,/area/library) -"aQh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"aQi" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/library) -"aQj" = (/obj/machinery/door/airlock/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office) -"aQk" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/main) -"aQl" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair,/turf/open/floor/plasteel/black,/area/chapel/main) -"aQm" = (/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 9},/area/hallway/secondary/exit) -"aQn" = (/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit) -"aQo" = (/obj/machinery/light{dir = 1},/obj/structure/chair,/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit) -"aQp" = (/obj/structure/chair,/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/exit) -"aQq" = (/obj/structure/chair,/turf/open/floor/plasteel/warning{dir = 5},/area/hallway/secondary/exit) -"aQr" = (/obj/structure/chair,/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape) -"aQs" = (/obj/machinery/flasher{id = "cockpit_flasher"; pixel_x = 6; pixel_y = 24},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aQt" = (/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aQu" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aQv" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aQw" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/warning{dir = 9},/area/hallway/secondary/entry) -"aQx" = (/obj/item/device/radio/beacon,/obj/machinery/camera{c_tag = "Arrivals Bay 1 South"},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/entry) -"aQy" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/entry) -"aQz" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 5},/area/hallway/secondary/entry) -"aQA" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes{pixel_y = 2},/obj/item/weapon/lighter/greyscale{pixel_x = 4; pixel_y = 2},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aQB" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"aQC" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry) -"aQD" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQF" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQG" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQH" = (/obj/machinery/camera{c_tag = "Port Hallway 3"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQI" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQJ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQS" = (/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/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQT" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQV" = (/obj/structure/sign/directions/security{dir = 4; icon_state = "direction_sec"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aQX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQZ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=QM"; location = "CHW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRa" = (/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"aRb" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"aRc" = (/obj/machinery/light,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"aRd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/machinery/door/firedoor,/obj/machinery/light,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"aRe" = (/obj/structure/window/reinforced,/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/open/floor/wood,/area/crew_quarters/theatre) -"aRf" = (/obj/structure/window/reinforced,/turf/open/floor/wood,/area/crew_quarters/theatre) -"aRg" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre) -"aRh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aRi" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) -"aRj" = (/obj/effect/landmark{name = "blobstart"},/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/bar) -"aRk" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aRl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aRm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aRn" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aRo" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/black,/area/hydroponics) -"aRp" = (/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/hydroponics) -"aRq" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/black,/area/hydroponics) -"aRr" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera{c_tag = "Hydroponics North"; dir = 2},/turf/open/floor/plasteel/black,/area/hydroponics) -"aRs" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/hydroponics) -"aRt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/black,/area/hydroponics) -"aRu" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/library) -"aRv" = (/turf/open/floor/carpet,/area/library) -"aRw" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/library) -"aRx" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library) -"aRy" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/wood,/area/library) -"aRz" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aRA" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aRB" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aRC" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/black,/area/chapel/main) -"aRD" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"aRF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aRG" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/black,/area/chapel/main) -"aRH" = (/obj/machinery/camera{c_tag = "Escape Arm Holding Area"; dir = 4},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit) -"aRI" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aRJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aRK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aRL" = (/turf/open/floor/plasteel/warning{dir = 4},/area/hallway/secondary/exit) -"aRM" = (/obj/machinery/flasher{id = "shuttle_flasher"; pixel_x = -24; pixel_y = 6},/obj/machinery/button/flasher{id = "shuttle_flasher"; pixel_x = -24; pixel_y = -6},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape) -"aRN" = (/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape) -"aRO" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Brig"; req_access_txt = "2"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aRP" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1) -"aRQ" = (/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)"; icon_state = "propulsion"; dir = 8},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1) -"aRR" = (/turf/open/floor/plasteel/warning{dir = 9},/area/hallway/secondary/entry) -"aRS" = (/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/entry) -"aRT" = (/turf/open/floor/plasteel/warning/corner{dir = 4},/area/hallway/secondary/entry) -"aRU" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aRV" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aRW" = (/obj/structure/chair/comfy/beige{dir = 1; icon_state = "comfychair"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) -"aRX" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/black,/area/hallway/secondary/entry) -"aRY" = (/turf/closed/wall,/area/maintenance/port) -"aRZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"aSa" = (/turf/closed/wall,/area/crew_quarters/locker) -"aSb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSc" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aSd" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/closed/wall,/area/crew_quarters/locker) -"aSe" = (/turf/closed/wall,/area/storage/art) -"aSf" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/art) -"aSg" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/turf/open/floor/plasteel,/area/storage/art) -"aSh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/art) -"aSi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"aSj" = (/turf/closed/wall,/area/storage/emergency2) -"aSk" = (/obj/structure/table,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aSl" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/port) -"aSm" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aSn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"aSp" = (/turf/closed/wall,/area/storage/tools) -"aSq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aSr" = (/turf/closed/wall/r_wall,/area/bridge) -"aSs" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"aSt" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aSu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/status_display{density = 0; layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aSv" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aSw" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/status_display{density = 0; layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aSx" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; layer = 2.9; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aSy" = (/obj/structure/table,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/item/clothing/head/hardhat/cakehat,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSA" = (/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) -"aSD" = (/obj/machinery/disposal/bin,/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = -28; pixel_y = -4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/button/door{id = "barShutters"; name = "bar shutters"; pixel_x = 4; pixel_y = 28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSF" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aSG" = (/obj/machinery/door/airlock{name = "Kitchen cold room"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics) -"aSI" = (/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics) -"aSJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 5},/area/hydroponics) -"aSK" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/library) -"aSL" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library) -"aSM" = (/obj/machinery/light/small,/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aSN" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aSO" = (/obj/structure/cult/tome,/obj/item/clothing/under/suit_jacket/red,/obj/item/weapon/book/codex_gigas,/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aSP" = (/turf/open/floor/plasteel/chapel,/area/chapel/main) -"aSQ" = (/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"aSS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"aST" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/black,/area/chapel/main) -"aSU" = (/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main) -"aSV" = (/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit) -"aSW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aSX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aSY" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aSZ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Security Escape Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"aTa" = (/turf/open/floor/plating,/area/hallway/secondary/exit) -"aTb" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit) -"aTc" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Security Escape Airlock"; req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"aTd" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape) -"aTe" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape) -"aTf" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aTg" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aTh" = (/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aTi" = (/obj/docking_port/stationary/random{dir = 8; id = "pod_asteroid1"; name = "asteroid"},/turf/open/space,/area/space) -"aTj" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1) -"aTk" = (/obj/machinery/computer/shuttle/pod{pixel_x = 0; pixel_y = -32; possible_destinations = "pod_asteroid1"; shuttleId = "pod1"},/obj/structure/chair{dir = 8},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1) -"aTl" = (/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -28},/obj/item/device/radio/intercom{pixel_x = 0; pixel_y = 25},/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1) -"aTm" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 8; id = "pod1"; name = "escape pod 1"; port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1) -"aTn" = (/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 = 32},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/entry) -"aTo" = (/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/secondary/entry) -"aTp" = (/turf/open/floor/plasteel/warning/corner{dir = 8},/area/hallway/secondary/entry) -"aTq" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/secondary/entry) -"aTr" = (/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/entry) -"aTx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/secondary/entry) -"aTy" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"aTz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port) -"aTA" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTB" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTD" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTE" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTG" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTH" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTI" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTJ" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTK" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aTL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art) -"aTM" = (/turf/open/floor/plasteel,/area/storage/art) -"aTN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/storage/art) -"aTO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"aTP" = (/obj/machinery/door/airlock{name = "Port Emergency Storage"; req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency2) -"aTQ" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools) -"aTR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"aTS" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/open/floor/plasteel,/area/bridge) -"aTU" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/bridge) -"aTV" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/yellow/side,/area/bridge) -"aTW" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/bridge) -"aTX" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/blue/side{dir = 10},/area/bridge) -"aTY" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aTZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel/blue/side{dir = 6},/area/bridge) -"aUa" = (/obj/machinery/modular_computer/console/preset/command,/turf/open/floor/plasteel/green/side{dir = 10},/area/bridge) -"aUb" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/green/side{dir = 2},/area/bridge) -"aUc" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/green/side{dir = 6},/area/bridge) -"aUd" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/bridge) -"aUe" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUf" = (/obj/effect/landmark/event_spawn,/turf/closed/wall,/area/crew_quarters/bar) -"aUg" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUh" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUi" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUj" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUk" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUl" = (/obj/machinery/vending/boozeomat,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aUm" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUn" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUo" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUq" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Kitchen"; dir = 2},/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUr" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUs" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUt" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aUu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics) -"aUv" = (/turf/open/floor/plasteel,/area/hydroponics) -"aUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics) -"aUx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) -"aUy" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library) -"aUz" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library) -"aUA" = (/obj/machinery/camera{c_tag = "Library South"; dir = 8; network = list("SS13")},/turf/open/floor/wood,/area/library) -"aUB" = (/obj/machinery/door/morgue{name = "Private Study"; req_access_txt = "37"},/turf/open/floor/plasteel/cult{dir = 2},/area/library) -"aUC" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/black,/area/chapel/main) -"aUD" = (/turf/open/floor/carpet,/area/chapel/main) -"aUE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main) -"aUF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"aUG" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"aUH" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"aUI" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape) -"aUJ" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1"; dir = 8},/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aUK" = (/obj/machinery/light,/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry) -"aUL" = (/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry) -"aUM" = (/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/entry) -"aUN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUO" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUP" = (/obj/machinery/firealarm{dir = 2; pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUR" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUS" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aUT" = (/turf/open/floor/plating,/area/maintenance/port) -"aUU" = (/obj/structure/closet/wardrobe/mixed,/obj/item/device/radio/intercom{dir = 0; name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUV" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUW" = (/obj/structure/table,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art) -"aUX" = (/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency2) -"aUY" = (/turf/open/floor/plating,/area/storage/emergency2) -"aUZ" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency2) -"aVa" = (/obj/machinery/power/apc{dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/storage/tools) -"aVb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel,/area/storage/tools) -"aVc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"aVd" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 2},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/storage/tools) -"aVe" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel,/area/storage/tools) -"aVf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tools) -"aVg" = (/obj/structure/table/reinforced,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel,/area/bridge) -"aVh" = (/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/bridge) -"aVi" = (/obj/structure/chair{dir = 1; name = "Engineering Station"},/turf/open/floor/plasteel,/area/bridge) -"aVj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/bridge) -"aVk" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/multitool,/turf/open/floor/plasteel/blue/side{dir = 8},/area/bridge) -"aVl" = (/obj/structure/chair{dir = 1; name = "Command Station"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = 28; pixel_y = -2; req_access_txt = "19"},/obj/machinery/keycard_auth{pixel_x = 29; pixel_y = 8},/turf/open/floor/plasteel,/area/bridge) -"aVm" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/blue/side{dir = 4},/area/bridge) -"aVn" = (/turf/open/floor/plasteel/green/corner{dir = 1},/area/bridge) -"aVo" = (/obj/structure/chair{dir = 1; name = "Crew Station"},/turf/open/floor/plasteel,/area/bridge) -"aVp" = (/turf/open/floor/plasteel/green/corner{dir = 4},/area/bridge) -"aVq" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/bridge) -"aVr" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/preopen{id = "barShutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/bar) -"aVs" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVt" = (/obj/structure/table,/obj/item/weapon/kitchen/fork,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVu" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVw" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVx" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVy" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVz" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVA" = (/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aVB" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen) -"aVC" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVE" = (/obj/effect/landmark/start{name = "Cook"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVI" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aVJ" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) -"aVK" = (/turf/open/floor/plasteel/black,/area/hydroponics) -"aVL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics) -"aVM" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics) -"aVN" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics) -"aVO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics) -"aVP" = (/obj/machinery/door/window/northright{base_state = "right"; dir = 8; icon_state = "right"; name = "Library Desk Door"; req_access_txt = "37"},/turf/open/floor/wood,/area/library) -"aVQ" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/library) -"aVR" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/wood,/area/library) -"aVS" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"aVT" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"aVU" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"aVV" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main) -"aVW" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/black,/area/chapel/main) -"aVX" = (/obj/machinery/vending/cola,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/escape{dir = 9},/area/hallway/secondary/exit) -"aVY" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/secondary/exit) -"aVZ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Airlock"},/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 = 32},/turf/open/floor/plating,/area/hallway/secondary/exit) -"aWa" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"aWb" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{name = "Box emergency shuttle"; timid = 0},/obj/docking_port/stationary{dir = 4; dwidth = 12; height = 18; id = "emergency_home"; name = "BoxStation emergency evac bay"; turf_type = /turf/open/space; width = 32},/turf/open/floor/plating,/area/shuttle/escape) -"aWc" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aWd" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"aWe" = (/obj/machinery/door/firedoor,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aWf" = (/turf/closed/wall,/area/security/vacantoffice) -"aWg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice) -"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice) -"aWi" = (/turf/closed/wall,/area/security/vacantoffice{name = "Vacant Office A"}) -"aWj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) -"aWk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) -"aWl" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWm" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWn" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWo" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWp" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWq" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWr" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWt" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/camera{c_tag = "Locker Room East"; dir = 8; network = list("SS13")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aWu" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel,/area/storage/art) -"aWv" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/storage/art) -"aWw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/plasteel,/area/storage/art) -"aWx" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency2) -"aWy" = (/obj/machinery/light/small,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency2) -"aWz" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency2) -"aWA" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency2) -"aWB" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/open/floor/plasteel,/area/storage/tools) -"aWC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel,/area/storage/tools) -"aWD" = (/turf/open/floor/plasteel,/area/storage/tools) -"aWE" = (/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/storage/tools) -"aWF" = (/turf/closed/wall,/area/bridge) -"aWG" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/red/side{dir = 10},/area/bridge) -"aWH" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/red/side,/area/bridge) -"aWI" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/red/side{dir = 6},/area/bridge) -"aWJ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/bridge) -"aWK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/bridge) -"aWL" = (/turf/open/floor/plasteel,/area/bridge) -"aWM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/bridge) -"aWN" = (/turf/open/floor/plasteel/blue/corner{dir = 1},/area/bridge) -"aWO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/blue/corner{dir = 4},/area/bridge) -"aWP" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) -"aWQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/bridge) -"aWR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/bridge) -"aWS" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel/brown{dir = 10},/area/bridge) -"aWT" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel/brown{dir = 2},/area/bridge) -"aWU" = (/obj/machinery/computer/security/mining,/turf/open/floor/plasteel/brown{dir = 6},/area/bridge) -"aWV" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/camera{c_tag = "Bar West"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aWW" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aWX" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aWY" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwforce = 1; throwing = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aWZ" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aXa" = (/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_x = 30; pixel_y = 0},/obj/machinery/camera{c_tag = "Bar"; dir = 8; network = list("SS13")},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aXb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aXc" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aXd" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aXe" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aXf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aXg" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/delivery{name = "floor"},/area/crew_quarters/kitchen) -"aXh" = (/turf/open/floor/plasteel/vault{dir = 8},/area/hydroponics) -"aXi" = (/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics) -"aXj" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics) -"aXk" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel,/area/hydroponics) -"aXl" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics) -"aXm" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/black,/area/hydroponics) -"aXn" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library) -"aXo" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/library) -"aXp" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/library) -"aXq" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/library) -"aXr" = (/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library) -"aXs" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel/black,/area/chapel/main) -"aXt" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"aXu" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aXv" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main) -"aXw" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main) -"aXx" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"aXy" = (/obj/structure/chair{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aXz" = (/obj/structure/chair{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aXA" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"aXB" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/transport) -"aXC" = (/turf/closed/wall/mineral/titanium,/area/shuttle/transport) -"aXD" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/open/floor/plating,/area/shuttle/transport) -"aXE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/transport) -"aXF" = (/obj/machinery/camera{c_tag = "Arrivals Bay 2"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aXG" = (/turf/open/floor/wood,/area/security/vacantoffice) -"aXH" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"aXI" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice) -"aXJ" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/wood,/area/security/vacantoffice) -"aXK" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) -"aXL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"aXM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port) -"aXN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port) -"aXO" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/requests_console{department = "Locker Room"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXR" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXS" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXT" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXU" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXV" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aXZ" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools) -"aYa" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools) -"aYb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/tools) -"aYc" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools) -"aYd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 5},/area/hallway/primary/central) -"aYe" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"aYf" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/bridge) -"aYg" = (/obj/machinery/camera{c_tag = "Bridge West"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/red/corner{dir = 1},/area/bridge) -"aYh" = (/obj/structure/chair{dir = 1; name = "Security Station"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/bridge) -"aYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) -"aYl" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYm" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge) -"aYn" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYo" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYq" = (/obj/item/device/radio/beacon,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 1},/area/bridge) -"aYt" = (/obj/structure/chair{dir = 1; name = "Logistics Station"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aYu" = (/obj/machinery/camera{c_tag = "Bridge East"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/bridge) -"aYv" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/bridge) -"aYw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 9},/area/hallway/primary/central) -"aYx" = (/obj/machinery/camera{c_tag = "Bridge East Entrance"; dir = 2},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"aYy" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aYz" = (/obj/structure/chair,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aYA" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYB" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/stack/packageWrap,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYC" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYD" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYE" = (/obj/machinery/processor,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYF" = (/obj/machinery/light{dir = 8},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/black,/area/hydroponics) -"aYG" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) -"aYH" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/hydroponics) -"aYI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYJ" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/wood,/area/library) -"aYK" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/library) -"aYL" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/wood,/area/library) -"aYM" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5; pixel_y = 5},/turf/open/floor/wood,/area/library) -"aYN" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood,/area/library) -"aYO" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main) -"aYP" = (/obj/machinery/camera{c_tag = "Chapel South"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel/black,/area/chapel/main) -"aYQ" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"aYR" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/transport) -"aYS" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"aYT" = (/obj/machinery/computer/shuttle/ferry/request,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"aYU" = (/obj/structure/chair,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"aYV" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aYW" = (/obj/machinery/camera{c_tag = "Vacant Office"; dir = 4; network = list("SS13")},/turf/open/floor/wood,/area/security/vacantoffice) -"aYX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"aYY" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice) -"aYZ" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/security/vacantoffice) -"aZa" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/security/vacantoffice) -"aZb" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 8},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port) -"aZc" = (/obj/structure/grille,/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plating,/area/maintenance/port) -"aZd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"aZe" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZh" = (/obj/machinery/camera{c_tag = "Locker Room West"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZl" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aZm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port) -"aZn" = (/obj/machinery/power/apc{dir = 1; name = "Art Storage"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/storage/art) -"aZo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"aZp" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"aZq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port) -"aZr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port) -"aZs" = (/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/storage/emergency2) -"aZt" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port) -"aZu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port) -"aZv" = (/turf/closed/wall,/area/security/detectives_office) -"aZw" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 4},/area/hallway/primary/central) -"aZx" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/airlock/glass_command{crit_fail = 4; name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) -"aZy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/bridge) -"aZz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) -"aZA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) -"aZB" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/bridge) -"aZC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aZD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner,/area/bridge) -"aZE" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/light,/obj/machinery/light_switch{pixel_x = -6; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZF" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZG" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZH" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZJ" = (/obj/machinery/turretid{control_area = "AI Upload Chamber"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZL" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZM" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Bridge APC"; pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"aZN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/bridge) -"aZO" = (/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; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) -"aZP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) -"aZQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aZR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/bridge) -"aZS" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/airlock/glass_command{cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aZT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central) -"aZU" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZW" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aZY" = (/obj/structure/table/wood/poker,/obj/item/clothing/mask/cigarette/cigar,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"aZZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"baa" = (/obj/machinery/door/window/southright{name = "Bar Door"; req_access_txt = "0"; req_one_access_txt = "25;28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bab" = (/obj/structure/table/reinforced,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 32},/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bac" = (/obj/effect/landmark/start{name = "Cook"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bad" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_x = 30; pixel_y = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bae" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"baf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bag" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bah" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bai" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"baj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bal" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/carpet,/area/library) -"bam" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/carpet,/area/chapel/main) -"ban" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/carpet,/area/chapel/main) -"bao" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"bap" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/carpet,/area/chapel/main) -"baq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bar" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"bas" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bat" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bau" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bav" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/warning{dir = 4},/area/hallway/secondary/exit) -"baw" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"bax" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dir = 8; dwidth = 2; height = 12; id = "ferry"; name = "ferry shuttle"; port_angle = 0; preferred_direction = 4; roundstart_move = "ferry_away"; width = 5},/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 12; id = "ferry_home"; name = "port bay 2"; turf_type = /turf/open/space; width = 5},/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"bay" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"baz" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"baA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/light_switch{pixel_x = -28; pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice) -"baB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) -"baC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/security/vacantoffice) -"baD" = (/turf/open/floor/carpet,/area/security/vacantoffice) -"baE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/vacantoffice) -"baF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"baG" = (/obj/machinery/light{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/security/vacantoffice) -"baH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port) -"baI" = (/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"baJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"baK" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"baL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"baM" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"baN" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"baO" = (/turf/open/floor/plasteel/warning/corner{dir = 2},/area/crew_quarters/locker) -"baP" = (/turf/open/floor/plasteel/warning{dir = 2},/area/crew_quarters/locker) -"baQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning/corner{dir = 1},/area/crew_quarters/locker) -"baR" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"baS" = (/obj/machinery/power/apc{dir = 8; name = "Locker Room Maintenance APC"; pixel_x = -27; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plating,/area/maintenance/port) -"baT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port) -"baU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/port) -"baV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/port) -"baW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/port) -"baX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/turf/open/floor/plating,/area/maintenance/port) -"baY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"baZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"bba" = (/obj/structure/closet/secure_closet/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bbb" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bbc" = (/obj/machinery/computer/secure_data,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bbd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"bbe" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler{pixel_x = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bbf" = (/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/button/door{id = "datboidetective"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = 24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bbg" = (/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central) -"bbh" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central) -"bbi" = (/obj/machinery/camera{c_tag = "Bridge West Entrance"; dir = 1},/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central) -"bbj" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 6},/area/hallway/primary/central) -"bbk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"bbl" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/bridge) -"bbm" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"bbn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"bbo" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"bbp" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/blue/side{dir = 6},/area/bridge) -"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed"; locked = 0; name = "AI Upload Access"; req_access_txt = "16"},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bbu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbv" = (/obj/machinery/ai_status_display,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bbx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bby" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel/blue/side{dir = 10},/area/bridge) -"bbz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/bridge) -"bbA" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/side{dir = 10},/area/hallway/primary/central) -"bbB" = (/obj/machinery/power/apc{dir = 2; name = "Central Hall APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/central) -"bbC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"bbD" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bbE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bbF" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bbG" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bbH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/bar,/area/crew_quarters/kitchen) -"bbI" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbJ" = (/obj/machinery/light,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbL" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/button/door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbN" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/hydroponics) -"bbO" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hydroponics) -"bbP" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics) -"bbQ" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) -"bbR" = (/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8; network = list("SS13")},/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/hydroponics) -"bbS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall,/area/hydroponics) -"bbT" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bbU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bbV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bbW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bbX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/library) -"bbY" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/library) -"bbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main) -"bca" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bcb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"bcc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main) -"bcd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bce" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bcg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bch" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bci" = (/obj/machinery/camera{c_tag = "Escape Arm Airlocks"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel/warning{dir = 4},/area/hallway/secondary/exit) -"bcj" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"bck" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport) -"bcl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bcm" = (/obj/machinery/door/airlock/engineering{name = "Vacant Office A"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bcn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bco" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bcp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice) -"bcq" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bcr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bcs" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bct" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bcu" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bcv" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bcw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bcx" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"bcy" = (/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"bcz" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3; pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2; pixel_y = 0},/obj/structure/window{icon_state = "window"; dir = 1},/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"bcA" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/delivery,/area/crew_quarters/locker) -"bcB" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/delivery,/area/crew_quarters/locker) -"bcC" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning{dir = 8},/area/crew_quarters/locker) -"bcD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bcE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/port) -"bcG" = (/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bcH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bcI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bcJ" = (/turf/closed/wall,/area/quartermaster/storage) -"bcK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"bcL" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/item/weapon/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bcM" = (/turf/open/floor/carpet,/area/security/detectives_office) -"bcN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bcO" = (/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 2},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bcP" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bcQ" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bcR" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central) -"bcS" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room) -"bcT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/bridge/meeting_room) -"bcU" = (/obj/machinery/door/airlock/command{name = "Conference Room"; req_access = null; req_access_txt = "19"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bcV" = (/turf/closed/wall,/area/bridge/meeting_room) -"bcW" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bcX" = (/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bcY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bcZ" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bda" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"bdb" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access = null; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bdc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"bdd" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"bde" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdf" = (/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdg" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdh" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdi" = (/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdj" = (/obj/machinery/camera{c_tag = "Bar South"; dir = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdk" = (/obj/structure/noticeboard{pixel_y = -27},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdl" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdm" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdn" = (/obj/machinery/light/small,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar) -"bdo" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen"; name = "kitchen shutters"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdq" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) -"bdr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hydroponics) -"bds" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hydroponics) -"bdt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"bdu" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"bdv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bdw" = (/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bdx" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bdy" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/library) -"bdz" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/wood,/area/library) -"bdA" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) -"bdB" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/library) -"bdC" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood,/area/library) -"bdD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/black,/area/chapel/main) -"bdE" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bdF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/main) -"bdG" = (/obj/machinery/power/apc{dir = 8; name = "Escape Hallway APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"bdH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bdI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bdJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 9},/area/hallway/secondary/entry) -"bdK" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdL" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/wood,/area/security/vacantoffice) -"bdM" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bdN" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bdO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bdP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "Locker Restrooms APC"; pixel_x = 27; pixel_y = 2},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/crew_quarters/locker/locker_toilet) -"bdQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bdR" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bdS" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"bdT" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bdU" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bdV" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bdW" = (/obj/item/weapon/storage/secure/safe{pixel_x = -23},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bdX" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start{name = "Detective"},/turf/open/floor/carpet,/area/security/detectives_office) -"bdY" = (/obj/structure/table/wood,/obj/item/device/camera/detective,/turf/open/floor/carpet,/area/security/detectives_office) -"bdZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bea" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Detective's Office"; req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"beb" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/bridge/meeting_room) -"bec" = (/obj/machinery/button/door{id = "heads_meeting"; name = "Security Shutters"; pixel_x = 0; pixel_y = 24},/turf/open/floor/wood,/area/bridge/meeting_room) -"bed" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/bridge/meeting_room) -"bee" = (/obj/machinery/camera{c_tag = "Conference Room"; dir = 2},/turf/open/floor/wood,/area/bridge/meeting_room) -"bef" = (/turf/open/floor/wood,/area/bridge/meeting_room) -"beg" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"beh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bei" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/wood,/area/bridge/meeting_room) -"bej" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bek" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bel" = (/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bem" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"ben" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"beo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bep" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) -"beq" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) -"ber" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) -"bes" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bet" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) -"beu" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bev" = (/obj/machinery/power/apc{cell_type = 2500; dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bew" = (/turf/open/floor/wood,/area/crew_quarters/captain) -"bex" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bey" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) -"bez" = (/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) -"beA" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 2"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/starboard) -"beB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"beC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/library) -"beD" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/chapel/main) -"beE" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/secondary/exit) -"beF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"beG" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"beH" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Airlock"},/turf/open/floor/plating,/area/shuttle/escape) -"beI" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"beJ" = (/obj/machinery/power/apc{dir = 8; name = "Vacant Office A APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/security/vacantoffice{name = "Vacant Office A"}) -"beK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"beL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port) -"beM" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"beN" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"beO" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"beP" = (/obj/machinery/washing_machine,/obj/machinery/light,/turf/open/floor/plasteel/barber,/area/crew_quarters/locker) -"beQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"beR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"beS" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"beT" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/turf/open/floor/plating,/area/security/detectives_office) -"beU" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 3},/obj/item/weapon/lighter,/turf/open/floor/carpet,/area/security/detectives_office) -"beV" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) -"beW" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) -"beX" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/security/detectives_office) -"beY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "datboidetective"; layer = 2.9; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office) -"beZ" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "heads_meeting"; layer = 2.9; name = "privacy shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge/meeting_room) -"bfa" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"bfb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bfc" = (/obj/structure/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bfd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bfe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) -"bff" = (/obj/machinery/vending/snack,/turf/open/floor/wood,/area/bridge/meeting_room) -"bfg" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/obj/machinery/camera/motion{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bfh" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bfi" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/camera/motion{dir = 8},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bfj" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/captain) -"bfk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bfl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bfm" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bfn" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bfo" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bfp" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/crew_quarters/captain) -"bfq" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm"; location = "HOP2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfr" = (/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_x = 32; pixel_y = 36},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfs" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bft" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfu" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfw" = (/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfz" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfA" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 5"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bfB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) -"bfC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bfD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bfE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bfF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 4},/area/hallway/secondary/exit) -"bfG" = (/obj/machinery/door/airlock/shuttle{name = "Emergency Shuttle Cargo"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"bfH" = (/obj/machinery/door/airlock/glass{name = "Emergency Shuttle Infirmary"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape) -"bfI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/blue/corner{dir = 1},/area/hallway/secondary/entry) -"bfJ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bfK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bfL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bfM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bfN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bfO" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bfP" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port) -"bfQ" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"bfR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bfS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/turf/open/floor/plating,/area/maintenance/port) -"bfT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bfU" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bfV" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning{dir = 8},/area/crew_quarters/locker) -"bfW" = (/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bfX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/closet/crate/freezer,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bfY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bfZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bga" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/storage) -"bgb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port) -"bgc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"bgd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bge" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bgf" = (/obj/machinery/light/small,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bgg" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/filingcabinet,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bgh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "heads_meeting"; layer = 2.9; name = "privacy shutters"},/turf/open/floor/plating,/area/bridge/meeting_room) -"bgj" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"bgk" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bgl" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bgm" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bgn" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bgo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bgp" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/bridge/meeting_room) -"bgq" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bgr" = (/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/ai_upload) -"bgs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bgt" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/captain) -"bgu" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bgv" = (/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 4; network = list("SS13")},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"bgw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgF" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP2"; location = "Stbd"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bgH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bgI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bgJ" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bgK" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bgL" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bgM" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bgN" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bgO" = (/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape) -"bgP" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape) -"bgQ" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"bgR" = (/turf/open/floor/plasteel/warning/corner{dir = 2},/area/hallway/secondary/entry) -"bgS" = (/turf/closed/wall,/area/maintenance/disposal) -"bgT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal) -"bgU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal) -"bgV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bgW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bgX" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bgY" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bgZ" = (/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/port) -"bha" = (/obj/effect/landmark{name = "blobstart"},/obj/item/clothing/suit/ianshirt,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/port) -"bhb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker) -"bhc" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bhd" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bhe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bhf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bhg" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bhh" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/detectives_office) -"bhi" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhj" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"bhk" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bhl" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bhm" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/custom,/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bhn" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bho" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI"; pixel_x = 0; pixel_y = -21},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bhp" = (/obj/machinery/power/apc{cell_type = 5000; dir = 2; name = "Upload APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bhq" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bhr" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bhs" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left"; dir = 8; icon_state = "left"; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/open/floor/plasteel/black,/area/turret_protected/ai_upload) -"bht" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) -"bhu" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bhv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) -"bhw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bhx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bhy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bhz" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain) -"bhA" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central) -"bhB" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd"; location = "HOP"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhC" = (/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/science{dir = 4; icon_state = "direction_sci"; pixel_x = 32; pixel_y = -32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhD" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhE" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/starboard) -"bhF" = (/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/starboard) -"bhG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/side{dir = 0},/area/hallway/primary/starboard) -"bhH" = (/obj/machinery/light,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/starboard) -"bhI" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -30},/obj/machinery/light,/turf/open/floor/plasteel/white/corner{dir = 2},/area/hallway/primary/starboard) -"bhK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/hallway/primary/starboard) -"bhL" = (/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/primary/starboard) -"bhM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhN" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhR" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhS" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 4"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bhT" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/secondary/exit) -"bhU" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/secondary/exit) -"bhV" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/secondary/exit) -"bhW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit) -"bhX" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2; pixel_y = 3},/obj/item/weapon/crowbar,/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/mineral/titanium,/area/shuttle/escape) -"bhY" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Port Docking Bay 4"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bhZ" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Port Docking Bay 3"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bia" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"bib" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"bic" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/warnplate{dir = 4},/area/maintenance/disposal) -"bid" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bie" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bif" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/obj/machinery/recycler,/obj/structure/sign/securearea{name = "\improper STAY CLEAR HEAVY MACHINERY"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/disposal) -"big" = (/obj/machinery/conveyor{dir = 6; id = "garbage"; verted = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bih" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port) -"bii" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bij" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bik" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bil" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bim" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bin" = (/obj/machinery/camera{c_tag = "Locker Room Toilets"; dir = 8; network = list("SS13")},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bio" = (/obj/machinery/power/apc{dir = 1; name = "Locker Room APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/crew_quarters/locker) -"bip" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"biq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bir" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bis" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"bit" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"biu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/stack/sheet/cardboard,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"biv" = (/obj/item/clothing/gloves/color/rainbow,/obj/item/clothing/head/soft/rainbow,/obj/item/clothing/shoes/sneakers/rainbow,/obj/item/clothing/under/color/rainbow,/turf/open/floor/plating,/area/maintenance/port) -"biw" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"bix" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/office) -"biy" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/quartermaster/office) -"biz" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/quartermaster/office) -"biA" = (/turf/closed/wall,/area/quartermaster/office) -"biB" = (/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"biC" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/light,/turf/open/floor/wood,/area/bridge/meeting_room) -"biD" = (/turf/open/floor/carpet,/area/bridge/meeting_room) -"biE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) -"biF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"biG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"biH" = (/obj/structure/noticeboard{dir = 8; pixel_x = 27; pixel_y = 0},/turf/open/floor/wood,/area/bridge/meeting_room) -"biI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biK" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biL" = (/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biM" = (/obj/machinery/status_display{density = 0; layer = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"biP" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/wood,/area/crew_quarters/captain) -"biQ" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"biR" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"biS" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/crew_quarters/captain) -"biT" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/captain) -"biU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/captain) -"biV" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/item/weapon/storage/secure/safe{pixel_x = 35; pixel_y = 5},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/wood,/area/crew_quarters/captain) -"biW" = (/turf/closed/wall,/area/medical/chemistry) -"biX" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/medical/medbay) -"biY" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/medbay) -"biZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bja" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bjb" = (/turf/closed/wall,/area/security/checkpoint/medical) -"bjc" = (/turf/closed/wall,/area/medical/morgue) -"bjd" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/morgue) -"bje" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bjf" = (/obj/machinery/power/apc{dir = 2; name = "Starboard Primary Hallway APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bjg" = (/turf/closed/wall,/area/storage/emergency) -"bjh" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bji" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/assembly/chargebay) -"bjj" = (/turf/open/floor/plasteel/loadingarea{dir = 1},/area/hallway/primary/starboard) -"bjk" = (/turf/closed/wall/r_wall,/area/assembly/robotics) -"bjl" = (/turf/open/floor/plasteel/purple/side{dir = 10},/area/hallway/primary/starboard) -"bjm" = (/turf/open/floor/plasteel/purple/side{dir = 2},/area/hallway/primary/starboard) -"bjn" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/purple/side{dir = 2},/area/hallway/primary/starboard) -"bjo" = (/obj/structure/sign/securearea{pixel_x = 0; pixel_y = -32},/turf/open/floor/plasteel/purple/side{dir = 2},/area/hallway/primary/starboard) -"bjp" = (/obj/machinery/light,/turf/open/floor/plasteel/purple/side{dir = 2},/area/hallway/primary/starboard) -"bjq" = (/turf/open/floor/plasteel/purple/side{dir = 6},/area/hallway/primary/starboard) -"bjr" = (/turf/closed/wall/r_wall,/area/toxins/lab) -"bjs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/escape{dir = 10},/area/hallway/secondary/exit) -"bjt" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/secondary/exit) -"bju" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning,/area/hallway/secondary/exit) -"bjv" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 6},/area/hallway/secondary/exit) -"bjw" = (/obj/structure/closet,/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape) -"bjx" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/yellow,/area/shuttle/escape) -"bjy" = (/obj/machinery/camera{c_tag = "Arrivals Bay 3 & 4"; dir = 1},/turf/open/floor/plasteel/warning,/area/hallway/secondary/entry) -"bjz" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/warning{dir = 6},/area/hallway/secondary/entry) -"bjA" = (/obj/machinery/conveyor{dir = 5; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bjB" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bjC" = (/obj/machinery/conveyor{dir = 10; id = "garbage"; verted = -1},/turf/open/floor/plating,/area/maintenance/disposal) -"bjD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/maintenance/disposal) -"bjE" = (/obj/machinery/power/apc{dir = 8; name = "Disposal APC"; pixel_x = -24; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bjF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bjG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bjH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bjI" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bjJ" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet) -"bjK" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"bjL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) -"bjM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bjN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bjO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bjP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bjQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/power/apc{dir = 2; name = "Cargo Bay APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port) -"bjR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/port) -"bjS" = (/obj/structure/closet/cardboard,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bjT" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet/crate,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/closet/crate,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/storage) -"bjV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/storage) -"bjW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office) -"bjX" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/machinery/camera{c_tag = "Cargo Delivery Office"; dir = 4; network = list("SS13")},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office) -"bjY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office) -"bjZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office) -"bka" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office) -"bkb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/filingcabinet/filingcabinet,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office) -"bkc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/office) -"bkd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bke" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkf" = (/obj/machinery/camera{c_tag = "Central Hallway West"; dir = 8},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central) -"bkg" = (/obj/machinery/door/window/eastright{dir = 1; name = "Bridge Delivery"; req_access_txt = "19"},/turf/open/floor/plasteel/delivery,/area/bridge/meeting_room) -"bkh" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/bridge/meeting_room) -"bki" = (/obj/machinery/computer/slot_machine,/turf/open/floor/wood,/area/bridge/meeting_room) -"bkj" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0; pixel_y = -32},/turf/open/floor/wood,/area/bridge/meeting_room) -"bkk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bkl" = (/obj/machinery/vending/coffee,/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) -"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bkn" = (/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bkp" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30; pixel_y = 0},/obj/structure/filingcabinet,/turf/open/floor/wood,/area/crew_quarters/captain) -"bkq" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bkr" = (/obj/machinery/computer/communications,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bks" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/coin/plasma,/turf/open/floor/wood,/area/crew_quarters/captain) -"bkt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/open/floor/wood,/area/crew_quarters/captain) -"bku" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/item/device/camera,/obj/item/weapon/storage/photo_album{pixel_y = -10},/turf/open/floor/wood,/area/crew_quarters/captain) -"bkv" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkw" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bkx" = (/obj/machinery/power/apc{dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/mob/living/simple_animal/bot/cleanbot{name = "C.L.E.A.N."},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bky" = (/obj/machinery/camera{c_tag = "Chemistry"; dir = 2; network = list("SS13")},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bkz" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel/whiteyellow/side{dir = 1},/area/medical/chemistry) -"bkA" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/whiteyellow/side{dir = 5},/area/medical/chemistry) -"bkB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bkC" = (/obj/structure/chair,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bkD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bkE" = (/turf/open/floor/plasteel/white,/area/medical/medbay) -"bkF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bkG" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 26; req_access_txt = "5"},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/medical) -"bkH" = (/obj/machinery/camera{c_tag = "Security Post - Medbay"; dir = 2; network = list("SS13")},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/medical) -"bkI" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/medical) -"bkJ" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkK" = (/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkN" = (/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkO" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bkP" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage"; req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency) -"bkQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bkR" = (/turf/closed/wall,/area/assembly/chargebay) -"bkS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bkT" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/turf/open/floor/plasteel/delivery,/area/assembly/chargebay) -"bkU" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bkV" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bkW" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bkX" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bkY" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) -"bkZ" = (/turf/closed/wall,/area/medical/research{name = "Research Division"}) -"bla" = (/obj/machinery/door/airlock/research{cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"blb" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/lab) -"blc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{name = "Research and Development Desk"; req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab) -"bld" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/toxins/lab) -"ble" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/lab) -"blf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"blg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint2) -"blh" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/open/floor/plating/airless,/area/shuttle/escape) -"bli" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Port Docking Bay 4"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"blj" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Port Docking Bay 3"; req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"blk" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bll" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; layer = 3},/turf/open/floor/plating/warnplate{dir = 4},/area/maintenance/disposal) -"blm" = (/obj/machinery/mineral/stacking_machine{input_dir = 1; stack_amt = 10},/turf/open/floor/plating,/area/maintenance/disposal) -"bln" = (/obj/machinery/mineral/stacking_unit_console{dir = 2; machinedir = 8},/turf/closed/wall,/area/maintenance/disposal) -"blo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port) -"blp" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"blq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port) -"blr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"bls" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{icon_state = "window"; dir = 8},/turf/open/floor/plating,/area/maintenance/port) -"blt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{icon_state = "window"; dir = 1},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port) -"blu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port) -"blv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"blw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"blx" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/quartermaster/storage) -"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/storage) -"blz" = (/obj/structure/disposalpipe/wrapsortjunction{dir = 1},/turf/closed/wall,/area/quartermaster/storage) -"blA" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"blB" = (/obj/machinery/door/window/eastleft{dir = 4; icon_state = "right"; name = "Mail"; req_access_txt = "50"},/turf/open/floor/plating,/area/quartermaster/office) -"blC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"blD" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"blE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"blF" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/quartermaster/office) -"blG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/office) -"blH" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/turf/open/floor/plasteel/blue/corner,/area/hallway/primary/central) -"blI" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot,/area/bridge/meeting_room) -"blJ" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/bridge/meeting_room) -"blK" = (/turf/open/floor/plasteel/vault{dir = 1},/area/engine/gravity_generator) -"blL" = (/turf/open/floor/plasteel/vault{dir = 8},/area/engine/gravity_generator) -"blM" = (/turf/open/floor/plasteel/vault{dir = 4},/area/engine/gravity_generator) -"blN" = (/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/captain) -"blO" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"blP" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/melee/chainofcommand,/turf/open/floor/wood,/area/crew_quarters/captain) -"blQ" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"blR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"blS" = (/turf/open/floor/plasteel/white,/area/medical/chemistry) -"blT" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry) -"blU" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry) -"blV" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"blW" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/medical) -"blX" = (/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"blY" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom{pixel_x = 25},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/medical) -"blZ" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bma" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/morgue) -"bmb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bmc" = (/turf/open/floor/plating,/area/storage/emergency) -"bmd" = (/obj/machinery/light/small{dir = 1},/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency) -"bme" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency) -"bmf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{dir = 4; name = "Mech Bay APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/assembly/chargebay) -"bmg" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bmh" = (/turf/open/floor/plasteel,/area/assembly/chargebay) -"bmi" = (/obj/machinery/button/door{dir = 2; id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 6; pixel_y = 24},/turf/open/floor/plasteel/warning/corner{dir = 8},/area/assembly/chargebay) -"bmj" = (/turf/open/floor/plasteel/warning{dir = 1},/area/assembly/chargebay) -"bmk" = (/obj/machinery/power/apc{dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bml" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bmm" = (/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bmn" = (/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 2; network = list("SS13","RD")},/obj/machinery/button/door{dir = 2; id = "robotics"; name = "Shutters Control Button"; pixel_x = 6; pixel_y = 24; req_access_txt = "29"},/turf/open/floor/plasteel/whitered/corner{dir = 4},/area/assembly/robotics) -"bmo" = (/turf/open/floor/plasteel/whitered/side{dir = 1},/area/assembly/robotics) -"bmp" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/assembly/robotics) -"bmq" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/assembly/robotics) -"bmr" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warnwhite{dir = 9},/area/medical/research{name = "Research Division"}) -"bms" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bmt" = (/obj/machinery/camera{c_tag = "Research Division Access"; dir = 2; network = list("SS13")},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 5},/area/medical/research{name = "Research Division"}) -"bmu" = (/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/lab) -"bmv" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/lab) -"bmw" = (/obj/machinery/camera{c_tag = "Research and Development"; dir = 2; network = list("SS13","RD"); pixel_x = 22},/obj/machinery/button/door{dir = 2; id = "rnd"; name = "Shutters Control Button"; pixel_x = -6; pixel_y = 24; req_access_txt = "47"},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/toxins/lab) -"bmx" = (/turf/open/floor/plasteel/white,/area/toxins/lab) -"bmy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bmz" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/escape) -"bmA" = (/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned) -"bmB" = (/obj/machinery/door/airlock/shuttle,/obj/docking_port/mobile{dheight = 0; dir = 2; dwidth = 11; height = 22; id = "whiteship"; launch_status = 0; name = "NT Medical Ship"; port_angle = -90; preferred_direction = 4; roundstart_move = "whiteship_away"; timid = null; width = 35},/obj/docking_port/stationary{dir = 2; dwidth = 11; height = 22; id = "whiteship_home"; name = "SS13 Arrival Docking"; turf_type = /turf/open/space; width = 35},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bmC" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bmD" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/disposal) -"bmE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/disposal) -"bmF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/disposal) -"bmG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/disposal) -"bmH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bmI" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bmJ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bmK" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) -"bmL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port) -"bmM" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bmN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bmO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bmP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bmQ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bmR" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmS" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 0; pixel_y = 30},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmT" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmU" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/structure/closet/wardrobe/cargotech,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmV" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmW" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmY" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -1; pixel_y = 24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bmZ" = (/obj/machinery/photocopier,/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/office) -"bna" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/office) -"bnb" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office) -"bnc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/airalarm{dir = 4; locked = 0; pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"bnd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bne" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bnf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bng" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bnh" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Delivery Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bot,/area/quartermaster/office) -"bni" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bnj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnk" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral) -"bnl" = (/turf/open/floor/plating,/area/maintenance/maintcentral) -"bnm" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bnn" = (/obj/machinery/power/apc{dir = 1; name = "Bridge Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/maintcentral) -"bno" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bnp" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bnq" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 0},/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bnr" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Captain's Desk Door"; req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bns" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bnt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/captain) -"bnu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bnv" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bnw" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bnx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bny" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry) -"bnz" = (/obj/machinery/smartfridge/chemistry,/turf/open/floor/plating,/area/medical/chemistry) -"bnA" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bnB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/medbay) -"bnC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay) -"bnD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay) -"bnE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay) -"bnF" = (/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay) -"bnG" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/medical) -"bnH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bnI" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/medical) -"bnJ" = (/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bnK" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency) -"bnL" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency) -"bnM" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency) -"bnN" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency) -"bnO" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bnP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bnQ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bnR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bnS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bnT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bnU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bnV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bnW" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bnX" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/warnwhite{dir = 8},/area/medical/research{name = "Research Division"}) -"bnY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bnZ" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 4},/area/medical/research{name = "Research Division"}) -"boa" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bob" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/toxins/lab) -"boc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bod" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/white,/area/toxins/lab) -"boe" = (/turf/closed/wall,/area/maintenance/asmaint2) -"bof" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned) -"bog" = (/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"boh" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"boi" = (/obj/structure/table,/obj/item/weapon/screwdriver,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"boj" = (/obj/machinery/conveyor{dir = 1; id = "garbage"; layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit"; layer = 3; name = "disposal exit vent"},/turf/open/floor/plating,/area/maintenance/disposal) -"bok" = (/obj/machinery/button/door{id = "Disposal Exit"; name = "Disposal Vent Control"; pixel_x = -25; pixel_y = 4; req_access_txt = "12"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -26; pixel_y = -6},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/disposal) -"bol" = (/turf/open/floor/plating,/area/maintenance/disposal) -"bom" = (/obj/effect/decal/cleanable/oil,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/disposal) -"bon" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/port) -"boo" = (/turf/closed/wall/r_wall,/area/maintenance/port) -"bop" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/port) -"boq" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance"; req_access_txt = "31"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/quartermaster/storage) -"bor" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bos" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bot" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) -"bou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/quartermaster/office) -"bov" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bow" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"box" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"boy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"boz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"boA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/office) -"boB" = (/obj/structure/table/reinforced,/obj/item/device/destTagger,/obj/item/device/destTagger,/turf/open/floor/plasteel,/area/quartermaster/office) -"boC" = (/obj/structure/table/reinforced,/obj/item/stack/wrapping_paper{pixel_x = 3; pixel_y = 4},/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/quartermaster/office) -"boD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) -"boG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) -"boH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 2; name = "Head of Personnel APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads) -"boI" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/maintcentral) -"boJ" = (/obj/machinery/power/apc{dir = 4; name = "Conference Room APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/bridge/meeting_room) -"boK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"boL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"boM" = (/obj/machinery/gravity_generator/main/station,/turf/open/floor/plasteel/vault{dir = 8},/area/engine/gravity_generator) -"boN" = (/obj/machinery/camera{c_tag = "Gravity Generator Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"boO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"boP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"boQ" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access = null; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"boR" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance"; req_access_txt = "20"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/captain) -"boS" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boT" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"boU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"boV" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"boW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry) -"boX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"boY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay) -"boZ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bpa" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bpb" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bpc" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bpd" = (/obj/machinery/power/apc{dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/medical) -"bpe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bpf" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/medical) -"bpg" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/assembly/chargebay) -"bph" = (/turf/open/floor/mech_bay_recharge_floor,/area/assembly/chargebay) -"bpi" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bpj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bpk" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bpl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bpm" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = -3; pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/open/floor/plasteel/warning{dir = 1},/area/assembly/robotics) -"bpn" = (/turf/open/floor/plasteel/warning{dir = 1},/area/assembly/robotics) -"bpo" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel/warning{dir = 1},/area/assembly/robotics) -"bpp" = (/turf/open/floor/plasteel/warnwhite{dir = 8},/area/assembly/robotics) -"bpq" = (/obj/machinery/ai_status_display{pixel_x = 32; pixel_y = 0},/obj/structure/table,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bpr" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/warnwhite{dir = 10},/area/medical/research{name = "Research Division"}) -"bps" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warnwhite{dir = 6},/area/medical/research{name = "Research Division"}) -"bpt" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/lab) -"bpu" = (/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/lab) -"bpv" = (/obj/machinery/r_n_d/protolathe,/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/lab) -"bpw" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/warnwhite{dir = 8},/area/toxins/lab) -"bpx" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/toxins/lab) -"bpy" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8; pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bpz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bpA" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bpB" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bpC" = (/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 = 32},/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bpD" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bpE" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned) -"bpF" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned) -"bpG" = (/turf/open/floor/plating,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/abandoned) -"bpH" = (/obj/machinery/computer/pod{id = "oldship_gun"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bpI" = (/obj/machinery/light/small{dir = 8},/obj/machinery/mass_driver{id = "trash"},/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/disposal) -"bpJ" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "garbage"; name = "disposal coveyor"},/turf/open/floor/plating,/area/maintenance/disposal) -"bpK" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/disposal) -"bpL" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/disposal) -"bpM" = (/turf/closed/wall/mineral/titanium,/area/shuttle/supply) -"bpN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bpO" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/warning{dir = 8},/area/quartermaster/storage) -"bpP" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpR" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpU" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bpV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office) -"bpW" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bpX" = (/obj/machinery/status_display{density = 0; pixel_y = 2; supply_display = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/office) -"bpY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"bpZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/office) -"bqa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bqb" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bqc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqd" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bqe" = (/turf/closed/wall,/area/crew_quarters/heads) -"bqf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads) -"bqg" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads) -"bqh" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads) -"bqi" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"bqj" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"bqk" = (/turf/closed/wall,/area/crew_quarters/captain) -"bql" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bqm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bqn" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bqo" = (/obj/machinery/door/airlock{name = "Private Restroom"; req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/captain) -"bqp" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/captain) -"bqq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/captain) -"bqr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqs" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqt" = (/obj/structure/table/glass,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bqu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bqv" = (/obj/structure/disposalpipe/segment,/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bqw" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel/whiteyellow/side{dir = 2},/area/medical/chemistry) -"bqx" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/whiteyellow/side{dir = 6},/area/medical/chemistry) -"bqy" = (/obj/item/device/radio/intercom{broadcasting = 1; freerange = 0; frequency = 1485; listening = 0; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bqz" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bqA" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Doors Control"; normaldoorcontrol = 1; pixel_x = -26; req_access_txt = "5"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bqB" = (/obj/structure/chair/office/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 28},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bqC" = (/obj/structure/closet,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/medical) -"bqD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/medical) -"bqE" = (/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/medical) -"bqF" = (/obj/structure/table,/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqG" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqK" = (/obj/structure/disposalpipe/segment{dir = 4},/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},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/medical/morgue) -"bqL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/morgue) -"bqM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bqN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 1; name = "Starboard Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency) -"bqO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{sortType = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bqP" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bqQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bqR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bqS" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bqT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/robotics) -"bqU" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/cable_coil,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) -"bqV" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) -"bqW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bot,/area/assembly/robotics) -"bqX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/warnwhite{dir = 8},/area/assembly/robotics) -"bqY" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bqZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bra" = (/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"brb" = (/obj/machinery/door/airlock/research{cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"brc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"brd" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/toxins/lab) -"bre" = (/turf/open/floor/plasteel,/area/toxins/lab) -"brf" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/open/floor/plasteel,/area/toxins/lab) -"brg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/warnwhite{dir = 8},/area/toxins/lab) -"brh" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bri" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"brj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"brk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"brl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"brm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/asmaint2) -"brn" = (/turf/open/floor/plating,/area/shuttle/abandoned) -"bro" = (/turf/open/floor/mineral/titanium,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/abandoned) -"brp" = (/obj/structure/rack,/obj/item/clothing/suit/space/hardsuit/medical,/obj/item/clothing/mask/breath,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"brq" = (/obj/machinery/door/airlock/glass,/turf/open/floor/plating,/area/shuttle/abandoned) -"brr" = (/obj/machinery/mass_driver{dir = 4; icon_state = "mass_driver"; id = "oldship_gun"},/turf/open/floor/plating,/area/shuttle/abandoned) -"brs" = (/obj/machinery/door/poddoor{id = "oldship_gun"; name = "pod bay door"},/turf/open/floor/plating,/area/shuttle/abandoned) -"brt" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/turf/open/floor/plating,/area/maintenance/disposal) -"bru" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply) -"brv" = (/turf/open/floor/plasteel/warning{dir = 8},/area/quartermaster/storage) -"brw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"brx" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bry" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"brz" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay"; req_access_txt = "31"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"brA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office) -"brB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"brC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"brD" = (/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"brE" = (/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red,/obj/structure/table,/turf/open/floor/plasteel,/area/quartermaster/office) -"brF" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/quartermaster/office) -"brG" = (/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel,/area/quartermaster/office) -"brH" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/office) -"brI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"brJ" = (/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/central) -"brK" = (/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 6; pixel_y = 36},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 6; pixel_y = 25; req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = -4; pixel_y = 25; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 36},/obj/machinery/pdapainter,/turf/open/floor/plasteel/blue/side{dir = 9},/area/crew_quarters/heads) -"brL" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = 0; pixel_y = 32},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"brM" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("Prison"); pixel_x = 0; pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"brN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/dogbed{anchored = 1; desc = "Ian's bed! Looks comfy."; name = "Ian's bed"},/mob/living/simple_animal/pet/dog/corgi/Ian{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"brO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"brP" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator) -"brQ" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator) -"brR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_engineering{name = "Gravity Generator"; req_access_txt = "11"; req_one_access_txt = "0"},/turf/open/floor/plasteel/black,/area/engine/gravity_generator) -"brS" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 32; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/gravity_generator) -"brT" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"brU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"brV" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/captain) -"brW" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/captain) -"brX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"brY" = (/obj/structure/table/glass,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2; pixel_y = 6},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsa" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsb" = (/turf/closed/wall,/area/medical/medbay) -"bsc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay) -"bsd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer"; name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay) -"bse" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/medbay) -"bsf" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bsg" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 30; pixel_y = 0; pixel_z = 0},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bsh" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/security/checkpoint/medical) -"bsi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bsj" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "6;5"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/morgue) -"bsk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/morgue) -"bsl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/morgue) -"bsm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/genetics) -"bsn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) -"bso" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bsp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/assembly/chargebay) -"bsq" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/assembly/chargebay) -"bsr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bss" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bst" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bsu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/assembly/robotics) -"bsv" = (/turf/open/floor/plasteel,/area/assembly/robotics) -"bsw" = (/obj/structure/table,/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/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus{pixel_x = 5; pixel_y = -5},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/crowbar,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bsx" = (/turf/closed/wall,/area/assembly/robotics) -"bsy" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/turf/open/floor/plasteel/bot,/area/medical/research{name = "Research Division"}) -"bsz" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bot,/area/medical/research{name = "Research Division"}) -"bsA" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bot,/area/medical/research{name = "Research Division"}) -"bsB" = (/turf/closed/wall,/area/toxins/lab) -"bsC" = (/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/lab) -"bsD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/lab) -"bsE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/lab) -"bsF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/warnwhite/corner{dir = 4},/area/toxins/lab) -"bsG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bsH" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bsI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/loadingarea,/area/toxins/lab) -"bsJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/toxins/lab) -"bsK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bsL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bsM" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bsN" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bsO" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/turf/open/floor/plasteel/warning{dir = 8},/area/quartermaster/storage) -"bsP" = (/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"bsQ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bsR" = (/turf/open/floor/plasteel/brown/corner{dir = 1},/area/quartermaster/office) -"bsS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"bsT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bsU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bsV" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bsW" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bsX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/delivery,/area/quartermaster/office) -"bsY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"bsZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bta" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"btb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/hallway/primary/central) -"btc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/open/floor/plasteel/loadingarea{dir = 8},/area/hallway/primary/central) -"btd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/delivery,/area/hallway/primary/central) -"bte" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8; icon_state = "left"; name = "Reception Window"; req_access_txt = "0"},/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 4; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access = null; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/flasher{id = "hopflash"; pixel_x = 0; pixel_y = 28},/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; layer = 2.9; name = "Privacy Shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"btf" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 8},/area/crew_quarters/heads) -"btg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bth" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bti" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) -"btj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"btk" = (/obj/structure/chair/office/light,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/warning{dir = 9},/area/engine/gravity_generator) -"btl" = (/turf/open/floor/plasteel/warning{dir = 1},/area/engine/gravity_generator) -"btm" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 5},/area/engine/gravity_generator) -"btn" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bto" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"btp" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/weapon/reagent_containers/food/drinks/flask/gold,/turf/open/floor/carpet,/area/crew_quarters/captain) -"btq" = (/obj/machinery/shower{dir = 1},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/landmark{name = "revenantspawn"},/obj/structure/curtain,/turf/open/floor/plasteel/freezer,/area/crew_quarters/captain) -"btr" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bts" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"btt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/weapon/book/manual/wiki/chemistry,/obj/item/weapon/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"btu" = (/obj/structure/chair,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"btv" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"btw" = (/obj/structure/bed/roller,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer"; name = "Medbay Exit Button"; normaldoorcontrol = 1; pixel_x = 0; pixel_y = 26},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btx" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay) -"bty" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"btB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btC" = (/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btD" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"btF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"btG" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"btH" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay) -"btI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/genetics) -"btJ" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_medsci,/obj/machinery/requests_console{department = "Genetics"; departmentType = 0; name = "Genetics Requests Console"; pixel_x = 0; pixel_y = 30},/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/storage/pill_bottle/mannitol,/turf/open/floor/plasteel/white,/area/medical/genetics) -"btK" = (/obj/machinery/power/apc{dir = 1; name = "Genetics APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btL" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btM" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/genetics) -"btN" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"btO" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"btP" = (/turf/closed/wall/r_wall,/area/medical/genetics) -"btQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/assembly/chargebay) -"btR" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"btS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"btT" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"btU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) -"btV" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"btW" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/plasteel,/area/assembly/robotics) -"btX" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/open/floor/plasteel,/area/assembly/robotics) -"btY" = (/obj/structure/table,/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/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"btZ" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) -"bua" = (/turf/open/floor/plasteel/white/corner{dir = 2},/area/medical/research{name = "Research Division"}) -"bub" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/research{name = "Research Division"}) -"buc" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 8},/area/medical/research{name = "Research Division"}) -"bud" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/open/floor/plasteel/white,/area/toxins/lab) -"bue" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel/white,/area/toxins/lab) -"buf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/lab) -"bug" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/lab) -"buh" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = -23},/turf/open/floor/plasteel/white,/area/toxins/lab) -"bui" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/turf/open/floor/plasteel/delivery,/area/toxins/lab) -"buj" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "Research Division"},/turf/open/floor/plasteel/bot,/area/toxins/lab) -"buk" = (/turf/closed/wall/r_wall,/area/toxins/explab) -"bul" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned) -"bum" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plating,/area/shuttle/abandoned) -"bun" = (/obj/item/weapon/stock_parts/cell{charge = 100; maxcharge = 15000},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"buo" = (/obj/structure/rack,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bup" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"buq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/turf/open/floor/plating,/area/shuttle/supply) -"bur" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bus" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"but" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad2"},/turf/open/floor/plating/warnplate{dir = 1},/area/quartermaster/storage) -"buu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/storage) -"buv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"buw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bux" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"buy" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/storage) -"buz" = (/obj/machinery/autolathe,/obj/machinery/light_switch{pixel_x = -27},/turf/open/floor/plasteel,/area/quartermaster/office) -"buA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"buB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"buC" = (/obj/machinery/computer/cargo,/turf/open/floor/plasteel,/area/quartermaster/office) -"buD" = (/turf/open/floor/plasteel/bot,/area/quartermaster/office) -"buE" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/quartermaster/office) -"buF" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"buG" = (/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/central) -"buH" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"buI" = (/turf/open/floor/plasteel/bot,/area/hallway/primary/central) -"buJ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; layer = 2.9; name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) -"buK" = (/obj/machinery/computer/card,/turf/open/floor/plasteel/blue/side{dir = 10},/area/crew_quarters/heads) -"buL" = (/turf/open/floor/carpet,/area/crew_quarters/heads) -"buM" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads) -"buN" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"buO" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"buP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"buQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"buR" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/machinery/power/smes{charge = 5e+006},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"buS" = (/turf/closed/wall/r_wall,/area/teleporter) -"buT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/teleporter) -"buU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/teleporter) -"buV" = (/obj/machinery/door/airlock/maintenance{name = "Teleporter Maintenance"; req_access_txt = "17"},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/teleporter) -"buW" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"buX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"buY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"buZ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/chemistry) -"bva" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{dir = 1; name = "Chemistry Desk"; req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry) -"bvb" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bve" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bvj" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bvk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bvl" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bvm" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/genetics) -"bvn" = (/obj/structure/window/reinforced{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bvo" = (/turf/open/floor/plasteel,/area/medical/genetics) -"bvp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 14},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"bvq" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/chargebay) -"bvr" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bvs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bvt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bvu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bvv" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/open/floor/plasteel/white/corner{dir = 2},/area/assembly/robotics) -"bvw" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/structure/window/reinforced{dir = 4; pixel_x = 0},/turf/open/floor/plasteel/white/corner{dir = 8},/area/assembly/robotics) -"bvx" = (/obj/machinery/button/door{dir = 2; id = "robotics2"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bvy" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/assembly/robotics) -"bvz" = (/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bvA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bvB" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/lab) -"bvC" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/lab) -"bvD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2"; name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/toxins/lab) -"bvE" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/turf/open/floor/plasteel/white/corner{dir = 2},/area/toxins/explab) -"bvF" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab"; dir = 2; network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel/white/side{dir = 2},/area/toxins/explab) -"bvG" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/obj/item/device/radio/off,/turf/open/floor/plasteel/white/side{dir = 2},/area/toxins/explab) -"bvH" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel/white/side{dir = 2},/area/toxins/explab) -"bvI" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/open/floor/plasteel/white/corner{dir = 8},/area/toxins/explab) -"bvJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bvK" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bvL" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bvM" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/turf/open/floor/plating,/area/shuttle/supply) -"bvN" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/open/floor/plating,/area/quartermaster/storage) -"bvO" = (/turf/open/floor/plating,/area/quartermaster/storage) -"bvP" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Supply Dock Airlock"; req_access_txt = "31"},/turf/open/floor/plating,/area/quartermaster/storage) -"bvQ" = (/turf/open/floor/plasteel/warning{dir = 9},/area/quartermaster/storage) -"bvR" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"bvS" = (/turf/open/floor/plasteel/delivery,/area/quartermaster/storage) -"bvT" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"bvU" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/item/device/multitool,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/office) -"bvV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"bvW" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office) -"bvX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bvY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/bot,/area/hallway/primary/central) -"bvZ" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = -32},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; layer = 2.9; name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) -"bwa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bwb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bwc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) -"bwd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bwf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bwg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bwh" = (/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bwi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bwj" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bwl" = (/turf/closed/wall,/area/teleporter) -"bwm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/obj/structure/table,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/teleporter) -"bwn" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) -"bwo" = (/obj/item/device/radio/intercom{broadcasting = 0; listening = 1; name = "Station Intercom (General)"; pixel_y = 20},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bwp" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bwq" = (/obj/machinery/camera{c_tag = "Teleporter"},/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bwr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/teleporter) -"bws" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/teleporter) -"bwt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central) -"bwu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bwv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bww" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/corner{dir = 4},/area/medical/medbay) -"bwx" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/side{dir = 1},/area/medical/medbay) -"bwy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/whiteyellow/side{dir = 1},/area/medical/medbay) -"bwz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/side{dir = 1},/area/medical/medbay) -"bwA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/corner{dir = 1},/area/medical/medbay) -"bwB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay West"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwH" = (/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"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bwI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/medbay) -"bwJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay) -"bwK" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/medbay) -"bwL" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/disks{pixel_x = 2; pixel_y = 2},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwN" = (/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwO" = (/obj/machinery/door/window/westleft{name = "Monkey Pen"; req_access_txt = "9"},/turf/open/floor/plasteel,/area/medical/genetics) -"bwP" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bwQ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bwR" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bwS" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel/bot,/area/assembly/chargebay) -"bwT" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel/white/side{dir = 4},/area/assembly/robotics) -"bwU" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bwV" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bwW" = (/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 8},/area/assembly/robotics) -"bwX" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bwY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bwZ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bxb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Division North"; dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/research{name = "Research Division"}) -"bxe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxf" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/research{name = "Research Division"}) -"bxh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bxi" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/explab) -"bxj" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bxk" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bxl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bxm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bxn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bxo" = (/obj/machinery/door/airlock/maintenance{name = "Experimentation Lab Maintenance"; req_access_txt = "7"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/explab) -"bxp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bxq" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/abandoned) -"bxr" = (/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/obj/machinery/button/door{id = "QMLoaddoor"; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply) -"bxs" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock"; dir = 4},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{dir = 2; id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = -24; pixel_y = 8},/turf/open/floor/plasteel/warning{dir = 8},/area/quartermaster/storage) -"bxt" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"bxu" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel,/area/quartermaster/office) -"bxv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bxw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bxx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"bxy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bxz" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"bxA" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bxB" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/blue/side{dir = 9},/area/crew_quarters/heads) -"bxC" = (/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bxD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bxE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bxF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bxG" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bxH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/gravity_generator) -"bxI" = (/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/teleporter) -"bxJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) -"bxK" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bxL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel,/area/teleporter) -"bxM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bxN" = (/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"},/turf/open/floor/plasteel,/area/teleporter) -"bxO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access_txt = "17"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bxP" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central) -"bxQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bxR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bxS" = (/obj/structure/table,/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxT" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bxZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bya" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/white,/area/medical/medbay) -"byb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"byc" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"byd" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 30; pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bye" = (/turf/closed/wall,/area/medical/genetics) -"byf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor"; name = "Genetics"; req_access_txt = "5; 9"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"byh" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byi" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/genetics) -"byj" = (/turf/closed/wall/r_wall,/area/assembly/chargebay) -"byk" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"byl" = (/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"; req_one_access_txt = "0"},/turf/open/floor/plasteel/white,/area/assembly/robotics) -"bym" = (/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"byn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"byo" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"byp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"byq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"byr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bys" = (/obj/machinery/light,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"byt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"byu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byx" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/toxins/explab) -"byz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byA" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byB" = (/obj/machinery/power/apc{dir = 4; name = "Experimentation Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab) -"byC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/explab) -"byD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"byE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"byF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"byG" = (/obj/machinery/door/airlock/shuttle,/turf/open/floor/plasteel/shuttle/white,/area/shuttle/abandoned) -"byH" = (/obj/machinery/door/airlock/shuttle{name = "Supply Shuttle Airlock"; req_access_txt = "31"},/obj/docking_port/mobile/supply{dwidth = 5; width = 12},/obj/docking_port/stationary{dir = 8; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/floor/plating,/area/shuttle/supply) -"byI" = (/obj/machinery/conveyor_switch/oneway{convdir = -1; id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"byJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"byK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #3"},/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"byL" = (/obj/structure/table,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"byM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"byN" = (/obj/machinery/mineral/ore_redemption{input_dir = 8; output_dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/office) -"byO" = (/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/office) -"byP" = (/obj/structure/chair{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office) -"byQ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/bot,/area/hallway/primary/central) -"byR" = (/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 0},/obj/machinery/computer/cargo,/turf/open/floor/plasteel/blue/side{dir = 8},/area/crew_quarters/heads) -"byS" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"byT" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"byU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"byV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/engine/gravity_generator) -"byW" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warning{dir = 9},/area/engine/gravity_generator) -"byX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/warning{dir = 5},/area/engine/gravity_generator) -"byY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall,/area/engine/gravity_generator) -"byZ" = (/turf/open/floor/plasteel/warning{dir = 10},/area/teleporter) -"bza" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warning,/area/teleporter) -"bzb" = (/turf/open/floor/plasteel/warning,/area/teleporter) -"bzc" = (/turf/open/floor/plasteel/warning{dir = 6},/area/teleporter) -"bzd" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/bot,/area/teleporter) -"bze" = (/obj/machinery/shieldwallgen,/turf/open/floor/plasteel/bot,/area/teleporter) -"bzf" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/teleporter) -"bzg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/central) -"bzh" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30; pixel_y = 0; pixel_z = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bzi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bzj" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bzk" = (/turf/closed/wall,/area/medical/sleeper) -"bzl" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/sleeper) -"bzm" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzn" = (/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 8; pixel_y = 24},/obj/structure/table,/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzo" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzp" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzr" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/genetics) -"bzs" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/medical/genetics) -"bzt" = (/obj/structure/window/reinforced,/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bzu" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 12},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzv" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"bzx" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bot,/area/medical/research{name = "Research Division"}) -"bzy" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/research{name = "Research Division"}) -"bzz" = (/obj/machinery/camera{c_tag = "Research Division West"; dir = 2; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bzA" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bzB" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bzC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/research{name = "Research Division"}) -"bzD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bzE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/research{name = "Research Division"}) -"bzF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bzG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bzH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bzI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/hor) -"bzJ" = (/turf/closed/wall,/area/crew_quarters/hor) -"bzK" = (/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/toxins/explab) -"bzL" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bzM" = (/turf/open/floor/plasteel/white,/area/toxins/explab) -"bzN" = (/obj/structure/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bzO" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/explab) -"bzP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzR" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzS" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzT" = (/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzU" = (/obj/machinery/door/window,/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned) -"bzV" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned) -"bzW" = (/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bzX" = (/obj/structure/table,/obj/item/weapon/gun/energy/laser/retro,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bzY" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/turf/open/floor/plating,/area/shuttle/supply) -"bzZ" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bAa" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bAb" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating/warnplate{dir = 1},/area/quartermaster/storage) -"bAc" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light,/obj/machinery/status_display{density = 0; pixel_y = -30; supply_display = 1},/turf/open/floor/plating/warnplate{dir = 1},/area/quartermaster/storage) -"bAd" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/storage) -"bAe" = (/obj/machinery/camera{c_tag = "Cargo Bay South"; dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bAf" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 8; freq = 1400; location = "QM #4"},/turf/open/floor/plasteel/bot,/area/quartermaster/storage) -"bAg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/open/floor/plasteel,/area/quartermaster/office) -"bAh" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/office) -"bAi" = (/obj/machinery/light,/obj/machinery/power/apc{dir = 2; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown/corner{dir = 2},/area/quartermaster/office) -"bAj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bAk" = (/turf/open/floor/plasteel/brown/corner{dir = 8},/area/quartermaster/office) -"bAl" = (/turf/closed/wall,/area/security/checkpoint/supply) -"bAm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/supply) -"bAn" = (/obj/machinery/camera{c_tag = "Cargo Bay Entrance"; dir = 4; network = list("SS13")},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bAo" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/hallway/primary/central) -"bAp" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/closet/secure_closet/hop,/turf/open/floor/plasteel/blue/side{dir = 10},/area/crew_quarters/heads) -"bAq" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/camera{c_tag = "Head of Personnel's Office"; dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bAr" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bAs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bAt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bAu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/gravity_generator) -"bAv" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/gravity_generator) -"bAw" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 4},/area/engine/gravity_generator) -"bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/engine/gravity_generator) -"bAy" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/teleporter) -"bAz" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/teleporter) -"bAA" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter) -"bAB" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/teleporter) -"bAC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bAD" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot,/area/medical/medbay) -"bAE" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery"; req_access_txt = "5"},/turf/open/floor/plasteel/delivery,/area/medical/medbay) -"bAF" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bAG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bAH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bAI" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bAJ" = (/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bAK" = (/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/sleeper) -"bAL" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bAM" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/medical/sleeper) -"bAN" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bAO" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/open/floor/plasteel,/area/medical/sleeper) -"bAP" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plasteel,/area/medical/sleeper) -"bAQ" = (/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Medbay Cryogenics"; dir = 2; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0; pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0; pixel_y = 0},/turf/open/floor/plasteel,/area/medical/sleeper) -"bAR" = (/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4; network = list("SS13")},/obj/structure/table,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/item/weapon/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAS" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics) -"bAV" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/medical/genetics) -"bAZ" = (/obj/machinery/door/airlock/research{name = "Genetics Research"; req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bBa" = (/obj/structure/disposalpipe/sortjunction{sortType = 23},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bBb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bBc" = (/obj/machinery/door/airlock/research{name = "Genetics Research Access"; req_access_txt = "47"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard"; name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bot,/area/medical/research{name = "Research Division"}) -"bBe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/research{name = "Research Division"}) -"bBf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bBl" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bBm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bBn" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bBo" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; name = "Research Monitor"; network = list("RD","MiniSat"); pixel_x = 0; pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bBp" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = -2; pixel_y = 30},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bBq" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/warnwhite{dir = 9},/area/crew_quarters/hor) -"bBr" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/warnwhite{dir = 1},/area/crew_quarters/hor) -"bBs" = (/turf/open/floor/plasteel/warnwhite{dir = 5},/area/crew_quarters/hor) -"bBt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/explab) -"bBu" = (/turf/closed/wall,/area/toxins/explab) -"bBv" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/turf/open/floor/plasteel/white/corner{dir = 4},/area/toxins/explab) -"bBw" = (/obj/machinery/computer/rdconsole/experiment,/turf/open/floor/plasteel/white/side{dir = 1},/area/toxins/explab) -"bBx" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel/white/corner{dir = 1},/area/toxins/explab) -"bBy" = (/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Doors"; pixel_x = 25; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/explab) -"bBz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bBA" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bBB" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bBC" = (/obj/structure/lattice,/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space) -"bBD" = (/obj/machinery/door/airlock/glass,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bBE" = (/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel/shuttle/white,/area/shuttle/abandoned) -"bBF" = (/obj/structure/chair{dir = 4},/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bBG" = (/obj/machinery/computer/shuttle/white_ship,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bBH" = (/turf/closed/wall,/area/quartermaster/qm) -"bBI" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bBJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/qm) -"bBK" = (/turf/closed/wall,/area/quartermaster/miningdock) -"bBL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/miningdock) -"bBM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bBN" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/supply) -"bBO" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/supply) -"bBP" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/supply) -"bBQ" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/supply) -"bBR" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = null; req_access_txt = "57"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bBS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/engine/gravity_generator) -"bBT" = (/obj/machinery/ai_status_display,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/engine/gravity_generator) -"bBU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/engine/gravity_generator) -"bBV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/engine/gravity_generator) -"bBW" = (/obj/machinery/camera{c_tag = "Central Hallway South-East"; dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bBX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/sleeper) -"bBY" = (/obj/machinery/door/airlock/glass_medical{id_tag = ""; name = "Surgery Observation"; req_access_txt = "0"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bBZ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCa" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/delivery,/area/medical/sleeper) -"bCc" = (/turf/open/floor/plasteel,/area/medical/sleeper) -"bCd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCf" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/medical/sleeper) -"bCg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCh" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCj" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCl" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research"; req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCo" = (/obj/machinery/camera{c_tag = "Genetics Research"; dir = 1; network = list("SS13","RD"); pixel_x = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/medical/genetics) -"bCp" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) -"bCq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCr" = (/obj/machinery/camera{c_tag = "Genetics Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCs" = (/turf/closed/wall/r_wall,/area/toxins/server) -"bCt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access = null; req_access_txt = "30"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/toxins/server) -"bCu" = (/turf/closed/wall,/area/security/checkpoint/science) -"bCv" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/security/checkpoint/science) -"bCw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) -"bCx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/science) -"bCy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bCz" = (/obj/structure/table,/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2"; name = "Research Lab Shutter Control"; pixel_x = 5; pixel_y = 5; req_access_txt = "47"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bCA" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bCB" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bCC" = (/obj/structure/rack,/obj/item/device/aicard,/turf/open/floor/plasteel/warnwhite{dir = 8},/area/crew_quarters/hor) -"bCD" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/white,/area/crew_quarters/hor) -"bCE" = (/obj/structure/displaycase/labcage,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/warnwhite{dir = 4},/area/crew_quarters/hor) -"bCF" = (/turf/closed/wall/r_wall,/area/crew_quarters/hor) -"bCG" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) -"bCH" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) -"bCI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bCJ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bCK" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bCL" = (/obj/structure/table,/obj/item/weapon/tank/internals/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bCM" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/supply) -"bCN" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/obj/item/weapon/coin/silver,/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/qm) -"bCO" = (/obj/machinery/power/apc{dir = 1; name = "Quartermaster APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm) -"bCP" = (/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm) -"bCQ" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm) -"bCR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm) -"bCS" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/brown{dir = 5},/area/quartermaster/qm) -"bCT" = (/obj/machinery/power/apc{dir = 1; name = "Mining Dock APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bCU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bCV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bCW" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bCX" = (/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/supply) -"bCY" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bCZ" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bDa" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/computer/security/mining,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/supply) -"bDb" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDc" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"bDd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"bDe" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 1},/area/hallway/primary/central) -"bDf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/warning/corner{dir = 8},/area/hallway/primary/central) -"bDg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/central) -"bDh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/central) -"bDi" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/hallway/primary/central) -"bDj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warning/corner{dir = 4},/area/hallway/primary/central) -"bDk" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDl" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bDm" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Surgery Observation"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bDn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bDo" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bDp" = (/obj/structure/chair,/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bDq" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bDr" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bDs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/medical/sleeper) -"bDt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bDu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/plasteel,/area/medical/sleeper) -"bDv" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bDw" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/genetics) -"bDx" = (/obj/machinery/computer/cloning,/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/genetics) -"bDy" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/genetics) -"bDz" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/medical/genetics) -"bDA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDB" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDC" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDD" = (/obj/structure/closet/wardrobe/genetics_white,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint) -"bDF" = (/obj/machinery/r_n_d/server/robotics,/turf/open/floor/bluegrid{name = "Server Base"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bDG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 140; on = 1; pressure_checks = 0},/turf/open/floor/bluegrid{name = "Server Base"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bDH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) -"bDI" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/black,/area/toxins/server) -"bDJ" = (/obj/machinery/camera{c_tag = "Server Room"; dir = 2; network = list("SS13","RD"); pixel_x = 22},/obj/machinery/power/apc{dir = 1; name = "Server Room APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/toxins/server) -"bDK" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 2; on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plasteel/black,/area/toxins/server) -"bDL" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30; pixel_y = 0},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/closet,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/science) -"bDM" = (/obj/machinery/light_switch{pixel_x = 8; pixel_y = 28},/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 28; req_access_txt = "47"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/science) -"bDN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/science) -"bDO" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office."; name = "Research Monitor"; network = list("RD"); pixel_x = 0; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/science) -"bDP" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/science) -"bDQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bDR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/hor) -"bDS" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3; pixel_y = -2},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bDT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bDU" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bDV" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/open/floor/plasteel/warnwhite{dir = 10},/area/crew_quarters/hor) -"bDW" = (/turf/open/floor/plasteel/warnwhite{dir = 2},/area/crew_quarters/hor) -"bDX" = (/obj/machinery/modular_computer/console/preset/research,/turf/open/floor/plasteel/warnwhite{dir = 6},/area/crew_quarters/hor) -"bDY" = (/turf/open/floor/engine,/area/toxins/explab) -"bDZ" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bEa" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned) -"bEb" = (/obj/machinery/door/window/northright,/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium/purple,/area/shuttle/abandoned) -"bEc" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/open/floor/plating/airless,/area/shuttle/supply) -"bEd" = (/obj/machinery/computer/cargo,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/qm) -"bEe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bEf" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bEg" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Quartermaster"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bEh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bEi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/qm) -"bEj" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bEk" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bEl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bEm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j2s"; sortType = 3},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bEn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bEo" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bEp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/supply) -"bEq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bEr" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/light{dir = 4},/obj/item/device/radio/off,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/supply) -"bEs" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIW"; location = "QM"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEt" = (/obj/machinery/door/firedoor,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEu" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "AIW"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEv" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEw" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHE"; location = "AIE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEx" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP"; location = "CHE"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bEy" = (/obj/structure/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bEz" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bEA" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bEB" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/black,/area/medical/sleeper) -"bEC" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bED" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/obj/machinery/camera{c_tag = "Medbay Treatment Center"; dir = 8; network = list("SS13")},/turf/open/floor/plasteel,/area/medical/sleeper) -"bEE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) -"bEF" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench/medical,/turf/open/floor/plasteel,/area/medical/sleeper) -"bEG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/medical/sleeper) -"bEH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) -"bEI" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bEJ" = (/turf/open/floor/plating,/area/maintenance/asmaint) -"bEK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bEL" = (/obj/machinery/airalarm/server{dir = 4; pixel_x = -22; pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black{name = "Server Walkway"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bEM" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/black{name = "Server Walkway"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bEN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room"; req_access_txt = "30"},/turf/open/floor/plasteel/black,/area/toxins/server) -"bEO" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/open/floor/plasteel/black,/area/toxins/server) -"bEP" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel/black,/area/toxins/server) -"bEQ" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/toxins/server) -"bER" = (/obj/machinery/camera{c_tag = "Security Post - Science"; dir = 4; network = list("SS13","RD")},/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/science) -"bES" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bET" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEU" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEV" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/science) -"bEW" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bEX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bEY" = (/obj/machinery/door/airlock/glass_command{name = "Research Director"; req_access_txt = "30"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bEZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bFb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bFc" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bFd" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bFe" = (/obj/machinery/r_n_d/experimentor,/turf/open/floor/engine,/area/toxins/explab) -"bFf" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/engine,/area/toxins/explab) -"bFg" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bFh" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bFi" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/open/floor/plating/airless,/area/shuttle/supply) -"bFj" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/supply) -"bFk" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/open/floor/plating/airless,/area/shuttle/supply) -"bFl" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Quartermaster's Office"; dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/status_display{density = 0; pixel_x = -32; pixel_y = 0; supply_display = 1},/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/qm) -"bFm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm) -"bFn" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm) -"bFo" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm) -"bFp" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm) -"bFq" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 6},/area/quartermaster/qm) -"bFr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/qm) -"bFs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bFt" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bFu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bFv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) -"bFw" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/supply) -"bFx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/supply) -"bFy" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/supply) -"bFz" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/newscaster{hitstaken = 1; pixel_x = 0; pixel_y = -32},/obj/machinery/camera{c_tag = "Security Post - Cargo"; dir = 1},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/supply) -"bFA" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central) -"bFB" = (/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"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFC" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFD" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera{c_tag = "Central Primary Hallway South-West"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFF" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFG" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFH" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4; icon_state = "direction_med"; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 4; icon_state = "direction_evac"; pixel_x = -32; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFN" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFP" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFR" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFU" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/sleeper) -"bFV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/sleeper) -"bFW" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/sleeper) -"bFX" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Recovery Room"; req_access_txt = "0"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bFY" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bFZ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/pen,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = 30; pixel_z = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bGa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bGb" = (/turf/closed/wall,/area/medical/cmo) -"bGc" = (/obj/machinery/suit_storage_unit/cmo,/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bGd" = (/obj/machinery/computer/crew,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bGe" = (/obj/machinery/computer/med_data,/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bGf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"bGh" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"bGi" = (/obj/machinery/r_n_d/server/core,/turf/open/floor/bluegrid{name = "Server Base"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bGj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/bluegrid{name = "Server Base"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server) -"bGk" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) -"bGl" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/toxins/server) -"bGm" = (/obj/machinery/computer/rdservercontrol,/turf/open/floor/plasteel/black,/area/toxins/server) -"bGn" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/toxins/server) -"bGo" = (/obj/item/device/radio/intercom{pixel_x = -25},/obj/structure/filingcabinet,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/science) -"bGp" = (/obj/machinery/power/apc{dir = 2; name = "Science Security APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/science) -"bGq" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/science) -"bGr" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = -30},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/science) -"bGs" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/science) -"bGt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bGu" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bGv" = (/obj/machinery/power/apc{dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable,/obj/machinery/light_switch{pixel_y = -23},/obj/item/weapon/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGw" = (/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = -24},/obj/machinery/light,/obj/machinery/computer/card/minor/rd,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGx" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("SS13","RD")},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGy" = (/obj/structure/closet/secure_closet/RD,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGA" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/hor) -"bGB" = (/obj/machinery/camera{c_tag = "Experimentor Lab Chamber"; dir = 1; network = list("SS13","RD")},/obj/machinery/light,/obj/structure/sign/nosmoking_2{pixel_y = -32},/turf/open/floor/engine,/area/toxins/explab) -"bGC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bGD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bGE" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bGF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"bGG" = (/turf/closed/wall,/area/maintenance/aft) -"bGH" = (/turf/closed/wall,/area/storage/tech) -"bGI" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/central) -"bGJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/central) -"bGK" = (/turf/closed/wall,/area/janitor) -"bGL" = (/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/janitor) -"bGM" = (/turf/closed/wall,/area/maintenance/asmaint) -"bGN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"bGO" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/black,/area/hallway/primary/central) -"bGP" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/open/floor/plasteel,/area/medical/sleeper) -"bGQ" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/sleeper) -"bGR" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bGS" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/sleeper) -"bGT" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/open/floor/plasteel,/area/medical/sleeper) -"bGU" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bGV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/sleeper) -"bGW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/sleeper) -"bGX" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bGY" = (/obj/structure/closet/wardrobe/white/medical,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bGZ" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bHa" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/camera{c_tag = "Medbay Storage"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bHb" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bHc" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bHd" = (/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay) -"bHe" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/cmo) -"bHf" = (/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bHg" = (/obj/structure/chair/office/light,/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bHh" = (/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bHj" = (/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"bHk" = (/turf/closed/wall,/area/toxins/storage) -"bHl" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bHm" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bHn" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bHo" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bHp" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bHq" = (/obj/item/device/multitool,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bHr" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bHs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; pixel_y = 32},/turf/open/space,/area/space) -"bHt" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining"; departmentType = 0; pixel_x = -30; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bHu" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bHv" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bHw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bHx" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) -"bHy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bHz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/power/apc{dir = 1; name = "Cargo Security APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) -"bHA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bHB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bHC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bHD" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/open/floor/plating,/area/storage/tech) -"bHE" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) -"bHF" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/storage/tech) -"bHG" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plating,/area/storage/tech) -"bHH" = (/obj/machinery/camera{c_tag = "Tech Storage"; dir = 2},/obj/machinery/power/apc{dir = 1; name = "Tech Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/storage/tech) -"bHI" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) -"bHJ" = (/obj/structure/table,/obj/item/device/plant_analyzer,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/storage/tech) -"bHK" = (/turf/open/floor/plating,/area/storage/tech) -"bHL" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bHM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bHO" = (/obj/structure/closet/jcloset,/turf/open/floor/plasteel,/area/janitor) -"bHP" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel,/area/janitor) -"bHQ" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/vehicle/janicart,/turf/open/floor/plasteel,/area/janitor) -"bHR" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/janitor) -"bHS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) -"bHT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/janitor) -"bHU" = (/turf/open/floor/plasteel,/area/janitor) -"bHV" = (/obj/machinery/door/window/westleft{name = "Janitoral Delivery"; req_access_txt = "26"},/turf/open/floor/plasteel/delivery,/area/janitor) -"bHW" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; dir = 1; freq = 1400; location = "Janitor"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot,/area/janitor) -"bHX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bHY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bHZ" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/sleeper) -"bIa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIb" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bId" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/sleeper) -"bIe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bIf" = (/obj/structure/table,/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/sleeper) -"bIg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/sleeper) -"bIi" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIl" = (/obj/machinery/door/airlock/glass_medical{id_tag = null; name = "Medbay Storage"; req_access_txt = "45"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bIm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay) -"bIn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bIo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bIp" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bIq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bIr" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bIs" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bIt" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/tie/stethoscope,/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bIu" = (/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{pixel_x = 25},/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bIv" = (/turf/open/floor/engine,/area/toxins/xenobiology) -"bIw" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 2; network = list("Xeno","RD"); pixel_x = 0},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) -"bIx" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel/delivery{name = "floor"},/area/toxins/storage) -"bIy" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/delivery{name = "floor"},/area/toxins/storage) -"bIz" = (/obj/machinery/power/apc{dir = 8; name = "Misc Research APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bIA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bIB" = (/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bIC" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bID" = (/turf/closed/wall,/area/toxins/mixing) -"bIE" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 28},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bIF" = (/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bIG" = (/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 8},/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/camera{c_tag = "Toxins Lab West"; dir = 2; network = list("SS13","RD"); pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bIH" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bII" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{frequency = 1439; locked = 0; pixel_y = 23},/obj/item/weapon/storage/firstaid/toxin,/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bIJ" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/warnwhite{dir = 2},/area/toxins/mixing) -"bIK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/warnwhite{dir = 9},/area/toxins/mixing) -"bIL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/mixing) -"bIM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/warnwhite{dir = 5},/area/toxins/mixing) -"bIN" = (/turf/closed/wall/r_wall,/area/toxins/mixing) -"bIO" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIP" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIR" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/mixing) -"bIT" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/plasteel/shuttle/white,/area/shuttle/abandoned) -"bIU" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Mining Dock"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bIV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bIW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bIX" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/wardrobe/miner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bIY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/miningdock) -"bIZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bJa" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bJb" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 15},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bJc" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bJd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/aft) -"bJe" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bJf" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bJg" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bJh" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bJi" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/open/floor/plating,/area/storage/tech) -"bJj" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plating,/area/storage/tech) -"bJk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) -"bJl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bJm" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJn" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bJo" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/open/floor/plasteel,/area/janitor) -"bJp" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/janitor) -"bJq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/janitor) -"bJr" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor) -"bJs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/lizard{name = "Wags-His-Tail"; real_name = "Wags-His-Tail"},/turf/open/floor/plasteel,/area/janitor) -"bJt" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor) -"bJu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/apc{dir = 8; name = "Custodial Closet APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/janitor) -"bJv" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/asmaint) -"bJw" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 6},/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) -"bJx" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"bJy" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bJz" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"bJA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) -"bJB" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJD" = (/obj/structure/table/optable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/medical/sleeper) -"bJH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/sleeper) -"bJI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJJ" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/iv_drip,/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/sleeper) -"bJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bJL" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0; pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJN" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bJO" = (/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = -30; pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay South"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bJP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bJQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bJR" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bJS" = (/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = 28; pixel_y = 0},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bJT" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/light/small{dir = 8},/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bJU" = (/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bJV" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bJW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bJX" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bJY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/storage) -"bJZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bKa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bKb" = (/turf/open/floor/plasteel/warnwhite{dir = 9},/area/medical/research{name = "Research Division"}) -"bKc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing) -"bKd" = (/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bKe" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bKf" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bKg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bKh" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/asmaint2) -"bKj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/mixing) -"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/toxins/mixing) -"bKl" = (/obj/machinery/doppler_array{dir = 4},/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/mixing) -"bKm" = (/turf/closed/wall,/area/toxins/test_area) -"bKn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/toxins/test_area) -"bKo" = (/obj/item/weapon/scalpel,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bKp" = (/obj/structure/table,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"bKq" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"bKr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock) -"bKs" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/miningdock) -"bKt" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bKu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bKv" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bKw" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"bKx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bKy" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"bKz" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bKA" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/borgupload{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/computer/aiupload{pixel_x = 2; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tech) -"bKB" = (/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 2},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) -"bKC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/storage/tech) -"bKD" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) -"bKE" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/pandemic{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/computer/rdconsole,/obj/item/weapon/circuitboard/machine/rdserver{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/machine/destructive_analyzer,/obj/item/weapon/circuitboard/machine/protolathe,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/circuitboard/computer/aifixer,/obj/item/weapon/circuitboard/computer/teleporter,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/obj/item/weapon/circuitboard/machine/mechfab,/turf/open/floor/plating,/area/storage/tech) -"bKF" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/mining,/obj/item/weapon/circuitboard/machine/autolathe{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/computer/arcade/battle,/turf/open/floor/plating,/area/storage/tech) -"bKG" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/processor,/obj/item/weapon/circuitboard/machine/telecomms/receiver,/obj/item/weapon/circuitboard/machine/telecomms/server,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/item/weapon/circuitboard/computer/message_monitor{pixel_y = -5},/turf/open/floor/plating,/area/storage/tech) -"bKH" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bKI" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/key/janitor,/turf/open/floor/plasteel,/area/janitor) -"bKJ" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) -"bKK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/janitor) -"bKL" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/janitor) -"bKM" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/janitor) -"bKN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bKO" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/janitor) -"bKP" = (/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/open/floor/plating,/area/maintenance/asmaint) -"bKQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bKR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"bKS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"bKT" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "Treatment Center APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) -"bKU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/sleeper) -"bKV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bKW" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bKX" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/sleeper) -"bKY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bKZ" = (/obj/machinery/vending/wallmed{pixel_x = 28; pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay Recovery Room"; dir = 8; network = list("SS13")},/obj/machinery/iv_drip,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bLa" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bLb" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bLc" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLd" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLe" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv4"; name = "Privacy Shutters"; pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLf" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv4"; name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bLg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bLj" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer"; req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bLk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bLl" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bLm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bLn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/cmo) -"bLo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bLp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bLq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/toxins/xenobiology) -"bLr" = (/obj/machinery/power/apc{dir = 8; name = "Toxins Storage APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 4; network = list("SS13","RD")},/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLs" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLt" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/mob/living/simple_animal/mouse,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bLx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bLy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bLz" = (/turf/open/floor/plasteel/warnwhite{dir = 8},/area/medical/research{name = "Research Division"}) -"bLA" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bLB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bLC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bLD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) -"bLE" = (/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning/corner{dir = 1},/area/toxins/mixing) -"bLF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/toxins/mixing) -"bLG" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning/corner{dir = 2},/area/toxins/mixing) -"bLH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/toxins/mixing) -"bLI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing) -"bLJ" = (/obj/machinery/button/massdriver{dir = 2; id = "toxinsdriver"; pixel_y = 24},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/warning/corner{dir = 8},/area/toxins/mixing) -"bLK" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 8; layer = 4; name = "Test Chamber Telescreen"; network = list("Toxins"); pixel_x = 30; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/mixing) -"bLL" = (/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/warnplate{dir = 1},/area/toxins/test_area) -"bLM" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bLN" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"bLO" = (/obj/item/weapon/ore/iron,/turf/open/floor/plasteel/warning{dir = 9},/area/quartermaster/miningdock) -"bLP" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/turf/open/floor/plasteel/warning{dir = 1},/area/quartermaster/miningdock) -"bLQ" = (/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock) -"bLR" = (/obj/effect/landmark/start{name = "Shaft Miner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bLS" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bLT" = (/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) -"bLU" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft) -"bLV" = (/turf/open/floor/plating,/area/maintenance/aft) -"bLW" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/crew{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/computer/card{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/computer/communications{pixel_x = 5; pixel_y = -5},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/storage/tech) -"bLX" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/tech) -"bLY" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) -"bLZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) -"bMa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plating,/area/storage/tech) -"bMb" = (/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},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating,/area/storage/tech) -"bMc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"bMd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"bMe" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"bMf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bMg" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bMi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/janitor) -"bMj" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/janitor) -"bMk" = (/obj/machinery/power/apc{dir = 8; name = "Medbay Maintenance APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/maintenance/asmaint) -"bMl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/asmaint) -"bMm" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) -"bMn" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/asmaint) -"bMo" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"bMp" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bMq" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bMr" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plasteel,/area/medical/sleeper) -"bMs" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/sleeper) -"bMt" = (/obj/machinery/vending/wallmed{pixel_y = -28},/obj/machinery/camera{c_tag = "Surgery Operating"; dir = 1; network = list("SS13"); pixel_x = 22},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMu" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/sleeper) -"bMv" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4; pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1; pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2; pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel,/area/medical/sleeper) -"bMw" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMx" = (/obj/machinery/light,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMy" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMz" = (/obj/structure/table,/obj/machinery/light,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMA" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMB" = (/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0; freerange = 0; frequency = 1485; listening = 1; name = "Station Intercom (Medbay)"; pixel_x = 0; pixel_y = -30},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMC" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0; department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = 0; pixel_y = -30; pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMD" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bME" = (/obj/machinery/light,/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bMF" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bMG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bMH" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bMI" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bMJ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bMK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) -"bML" = (/obj/structure/table,/obj/item/weapon/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bMM" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bMN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bMO" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/barber,/area/medical/cmo) -"bMP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"bMQ" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/toxins/xenobiology) -"bMR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plasteel/bot,/area/toxins/storage) -"bMS" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/bot,/area/toxins/storage) -"bMT" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/bot,/area/toxins/storage) -"bMU" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bMV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bMW" = (/turf/open/floor/plasteel/warnwhite{dir = 10},/area/medical/research{name = "Research Division"}) -"bMX" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bMY" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bMZ" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bNa" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bNb" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bNc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bNd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 8},/area/toxins/mixing) -"bNe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) -"bNf" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/mixing) -"bNg" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) -"bNh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) -"bNi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/warning/corner{dir = 2},/area/toxins/mixing) -"bNj" = (/turf/open/floor/plasteel/warning{dir = 6},/area/toxins/mixing) -"bNk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/toxins/test_area) -"bNl" = (/obj/structure/chair,/turf/open/floor/plating/airless/warnplate{dir = 9},/area/toxins/test_area) -"bNm" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless/warnplate{dir = 1},/area/toxins/test_area) -"bNn" = (/obj/structure/chair,/turf/open/floor/plating/airless/warnplate{dir = 5},/area/toxins/test_area) -"bNo" = (/obj/machinery/sleeper{icon_state = "sleeper-open"; dir = 8},/obj/effect/decal/remains/human,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned) -"bNp" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock"; req_access_txt = "48"},/obj/docking_port/mobile{dir = 8; dwidth = 3; height = 5; id = "mining"; name = "mining shuttle"; port_angle = 90; width = 7},/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; width = 7},/turf/open/floor/plating,/area/shuttle/labor) -"bNq" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"; shuttledocked = 1},/turf/open/floor/plating,/area/quartermaster/miningdock) -"bNr" = (/obj/machinery/door/airlock/glass_mining{cyclelinkeddir = 8; name = "Mining Dock"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bNs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bNt" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bNu" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft) -"bNv" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/robotics{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/computer/mecha_control{pixel_x = 1; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/tech) -"bNw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) -"bNx" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/storage/tech) -"bNy" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/open/floor/plating,/area/storage/tech) -"bNz" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/computer/med_data{pixel_x = 3; pixel_y = -3},/obj/item/weapon/circuitboard/machine/clonescanner,/obj/item/weapon/circuitboard/machine/clonepod,/obj/item/weapon/circuitboard/computer/scan_consolenew,/turf/open/floor/plating,/area/storage/tech) -"bNA" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/secure_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/computer/security{pixel_x = 1; pixel_y = -1},/turf/open/floor/plating,/area/storage/tech) -"bNB" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/computer/powermonitor{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/computer/stationalert{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/computer/atmos_alert{pixel_x = 3; pixel_y = -3},/turf/open/floor/plating,/area/storage/tech) -"bNC" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plating,/area/storage/tech) -"bND" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bNE" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bNF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bNG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bNJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bNK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNN" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/asmaint) -"bNO" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bNP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bNQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plating,/area/maintenance/asmaint) -"bNR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/sleeper) -"bNS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/sleeper) -"bNT" = (/turf/closed/wall/r_wall,/area/medical/medbay) -"bNU" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bNV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bNW" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/shieldwallgen{req_access = list(55)},/turf/open/floor/plating,/area/toxins/xenobiology) -"bNX" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bNY" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bNZ" = (/obj/machinery/door/window/southleft{dir = 1; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"bOa" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bOb" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bOc" = (/turf/closed/wall,/area/toxins/xenobiology) -"bOd" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel/floorgrime,/area/toxins/storage) -"bOe" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bOf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bOg" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bOh" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOi" = (/obj/structure/closet/wardrobe/science_white,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOj" = (/obj/item/device/assembly/signaler{pixel_x = 0; pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOk" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOl" = (/obj/item/device/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0; pixel_y = 0},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOm" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOo" = (/obj/machinery/power/apc{dir = 4; name = "Toxins Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bOp" = (/turf/open/floor/plasteel/warning/corner{dir = 4},/area/toxins/mixing) -"bOq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/toxins/mixing) -"bOr" = (/obj/machinery/camera{c_tag = "Toxins Launch Room Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning/corner{dir = 8},/area/toxins/mixing) -"bOs" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door"; req_access_txt = "7"},/turf/open/floor/plasteel/loadingarea,/area/toxins/mixing) -"bOt" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/mixing) -"bOu" = (/turf/open/floor/plating/airless/warnplate{dir = 9},/area/toxins/test_area) -"bOv" = (/turf/open/floor/plating/airless,/area/toxins/test_area) -"bOw" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless/warnplate{dir = 5},/area/toxins/test_area) -"bOx" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/open/floor/plasteel/warning{dir = 10},/area/quartermaster/miningdock) -"bOy" = (/obj/machinery/camera{c_tag = "Mining Dock External"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/warning,/area/quartermaster/miningdock) -"bOz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/closed/wall,/area/quartermaster/miningdock) -"bOA" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/miningdock) -"bOB" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bOC" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bOD" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bOE" = (/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bOF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) -"bOG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bOH" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bOI" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/open/floor/plating,/area/storage/tech) -"bOJ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/open/floor/plating,/area/storage/tech) -"bOK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plating,/area/storage/tech) -"bOL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"bOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/storage/tech) -"bON" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bOO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"bOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint) -"bOR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/asmaint) -"bOS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/asmaint) -"bOT" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bOU" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bOV" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bOW" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bOX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bOY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"bOZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/sign/securearea{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPa" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bPb" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; sortType = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPd" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPe" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/medbay) -"bPf" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bPg" = (/obj/machinery/door/airlock/medical{name = "Patient Room 2"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bPh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bPi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay) -"bPj" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPk" = (/obj/machinery/power/apc{dir = 1; name = "CM Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) -"bPl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"bPn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bPo" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/toxins/xenobiology) -"bPp" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter"; network = list("Xeno"); pixel_x = 0; pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/warning{dir = 2},/area/toxins/xenobiology) -"bPq" = (/obj/machinery/button/door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_x = 0; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/warning{dir = 6},/area/toxins/xenobiology) -"bPr" = (/obj/machinery/door/window/southleft{name = "Test Chamber"; req_access_txt = "55"},/turf/open/floor/plasteel/warning{dir = 2},/area/toxins/xenobiology) -"bPs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/warning{dir = 10},/area/toxins/xenobiology) -"bPt" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel/warning{dir = 2},/area/toxins/xenobiology) -"bPu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/toxins/xenobiology) -"bPv" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/xenobiology) -"bPw" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bPx" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bPy" = (/obj/machinery/camera{c_tag = "Research Division South"; dir = 8; network = list("SS13")},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"}) -"bPz" = (/obj/structure/sign/fire,/turf/closed/wall,/area/medical/research{name = "Research Division"}) -"bPA" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/open/floor/plasteel/white,/area/toxins/mixing) -"bPB" = (/obj/machinery/mass_driver{dir = 4; id = "toxinsdriver"},/turf/open/floor/plating,/area/toxins/mixing) -"bPC" = (/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 = -32},/turf/open/floor/plating,/area/toxins/mixing) -"bPD" = (/turf/open/floor/plating/warnplate{dir = 4},/area/toxins/mixing) -"bPE" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/turf/open/floor/plating,/area/toxins/mixing) -"bPF" = (/turf/open/floor/plating/airless/warnplate{dir = 8},/area/toxins/test_area) -"bPG" = (/turf/open/floor/plating/airless/warnplate{dir = 4},/area/toxins/test_area) -"bPH" = (/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/toxins/test_area) -"bPI" = (/obj/machinery/camera{active_power_usage = 0; c_tag = "Bomb Test Site"; desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; dir = 8; invuln = 1; light = null; name = "Hardened Bomb-Test Camera"; network = list("Toxins"); use_power = 0},/obj/item/target/alien{anchored = 1},/turf/open/floor/plating/warnplate{dir = 4; luminosity = 2; initial_gas_mix = "o2=0.01;n2=0.01"},/area/toxins/test_area) -"bPJ" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/toxins/test_area) -"bPK" = (/obj/structure/shuttle/engine/heater,/turf/open/floor/plating,/area/shuttle/labor) -"bPL" = (/obj/structure/ore_box,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor) -"bPM" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bPN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"bPO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bPP" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/open/floor/plating,/area/storage/tech) -"bPQ" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) -"bPR" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/open/floor/plating,/area/storage/tech) -"bPS" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) -"bPT" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) -"bPU" = (/obj/machinery/requests_console{department = "Tech storage"; pixel_x = 0; pixel_y = -32},/turf/open/floor/plating,/area/storage/tech) -"bPV" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech) -"bPW" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Primary Hallway 2"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bPX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPZ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/caution{dir = 5},/area/hallway/primary/aft) -"bQa" = (/turf/closed/wall/r_wall,/area/atmos) -"bQb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/bot,/area/atmos) -"bQc" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/bot,/area/atmos) -"bQd" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/bot,/area/atmos) -"bQe" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/bot,/area/atmos) -"bQf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/atmos) -"bQg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance"; req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) -"bQh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/atmos) -"bQi" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/atmos) -"bQj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bQk" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bQl" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bQm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv1"; name = "Privacy Shutters"; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bQn" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv1"; name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bQo" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/white,/area/medical/medbay) -"bQp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay) -"bQq" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bQr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bQs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bQt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bQu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bQv" = (/obj/machinery/power/apc{dir = 8; name = "Xenobiology APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQw" = (/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQx" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQz" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2; pixel_y = 24},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQA" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract."; name = "Slime Processor"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQB" = (/obj/machinery/smartfridge/extract,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQC" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQD" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQE" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light_switch{pixel_x = 0; pixel_y = 28},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bQF" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bQH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"}) -"bQI" = (/obj/machinery/door/poddoor{id = "mixvent"; name = "Mixer Room Vent"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bQJ" = (/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 = 32},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bQK" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bQL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) -"bQM" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor"; master_tag = "tox_airlock_control"; pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4; on = 1},/turf/open/floor/engine,/area/toxins/mixing) -"bQN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump"; exterior_door_tag = "tox_airlock_exterior"; id_tag = "tox_airlock_control"; interior_door_tag = "tox_airlock_interior"; pixel_x = -24; pixel_y = 0; sanitize_external = 1; sensor_tag = "tox_airlock_sensor"},/turf/open/floor/plasteel/warnwhite/corner{dir = 1},/area/toxins/mixing) -"bQO" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "mix to port"},/turf/open/floor/plasteel/warnwhite{dir = 4},/area/toxins/mixing) -"bQP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/mixing) -"bQQ" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bQR" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bQS" = (/turf/open/floor/plating/airless/warnplate{dir = 10},/area/toxins/test_area) -"bQT" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless/warnplate{dir = 6},/area/toxins/test_area) -"bQU" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) -"bQV" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0; layer = 3; pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bQW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQX" = (/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/aft) -"bQY" = (/turf/closed/wall,/area/atmos) -"bQZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel,/area/atmos) -"bRa" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bRb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/atmos) -"bRc" = (/obj/machinery/firealarm{dir = 2; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"bRd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bRe" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/atmos) -"bRf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bRg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/meter{frequency = 1441; id_tag = "waste_meter"; name = "Waste Loop"},/turf/open/floor/plasteel,/area/atmos) -"bRh" = (/obj/machinery/camera{c_tag = "Atmospherics North East"},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bRi" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1441; id_tag = "distro_meter"; name = "Distribution Loop"},/turf/open/floor/plasteel,/area/atmos) -"bRj" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"bRk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to Distro"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"bRl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/turf/open/floor/plasteel,/area/atmos) -"bRm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"bRn" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/closed/wall/r_wall,/area/atmos) -"bRo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bRp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space) -"bRq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/space,/area/space/nearstation) -"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"bRs" = (/turf/closed/wall/r_wall,/area/medical/virology) -"bRt" = (/turf/closed/wall,/area/medical/virology) -"bRu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; pixel_y = 0; req_access_txt = "39"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bRv" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/medical/virology) -"bRw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 13},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"bRx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance"; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) -"bRy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bRG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"}) -"bRH" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"}) -"bRI" = (/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bRJ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bRK" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; glass = 1; heat_proof = 1; icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) -"bRL" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2; frequency = 1449; id = "tox_airlock_pump"},/turf/open/floor/engine,/area/toxins/mixing) -"bRM" = (/obj/machinery/door/airlock/glass_research{autoclose = 0; frequency = 1449; glass = 1; heat_proof = 1; icon_state = "door_locked"; id_tag = "tox_airlock_interior"; locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) -"bRN" = (/turf/open/floor/plasteel/warnwhite{dir = 8},/area/toxins/mixing) -"bRO" = (/turf/open/floor/plasteel/warnwhite{dir = 4},/area/toxins/mixing) -"bRP" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Toxins Lab East"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/mixing) -"bRQ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRR" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRS" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRT" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless/warnplate{dir = 10},/area/toxins/test_area) -"bRU" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless/warnplate{dir = 2},/area/toxins/test_area) -"bRV" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless/warnplate{dir = 6},/area/toxins/test_area) -"bRW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/test_area) -"bRX" = (/turf/closed/wall,/area/construction) -"bRY" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/construction) -"bRZ" = (/turf/open/floor/plating,/area/construction) -"bSa" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plating,/area/construction) -"bSb" = (/turf/open/floor/plasteel,/area/construction) -"bSc" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/construction) -"bSd" = (/turf/open/floor/plasteel/caution{dir = 6},/area/hallway/primary/aft) -"bSe" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel,/area/atmos) -"bSf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/portable_atmospherics/canister/bz,/turf/open/floor/plasteel,/area/atmos) -"bSg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bSh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"bSi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Atmospherics Monitoring"; dir = 2; network = list("SS13")},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/caution{dir = 5},/area/atmos) -"bSj" = (/obj/machinery/camera{c_tag = "Atmospherics North West"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"bSk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"bSl" = (/turf/open/floor/plasteel,/area/atmos) -"bSm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/atmos) -"bSn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bSo" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bSp" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bSq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bSr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/atmos) -"bSs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Distro"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bSt" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8; initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"bSu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Incinerator"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bSv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10; initialize_directions = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bSw" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos) -"bSx" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space/nearstation) -"bSy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/medical/virology) -"bSz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bSA" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5; pixel_y = 29},/obj/machinery/camera{c_tag = "Virology Break Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology) -"bSB" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/turf/open/floor/plasteel/white,/area/medical/virology) -"bSC" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/turf/open/floor/plasteel/white,/area/medical/virology) -"bSD" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/warnwhite{dir = 9},/area/medical/virology) -"bSE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology) -"bSF" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; dir = 2; network = list("SS13")},/turf/open/floor/plasteel/warnwhite{dir = 5},/area/medical/virology) -"bSG" = (/turf/open/floor/plasteel/white,/area/medical/virology) -"bSH" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/white,/area/medical/virology) -"bSI" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bSJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bSK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"bSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSN" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSR" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bSS" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) -"bST" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/research{name = "Research Division"}) -"bSU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/research{name = "Research Division"}) -"bSV" = (/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/research{name = "Research Division"}) -"bSW" = (/obj/machinery/sparker{dir = 2; id = "mixingsparker"; pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4; frequency = 1441; id = "air_in"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"bSX" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8; on = 1},/turf/open/floor/engine,/area/toxins/mixing) -"bSY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent"; name = "Mixing Room Vent Control"; pixel_x = -25; pixel_y = 5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker"; pixel_x = -25; pixel_y = -5},/turf/open/floor/plasteel/warnwhite/corner{dir = 4},/area/toxins/mixing) -"bSZ" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "port to mix"},/turf/open/floor/plasteel/warnwhite{dir = 4},/area/toxins/mixing) -"bTa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/warning{dir = 6},/area/toxins/mixing) -"bTb" = (/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/warnplate,/area/toxins/test_area) -"bTc" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft) -"bTd" = (/obj/machinery/light_construct{dir = 8},/turf/open/floor/plating,/area/construction) -"bTe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating,/area/construction) -"bTf" = (/obj/machinery/light_construct{dir = 4},/turf/open/floor/plasteel,/area/construction) -"bTg" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bTh" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bTi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/loadingarea{dir = 8},/area/hallway/primary/aft) -"bTj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Atmospherics"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/atmos) -"bTk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/atmos) -"bTl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bTm" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bTn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"bTo" = (/obj/machinery/computer/atmos_control,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos) -"bTp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/atmos) -"bTq" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/atmos) -"bTr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bTs" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bTt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bTu" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Waste In"; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bTv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"bTw" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/atmos) -"bTx" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bTy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Mix"; on = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bTz" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel/green/side{dir = 5},/area/atmos) -"bTA" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bTB" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"bTC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "mix_in"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/vacuum,/area/atmos) -"bTD" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/atmos) -"bTE" = (/turf/open/floor/engine/vacuum,/area/atmos) -"bTF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"bTG" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/white,/area/medical/virology) -"bTH" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel/white,/area/medical/virology) -"bTI" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 8},/area/medical/virology) -"bTJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bTK" = (/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/warnwhite{dir = 4},/area/medical/virology) -"bTL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology) -"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/white,/area/medical/virology) -"bTN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"bTO" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTP" = (/obj/machinery/computer/camera_advanced/xenobio,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTQ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTR" = (/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTT" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTU" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/weapon/extinguisher,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTV" = (/obj/structure/table,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = -30},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTW" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTX" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTY" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bTZ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) -"bUa" = (/obj/machinery/door/airlock/research{name = "Testing Lab"; req_access_txt = "47"},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bUb" = (/turf/closed/wall,/area/toxins/misc_lab) -"bUc" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bUd" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bUe" = (/obj/machinery/vending/boozeomat,/turf/open/floor/plasteel/bar,/area/maintenance/aft) -"bUf" = (/turf/open/floor/wood,/area/maintenance/aft) -"bUg" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/wood,/area/maintenance/aft) -"bUh" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/aft) -"bUi" = (/obj/machinery/door/airlock/maintenance{name = "Maint Bar Access"; req_access_txt = "12"},/obj/structure/barricade/wooden{name = "wooden barricade (CLOSED)"},/turf/open/floor/plating,/area/maintenance/aft) -"bUj" = (/obj/item/weapon/shard,/turf/open/floor/plating,/area/maintenance/aft) -"bUk" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/aft) -"bUl" = (/obj/structure/girder,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"bUm" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft) -"bUn" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bUo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"bUp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"bUq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bUr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/construction) -"bUs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bUt" = (/obj/structure/closet/crate,/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bUu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/construction) -"bUv" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bUw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) -"bUx" = (/obj/machinery/door/airlock/engineering{name = "Construction Area"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bUy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bUz" = (/turf/open/floor/plasteel/caution{dir = 5},/area/hallway/primary/aft) -"bUA" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "atmos"; layer = 2.9; name = "atmos blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bUB" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"bUC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"bUD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bUE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"bUF" = (/obj/machinery/computer/atmos_control,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos) -"bUG" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) -"bUH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bUI" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"bUJ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"bUK" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/atmos) -"bUL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/atmos) -"bUM" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Filter"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"bUN" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bUO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"bUP" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"bUQ" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bUR" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/turf/open/floor/plasteel/green/side{dir = 4},/area/atmos) -"bUS" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bUT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/atmos) -"bUU" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/atmos) -"bUV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/atmos) -"bUW" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/white,/area/medical/virology) -"bUX" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/medical/virology) -"bUY" = (/obj/structure/closet/wardrobe/virology_white,/turf/open/floor/plasteel/white,/area/medical/virology) -"bUZ" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = 8; pixel_y = -28; req_access_txt = "39"},/turf/open/floor/plasteel/warnwhite{dir = 10},/area/medical/virology) -"bVa" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bVb" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel/warnwhite{dir = 6},/area/medical/virology) -"bVc" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bVd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/xenobiology) -"bVe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/xenobiology) -"bVf" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/camera{c_tag = "Xenobiology North"; dir = 8; network = list("SS13","RD")},/turf/open/floor/plasteel/warnwhite{dir = 1},/area/toxins/xenobiology) -"bVg" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = -20; pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bVh" = (/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bVi" = (/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"bVj" = (/obj/machinery/requests_console{department = "Science"; departmentType = 2; dir = 2; name = "Science Requests Console"; pixel_x = 0; pixel_y = 30},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bVk" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/machinery/camera{c_tag = "Testing Lab North"; dir = 2; network = list("SS13","RD")},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bVl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"bVm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"bVn" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; req_access = null},/turf/open/floor/engine,/area/toxins/misc_lab) -"bVo" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"bVp" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/warning{dir = 9},/area/toxins/misc_lab) -"bVq" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/misc_lab) -"bVr" = (/turf/closed/wall/r_wall,/area/toxins/misc_lab) -"bVs" = (/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bVt" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood,/area/maintenance/aft) -"bVu" = (/obj/structure/table/wood,/obj/item/weapon/soap/nanotrasen,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft) -"bVv" = (/obj/structure/table/wood,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft) -"bVw" = (/obj/structure/table/wood,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/aft) -"bVx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"bVy" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"bVz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bVA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"bVB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Construction Area Maintenance"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bVC" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bVD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bVE" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) -"bVF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/construction) -"bVG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bVH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bVI" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4; icon_state = "left"; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos"; layer = 2.9; name = "atmos blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/atmos) -"bVJ" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"bVK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bVL" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) -"bVM" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/caution{dir = 4},/area/atmos) -"bVN" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) -"bVO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/atmos) -"bVP" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"bVQ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"bVR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) -"bVS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"bVU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"bVV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"bVW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bVX" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5; initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"bVY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Unfiltered to Mix"; on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"bVZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/green/side{dir = 6},/area/atmos) -"bWa" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bWb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bWc" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/open/floor/engine/vacuum,/area/atmos) -"bWd" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/white,/area/medical/virology) -"bWe" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bWf" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/white,/area/medical/virology) -"bWg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; icon_state = "door_locked"; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bWh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/virology) -"bWi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen"; req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bWj" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/engine,/area/toxins/xenobiology) -"bWk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/toxins/xenobiology) -"bWl" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bWm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel/warning{dir = 6},/area/toxins/xenobiology) -"bWn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bWo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bWp" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/button/door{id = "xenobio8"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel/warning{dir = 10},/area/toxins/xenobiology) -"bWq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bWr" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bWs" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"bWt" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/device/electropack,/obj/item/device/healthanalyzer,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bWu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/engine,/area/toxins/misc_lab) -"bWv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"bWw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) -"bWx" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"bWy" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"bWz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bWA" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"bWB" = (/obj/machinery/space_heater,/turf/open/floor/wood,/area/maintenance/aft) -"bWC" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/maintenance/aft) -"bWD" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/aft) -"bWE" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft) -"bWF" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/aft) -"bWG" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bWH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bWI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/construction) -"bWJ" = (/obj/machinery/camera{c_tag = "Construction Area"; dir = 1},/turf/open/floor/plating,/area/construction) -"bWK" = (/obj/structure/rack{dir = 1},/obj/item/clothing/suit/hazardvest,/turf/open/floor/plating,/area/construction) -"bWL" = (/obj/structure/table,/obj/item/stack/cable_coil{amount = 5},/obj/item/device/flashlight,/turf/open/floor/plating,/area/construction) -"bWM" = (/obj/structure/table,/turf/open/floor/plating,/area/construction) -"bWN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bWO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bWP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "atmos"; layer = 2.9; name = "atmos blast door"},/turf/open/floor/plating,/area/atmos) -"bWQ" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"bWR" = (/obj/structure/sign/atmosplaque{pixel_x = 0; pixel_y = -32},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bWS" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = 24; pixel_y = 4; req_access_txt = "24"},/turf/open/floor/plasteel/caution{dir = 6},/area/atmos) -"bWT" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/atmos) -"bWU" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/open/floor/plasteel,/area/atmos) -"bWV" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50; pixel_x = 2; pixel_y = 2},/turf/open/floor/plasteel,/area/atmos) -"bWW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) -"bWX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6; initialize_directions = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bWY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bWZ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bXa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bXb" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bXc" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bXd" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"bXe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXh" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXi" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXj" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/firealarm{pixel_y = 25},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXl" = (/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Virology APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology Module"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bXm" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel/white,/area/medical/virology) -"bXn" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/engine,/area/toxins/xenobiology) -"bXo" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"bXp" = (/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/xenobiology) -"bXq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bXr" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel/warning{dir = 8},/area/toxins/xenobiology) -"bXs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"bXt" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/machinery/airalarm{dir = 4; locked = 0; pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bXu" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/item/weapon/stock_parts/cell/high/plus,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bXv" = (/turf/open/floor/engine,/area/toxins/misc_lab) -"bXw" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/engine,/area/toxins/misc_lab) -"bXx" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) -"bXy" = (/obj/item/pipe{dir = 4; icon_state = "mixer"; name = "gas mixer fitting"; pipe_type = 14},/turf/open/floor/engine,/area/toxins/misc_lab) -"bXz" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5; pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5; pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2; pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2; pixel_y = -1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3; pixel_y = 3},/turf/open/floor/engine,/area/toxins/misc_lab) -"bXA" = (/turf/open/floor/plasteel/warning{dir = 10},/area/toxins/misc_lab) -"bXB" = (/turf/open/floor/plasteel/warning{dir = 6},/area/toxins/misc_lab) -"bXC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/toxins/misc_lab) -"bXD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bXE" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft) -"bXF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/wood,/area/maintenance/aft) -"bXG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft) -"bXH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXJ" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"bXK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{icon_state = "connector_map"; dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) -"bXL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"bXM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/aft) -"bXN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft) -"bXO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bXP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) -"bXQ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/aft) -"bXS" = (/obj/machinery/power/apc{name = "Aft Hall APC"; dir = 8; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"bXT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bXU" = (/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/structure/window/reinforced,/turf/open/floor/plasteel/caution{dir = 6},/area/hallway/primary/aft) -"bXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/atmos) -"bXW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/atmos) -"bXX" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"bXY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6; initialize_directions = 6},/turf/open/floor/plasteel,/area/atmos) -"bXZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bYa" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"bYb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"bYc" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"bYd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"bYe" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bYf" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"; on = 0},/turf/open/floor/plasteel/escape{dir = 5},/area/atmos) -"bYg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "n2o_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/n2o,/area/atmos) -"bYh" = (/turf/open/floor/engine/n2o,/area/atmos) -"bYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/medical/virology) -"bYj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"bYk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/medical/virology) -"bYl" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/white,/area/medical/virology) -"bYm" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bYn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bYo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"bYp" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bYq" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/xenobiology) -"bYr" = (/obj/structure/disposalpipe/segment,/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/open/floor/plasteel/white,/area/toxins/xenobiology) -"bYs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/warning{dir = 9},/area/toxins/xenobiology) -"bYt" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio8"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"bYu" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) -"bYv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"bYw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10; pixel_x = 0; initialize_directions = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bYx" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"bYy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/engine,/area/toxins/misc_lab) -"bYz" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/turf/open/floor/engine,/area/toxins/misc_lab) -"bYA" = (/turf/open/floor/plating,/area/toxins/misc_lab) -"bYB" = (/obj/structure/target_stake,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/toxins/misc_lab) -"bYC" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bYD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2},/turf/open/floor/plating/airless,/area/space/nearstation) -"bYE" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"bYG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bYH" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"bYI" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bYJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYK" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bYL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "Construction Area APC"; pixel_y = 24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"bYN" = (/obj/machinery/power/apc{dir = 2; name = "Telecoms Monitoring APC"; pixel_y = -24},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"bYO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bYQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bYR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/arrival{dir = 8},/area/atmos) -"bYS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"bYT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{dir = 8},/area/atmos) -"bYU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"bYV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos) -"bYW" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"bYX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Air to External"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"bYY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"bYZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"bZa" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/atmos) -"bZb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Port"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bZc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Port"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bZd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Pure to Port"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"bZe" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/atmos) -"bZf" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/atmos) -"bZg" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/turf/open/floor/plasteel/escape{dir = 4},/area/atmos) -"bZh" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/atmos) -"bZi" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/atmos) -"bZj" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/atmos) -"bZk" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZm" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZn" = (/obj/machinery/smartfridge/chemistry/virology,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology) -"bZo" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bZp" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology) -"bZq" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/virology) -"bZr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A"; req_access_txt = "39"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bZs" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"bZt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bZu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall,/area/toxins/xenobiology) -"bZv" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bZw" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"bZx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"bZy" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"bZz" = (/turf/open/floor/plasteel/warning/corner{dir = 8},/area/toxins/misc_lab) -"bZA" = (/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/misc_lab) -"bZB" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/misc_lab) -"bZC" = (/obj/machinery/camera{c_tag = "Testing Firing Range"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/turf/open/floor/plating,/area/toxins/misc_lab) -"bZD" = (/obj/structure/target_stake,/turf/open/floor/plating,/area/toxins/misc_lab) -"bZE" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bZF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bZH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bZI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Space"; on = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"bZJ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"bZK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bZL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bZM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/deathsposal{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft) -"bZN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"bZO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/aft) -"bZP" = (/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/aft) -"bZQ" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plating,/area/maintenance/aft) -"bZR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bZS" = (/turf/closed/wall/r_wall,/area/tcommsat/server) -"bZT" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) -"bZU" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bZV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bZW" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) -"bZX" = (/obj/machinery/camera{c_tag = "Atmospherics Access"; dir = 4; network = list("SS13")},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos) -"bZY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) -"bZZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"caa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos) -"cab" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/securearea,/turf/closed/wall,/area/atmos) -"cac" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "External to Filter"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"cad" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cae" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/atmos) -"caf" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/atmos) -"cag" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/atmos) -"cah" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cai" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"caj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos) -"cak" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "n2o"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"cal" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/escape{dir = 6},/area/atmos) -"cam" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/open/floor/engine/n2o,/area/atmos) -"can" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cao" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = -32},/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology) -"cap" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology) -"caq" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/medical/virology) -"car" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"cas" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cat" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"cau" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cav" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"caw" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel/warning{dir = 10},/area/toxins/xenobiology) -"cax" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cay" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"caz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"caA" = (/obj/structure/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"caB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"caC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"caD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/warning/corner{dir = 2},/area/toxins/misc_lab) -"caE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/maintenance/aft) -"caF" = (/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"caG" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"caH" = (/obj/machinery/atmospherics/pipe/manifold4w/general,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/aft) -"caI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) -"caJ" = (/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caK" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caL" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caM" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{cell_type = 5000; dir = 1; name = "Telecoms Server APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caN" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caO" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"caP" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) -"caQ" = (/obj/structure/table,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/tcommsat/computer) -"caR" = (/obj/item/device/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecoms)"; pixel_x = 0; pixel_y = 26},/turf/open/floor/plasteel,/area/tcommsat/computer) -"caS" = (/obj/machinery/light{dir = 1},/obj/machinery/announcement_system,/turf/open/floor/plasteel,/area/tcommsat/computer) -"caT" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"caU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/escape{dir = 8},/area/atmos) -"caV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"caW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmos blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/atmos) -"caX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmos blast door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/atmos) -"caY" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"caZ" = (/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = -30},/turf/open/floor/plasteel,/area/atmos) -"cba" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics West"; dir = 8; network = list("SS13")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) -"cbb" = (/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air to Port"; on = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cbc" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cbd" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/asmaint) -"cbe" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{pixel_x = -25},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology) -"cbf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"cbg" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"cbh" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology) -"cbi" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"cbj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"cbk" = (/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/virology) -"cbl" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"cbm" = (/obj/effect/landmark{name = "revenantspawn"},/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/toxins/xenobiology) -"cbn" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cbo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cbp" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbq" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/ignition{id = "testigniter"; pixel_x = -6; pixel_y = 2},/obj/machinery/button/door{id = "testlab"; name = "Test Chamber Blast Doors"; pixel_x = 4; pixel_y = 2; req_access_txt = "55"},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbr" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbs" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbt" = (/obj/structure/rack,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter"; network = list("Test"); pixel_x = 0; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbu" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/droneDispenser,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cbv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cbw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cbx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/misc_lab) -"cby" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/turf/open/floor/plating/warnplate{dir = 6},/area/toxins/misc_lab) -"cbz" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/structure/window/reinforced{dir = 1},/obj/item/device/radio/intercom{freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_x = 29},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plating/warnplate{dir = 10},/area/toxins/misc_lab) -"cbA" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cbB" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft) -"cbC" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft) -"cbD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"cbE" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"cbF" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"cbG" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cbH" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cbI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cbJ" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cbK" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cbL" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cbM" = (/obj/machinery/computer/message_monitor,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/tcommsat/computer) -"cbN" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cbO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cbP" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cbQ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/turf/open/floor/plasteel/escape{dir = 8},/area/atmos) -"cbR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) -"cbS" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"cbT" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/atmos) -"cbU" = (/obj/machinery/power/apc{dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/engineering) -"cbV" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/closet,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/engineering) -"cbW" = (/obj/structure/filingcabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/engineering) -"cbX" = (/obj/structure/fireaxecabinet{pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel,/area/atmos) -"cbY" = (/obj/structure/closet/secure_closet/atmospherics,/turf/open/floor/plasteel/warning{dir = 8},/area/atmos) -"cbZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/bot{dir = 2},/area/atmos) -"cca" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/bot{dir = 2},/area/atmos) -"ccb" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"ccc" = (/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"; on = 0},/turf/open/floor/plasteel/warning{dir = 5},/area/atmos) -"ccd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "tox_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/plasma,/area/atmos) -"cce" = (/turf/open/floor/engine/plasma,/area/atmos) -"ccf" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/engine/plasma,/area/atmos) -"ccg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint) -"cch" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"cci" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{density = 0; pixel_x = -30},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology) -"ccj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology) -"cck" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/virology) -"ccl" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology) -"ccm" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"ccn" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white,/area/medical/virology) -"cco" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"ccp" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/xenobiology) -"ccq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"ccr" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) -"ccs" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) -"cct" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/misc_lab) -"ccu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"ccv" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"ccw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ccx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/misc_lab) -"ccy" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ccz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning/corner{dir = 8},/area/toxins/misc_lab) -"ccA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/toxins/misc_lab) -"ccB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/warning/corner{dir = 4},/area/toxins/misc_lab) -"ccC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ccD" = (/obj/structure/closet/crate,/obj/item/clothing/under/color/lightpurple,/obj/item/stack/spacecash/c200,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ccE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"ccF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"ccG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"ccH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Space"; on = 0},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"ccI" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft) -"ccJ" = (/obj/machinery/door/airlock/maintenance{name = "Incinerator Access"; req_access_txt = "12"},/obj/structure/barricade/wooden{name = "wooden barricade (CLOSED)"},/turf/open/floor/plating,/area/maintenance/aft) -"ccK" = (/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ccL" = (/obj/machinery/blackbox_recorder,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ccM" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ccN" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ccO" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/tcommsat/computer) -"ccP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer) -"ccQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) -"ccR" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"ccS" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"ccT" = (/turf/closed/wall,/area/engine/break_room) -"ccU" = (/turf/open/floor/plasteel/caution{dir = 9},/area/engine/break_room) -"ccV" = (/turf/open/floor/plasteel/caution{dir = 1},/area/engine/break_room) -"ccW" = (/turf/open/floor/plasteel/caution{dir = 5},/area/engine/break_room) -"ccX" = (/turf/closed/wall,/area/security/checkpoint/engineering) -"ccY" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -6; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/engineering) -"ccZ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"cda" = (/obj/machinery/camera{c_tag = "Security Post - Engineering"; dir = 8; network = list("SS13")},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/engineering) -"cdb" = (/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel/warning{dir = 8},/area/atmos) -"cdc" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/atmos) -"cdd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cde" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/turf/open/floor/plasteel/warning{dir = 4},/area/atmos) -"cdf" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/atmos) -"cdg" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/engine/plasma,/area/atmos) -"cdh" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/plasma,/area/atmos) -"cdi" = (/obj/structure/closet/l3closet/virology,/turf/open/floor/plasteel/whitegreen/side{dir = 2},/area/medical/virology) -"cdj" = (/obj/structure/closet/secure_closet/medical1,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitegreen/side{dir = 2},/area/medical/virology) -"cdk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"cdl" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South"; dir = 4; network = list("SS13","RD")},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cdm" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cdn" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; unacidable = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"cdo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/engine,/area/toxins/misc_lab) -"cdp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cdq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/warning{dir = 4},/area/toxins/misc_lab) -"cdr" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/misc_lab) -"cds" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cdt" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cdu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/aft) -"cdv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Port"; on = 0},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/aft) -"cdw" = (/obj/item/stack/tile/plasteel,/turf/open/space,/area/space/nearstation) -"cdx" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cdy" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cdz" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cdA" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) -"cdB" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cdC" = (/obj/machinery/status_display,/turf/closed/wall,/area/tcommsat/computer) -"cdD" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/tcommsat/computer) -"cdE" = (/obj/machinery/door/airlock/glass_command{name = "Control Room"; req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cdF" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) -"cdG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"cdH" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cdI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"cdJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_x = -23; pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cdK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cdL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cdM" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cdN" = (/obj/machinery/door/airlock/glass_security{name = "Security Office"; req_access_txt = "63"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"cdO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/engineering) -"cdP" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"cdQ" = (/obj/machinery/computer/secure_data,/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/engineering) -"cdR" = (/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel,/area/atmos) -"cdS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/atmos) -"cdT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos) -"cdU" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cdV" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "plasma"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"cdW" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/warning{dir = 6},/area/atmos) -"cdX" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/open/floor/engine/plasma,/area/atmos) -"cdY" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint) -"cdZ" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint) -"cea" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/virology) -"cec" = (/obj/machinery/airalarm{frequency = 1439; pixel_y = 23},/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating/warnplate{dir = 9},/area/maintenance/asmaint) -"ced" = (/obj/machinery/atmospherics/components/binary/valve/open{icon_state = "mvalve_map"; dir = 4},/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/asmaint) -"cee" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating/warnplate{dir = 5},/area/maintenance/asmaint) -"cef" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) -"ceg" = (/obj/structure/rack{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"ceh" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cei" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 10},/area/toxins/xenobiology) -"cej" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cek" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) -"cel" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) -"cem" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/warning/corner{dir = 1},/area/toxins/misc_lab) -"cen" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/warning/corner{dir = 8},/area/toxins/misc_lab) -"ceo" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cep" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ceq" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cer" = (/obj/item/weapon/weldingtool,/turf/open/floor/plating/airless,/area/space/nearstation) -"ces" = (/obj/machinery/power/terminal{dir = 4},/obj/machinery/ntnet_relay,/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cet" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ceu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cev" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/plasteel/vault{dir = 8; name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cew" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cex" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cey" = (/obj/machinery/door/airlock/glass_engineering{cyclelinkeddir = 4; name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/computer) -"cez" = (/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/computer) -"ceA" = (/obj/machinery/door/airlock/glass_engineering{cyclelinkeddir = 8; name = "Server Room"; req_access_txt = "61"},/turf/open/floor/plasteel/vault{dir = 5},/area/tcommsat/computer) -"ceB" = (/turf/open/floor/plasteel/warning{dir = 8},/area/tcommsat/computer) -"ceC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"ceD" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Telecoms Monitoring"; dir = 8; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"ceE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"ceF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ceG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"ceH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ceI" = (/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"ceJ" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel,/area/engine/break_room) -"ceK" = (/turf/open/floor/plasteel,/area/engine/break_room) -"ceL" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"ceM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) -"ceN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"ceO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/engineering) -"ceP" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/engineering) -"ceQ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/engineering) -"ceR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"ceS" = (/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) -"ceT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Port to Filter"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"ceU" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/atmos) -"ceV" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"ceW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/space,/area/space/nearstation) -"ceX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceZ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"cfb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cfd" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cff" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating/warnplate{dir = 10},/area/maintenance/asmaint) -"cfg" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating/warnplate{dir = 2},/area/maintenance/asmaint) -"cfh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/warnplate{dir = 6},/area/maintenance/asmaint) -"cfi" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cfk" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 8; icon_state = "right"; name = "Containment Pen"; req_access_txt = "55"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cfl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4; name = "Containment Pen"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cfm" = (/obj/machinery/sparker{id = "testigniter"; pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) -"cfn" = (/obj/item/device/radio/beacon,/turf/open/floor/engine,/area/toxins/misc_lab) -"cfo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"cfp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"cfq" = (/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/door/airlock/glass_research{cyclelinkeddir = 4; name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"cfr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/delivery{name = "floor"},/area/toxins/misc_lab) -"cfs" = (/obj/machinery/door/airlock/glass_research{cyclelinkeddir = 8; name = "Test Chamber"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/delivery{name = "floor"},/area/toxins/misc_lab) -"cft" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 8},/area/toxins/misc_lab) -"cfu" = (/obj/machinery/power/apc{dir = 4; name = "Testing Lab APC"; pixel_x = 26; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"cfv" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cfw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cfx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cfy" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cfz" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cfA" = (/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cfB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"cfC" = (/obj/item/stack/sheet/metal,/turf/open/floor/plating/airless,/area/space/nearstation) -"cfD" = (/obj/item/stack/cable_coil{amount = 5},/turf/open/floor/plating/airless,/area/space/nearstation) -"cfE" = (/obj/machinery/camera{c_tag = "Telecoms Server Room"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cfF" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cfG" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"cfH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 0},/turf/closed/wall,/area/tcommsat/computer) -"cfI" = (/turf/open/floor/plasteel,/area/tcommsat/computer) -"cfJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cfK" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecoms Admin"; departmentType = 5; name = "Telecoms RC"; pixel_x = 30; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cfL" = (/obj/structure/disposalpipe/sortjunction{dir = 2; icon_state = "pipe-j2s"; sortType = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/aft) -"cfM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cfN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Aft Primary Hallway 1"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = -22},/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/aft) -"cfO" = (/obj/machinery/power/apc{dir = 8; name = "Engineering Foyer APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/open/floor/plasteel,/area/engine/break_room) -"cfP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cfR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/engineering) -"cfS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos) -"cfT" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/open/floor/plasteel,/area/atmos) -"cfU" = (/obj/machinery/space_heater,/turf/open/floor/plasteel/warning{dir = 10},/area/atmos) -"cfV" = (/obj/machinery/space_heater,/turf/open/floor/plasteel/warning{dir = 6},/area/atmos) -"cfW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cfX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Port to Filter"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"cfY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/cigbutt,/turf/open/floor/plasteel,/area/atmos) -"cfZ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cga" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"; on = 0},/turf/open/floor/plasteel/yellow/side{dir = 5},/area/atmos) -"cgb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; external_pressure_bound = 0; frequency = 1441; id_tag = "co2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/co2,/area/atmos) -"cgc" = (/turf/open/floor/engine/co2,/area/atmos) -"cgd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/maintenance/asmaint) -"cge" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cgf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cgg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cgh" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cgi" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cgj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cgk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cgl" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_x = 0; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light,/turf/open/floor/plasteel/warning{dir = 5},/area/toxins/xenobiology) -"cgm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cgn" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cgo" = (/obj/machinery/camera{c_tag = "Testing Chamber"; dir = 1; network = list("Test","RD"); pixel_x = 0},/obj/machinery/light,/turf/open/floor/engine,/area/toxins/misc_lab) -"cgp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/warning/corner{dir = 4},/area/toxins/misc_lab) -"cgq" = (/obj/machinery/camera{c_tag = "Testing Lab South"; dir = 8; network = list("SS13","RD"); pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cgr" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cgs" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target/clown,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cgt" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"cgu" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cgv" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"cgw" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/aft) -"cgx" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = 11},/turf/open/floor/plating,/area/maintenance/aft) -"cgy" = (/obj/item/clothing/head/hardhat,/turf/open/floor/plating/airless,/area/space/nearstation) -"cgz" = (/obj/machinery/message_server,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cgA" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cgB" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"cgC" = (/obj/structure/table,/obj/item/device/multitool,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/tcommsat/computer) -"cgD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cgE" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cgF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cgG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 9},/area/hallway/primary/aft) -"cgH" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/hallway/primary/aft) -"cgI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/aft) -"cgJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cgK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/primary/aft) -"cgL" = (/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 5},/area/hallway/primary/aft) -"cgM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/break_room) -"cgN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cgO" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cgP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cgQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cgR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/break_room) -"cgS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"cgT" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/break_room) -"cgU" = (/turf/closed/wall/r_wall,/area/engine/engineering) -"cgV" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel,/area/atmos) -"cgW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel,/area/atmos) -"cgX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cgY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/atmos) -"cgZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 to Pure"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"cha" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "co2_in"; name = "Carbon Dioxide Supply Control"; output_tag = "co2_out"; sensors = list("co2_sensor" = "Tank")},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/atmos) -"chb" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "co2_sensor"},/turf/open/floor/engine/co2,/area/atmos) -"chc" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine/co2,/area/atmos) -"chd" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/co2,/area/atmos) -"che" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/maintenance/asmaint) -"chf" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"chg" = (/obj/structure/sign/nosmoking_2{pixel_x = 0; pixel_y = 28},/turf/open/floor/plating,/area/maintenance/asmaint) -"chh" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"chi" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"chj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"chk" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"chl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"chm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"chn" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cho" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"chp" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"chq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"chr" = (/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"chs" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"cht" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"chu" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/toxins/misc_lab) -"chv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint2) -"chw" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"chx" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"chy" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"chz" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/obj/item/weapon/reagent_containers/food/condiment/sugar,/turf/open/floor/plating,/area/maintenance/aft) -"chA" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) -"chB" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"chC" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) -"chD" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"chE" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"chF" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"chG" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"chH" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/tcommsat/computer) -"chI" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) -"chJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"chK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"chL" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"chM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/hallway/primary/aft) -"chN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"chO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"chP" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE"; location = "AftH"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"chQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"chR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/hallway/primary/aft) -"chS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"chT" = (/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},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"chU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"chV" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) -"chW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"chX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"chY" = (/obj/machinery/vending/cigarette{pixel_x = 0; pixel_y = 0},/turf/open/floor/plasteel,/area/engine/break_room) -"chZ" = (/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/open/floor/plasteel,/area/atmos) -"cia" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cib" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"cic" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; pixel_x = 0; pixel_y = 0; target_pressure = 4500},/turf/open/floor/plasteel,/area/atmos) -"cid" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"; on = 0},/turf/open/floor/plasteel,/area/atmos) -"cie" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1; filter_type = "co2"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"cif" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/atmos) -"cig" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "co2_in"; pixel_y = 1},/turf/open/floor/engine/co2,/area/atmos) -"cih" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/maintenance/asmaint) -"cii" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"cij" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cik" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cil" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cim" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"cin" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cio" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"cip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"ciq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cir" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cis" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cit" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 140; on = 1; pressure_checks = 0},/obj/machinery/camera{c_tag = "Xenobiology Kill Room"; dir = 4; network = list("SS13","RD")},/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"ciu" = (/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"civ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; external_pressure_bound = 120; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"ciw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/biohazard,/turf/open/floor/plating,/area/toxins/xenobiology) -"cix" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80; dir = 2; on = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"ciy" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ciz" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ciA" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ciB" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"ciC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ciD" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ciE" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ciF" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plating,/area/maintenance/aft) -"ciG" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_y = 2},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 2},/obj/item/weapon/reagent_containers/food/snacks/mint{pixel_y = 9},/turf/open/floor/plating,/area/maintenance/aft) -"ciH" = (/obj/machinery/power/apc{dir = 8; name = "Engineering Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ciI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/aft) -"ciJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plating,/area/maintenance/aft) -"ciK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft) -"ciL" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ciM" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ciN" = (/obj/structure/sign/nosmoking_2{pixel_y = -32},/obj/machinery/light,/turf/open/floor/bluegrid{name = "Mainframe Base"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ciO" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ciP" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/plasteel/black{name = "Mainframe Floor"; initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server) -"ciQ" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"ciR" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/tcommsat/computer) -"ciS" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/tcommsat/computer) -"ciT" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/tcommsat/computer) -"ciU" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"ciV" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/hallway/primary/aft) -"ciW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft) -"ciX" = (/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft) -"ciY" = (/obj/machinery/light,/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft) -"ciZ" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/yellow/side,/area/hallway/primary/aft) -"cja" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/hallway/primary/aft) -"cjb" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/break_room) -"cjc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cjd" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cje" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cjf" = (/obj/machinery/camera{c_tag = "Engineering Foyer"; dir = 1},/obj/structure/noticeboard{dir = 1; pixel_y = -27},/turf/open/floor/plasteel,/area/engine/break_room) -"cjg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cjh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cji" = (/obj/structure/extinguisher_cabinet{pixel_x = 27; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cjj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cjk" = (/obj/machinery/camera{c_tag = "Atmospherics South West"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/atmos) -"cjl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"cjm" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"cjn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/atmos) -"cjo" = (/obj/machinery/power/apc{dir = 2; name = "Incinerator APC"; pixel_x = 0; pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/maintenance/incinerator) -"cjp" = (/obj/structure/sign/fire{pixel_x = 0; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cjq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating/warnplate,/area/maintenance/asmaint) -"cjr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cjs" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cjt" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/maintenance/asmaint) -"cju" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint) -"cjv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint) -"cjw" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint) -"cjx" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/l3closet,/turf/open/floor/plating,/area/maintenance/asmaint) -"cjy" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"cjz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"cjA" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/bluegrid{name = "Killroom Floor"; initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology) -"cjB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Kill Chamber"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) -"cjC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cjD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cjE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel/white,/area/toxins/xenobiology) -"cjF" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjG" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjH" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjI" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/bot{dir = 2},/area/toxins/misc_lab) -"cjJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cjK" = (/obj/item/stack/sheet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjL" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjM" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjN" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjO" = (/obj/machinery/processor,/turf/open/floor/plating,/area/maintenance/aft) -"cjP" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/aft) -"cjQ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cjR" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft) -"cjS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/aft) -"cjT" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cjU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cjV" = (/turf/closed/wall/r_wall,/area/engine/chiefs_office) -"cjW" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cjX" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/chiefs_office) -"cjY" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/chiefs_office) -"cjZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/engine/break_room) -"cka" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side,/area/engine/break_room) -"ckb" = (/obj/machinery/light,/turf/open/floor/plasteel/yellow/side{dir = 6},/area/engine/break_room) -"ckc" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2; filter_type = "n2"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"ckd" = (/turf/closed/wall,/area/maintenance/incinerator) -"cke" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall,/area/maintenance/incinerator) -"ckf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/incinerator) -"ckg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/atmos{name = "Turbine Access"; req_access_txt = "32"},/turf/open/floor/plating,/area/maintenance/incinerator) -"ckh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/toy/minimeteor,/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/asmaint) -"cki" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/roller,/turf/open/floor/plating,/area/maintenance/asmaint) -"ckj" = (/obj/structure/disposalpipe/segment,/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"ckk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/c_tube,/turf/open/floor/plating,/area/maintenance/asmaint) -"ckl" = (/obj/structure/mopbucket,/obj/item/weapon/caution,/turf/open/floor/plating,/area/maintenance/asmaint) -"ckm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) -"ckn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/toxins/xenobiology) -"cko" = (/obj/machinery/door/airlock/maintenance{name = "Air Supply Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ckp" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/toxins/misc_lab) -"ckq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/toxins/misc_lab) -"ckr" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cks" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ckt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/maintenance/portsolar) -"cku" = (/turf/closed/wall/r_wall,/area/maintenance/portsolar) -"ckv" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft) -"ckw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"ckx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/aft) -"cky" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ckz" = (/obj/structure/closet/wardrobe/black,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"ckA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ckB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ckC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"ckD" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) -"ckE" = (/obj/machinery/suit_storage_unit/ce,/turf/open/floor/plasteel/warnwhite{dir = 4},/area/engine/chiefs_office) -"ckF" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"ckG" = (/obj/machinery/light{dir = 1},/obj/machinery/keycard_auth{pixel_x = 0; pixel_y = 24},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"ckH" = (/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"ckI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"ckJ" = (/obj/machinery/power/apc{cell_type = 5000; dir = 4; name = "CE Office APC"; pixel_x = 24; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"ckK" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/engineering) -"ckL" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 2; name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"ckM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/closed/wall,/area/engine/engineering) -"ckN" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/atmos) -"ckO" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/atmos) -"ckP" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"ckQ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ckR" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4; filter_type = "o2"; on = 1},/turf/open/floor/plasteel,/area/atmos) -"ckS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4; initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"ckT" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"ckU" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"ckV" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "atmospherics mix pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"ckW" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"ckX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plating/warnplate{dir = 1},/area/maintenance/incinerator) -"ckY" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0; pixel_y = 32},/obj/structure/disposalpipe/trunk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/incinerator) -"ckZ" = (/obj/machinery/power/smes{capacity = 9e+006; charge = 10000},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/incinerator) -"cla" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint) -"clb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"clc" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cle" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"clf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"clg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"clh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cli" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space/nearstation) -"clj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cll" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clm" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cln" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"clo" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clp" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"clr" = (/obj/structure/rack{dir = 1},/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cls" = (/obj/machinery/door/airlock/maintenance{name = "Research Delivery access"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clt" = (/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/asmaint2) -"clu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/asmaint2) -"clv" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"clw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/portsolar) -"clx" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/portsolar) -"cly" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/portsolar) -"clz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/portsolar) -"clA" = (/obj/machinery/camera{c_tag = "Aft Port Solar Access"; dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) -"clB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) -"clC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/aft) -"clD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"clE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"clF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"clG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"clH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"clI" = (/obj/machinery/computer/atmos_alert,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"clJ" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"clK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"clL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"clM" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"clN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"clO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"clP" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"clQ" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/red/side{dir = 10},/area/atmos) -"clR" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "n2_in"; name = "Nitrogen Supply Control"; output_tag = "n2_out"; sensors = list("n2_sensor" = "Tank")},/turf/open/floor/plasteel/red/side,/area/atmos) -"clS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 Outlet Pump"; on = 1},/turf/open/floor/plasteel/red/side{dir = 6},/area/atmos) -"clT" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/atmos) -"clU" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/blue/side{dir = 10},/area/atmos) -"clV" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "o2_in"; name = "Oxygen Supply Control"; output_tag = "o2_out"; sensors = list("o2_sensor" = "Tank")},/turf/open/floor/plasteel/blue/side{dir = 0},/area/atmos) -"clW" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 Outlet Pump"; on = 1},/turf/open/floor/plasteel/blue/side{dir = 6},/area/atmos) -"clX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/arrival{dir = 10},/area/atmos) -"clY" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441; input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; sensors = list("air_sensor" = "Tank")},/turf/open/floor/plasteel/arrival,/area/atmos) -"clZ" = (/obj/machinery/camera{c_tag = "Atmospherics South East"; dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air Outlet Pump"; on = 1},/turf/open/floor/plasteel/arrival{dir = 6},/area/atmos) -"cma" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Atmospherics External Airlock"; req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) -"cmb" = (/turf/open/floor/plating,/area/atmos) -"cmc" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Atmospherics External Airlock"; req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) -"cmd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/space,/area/space/nearstation) -"cme" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/closed/wall,/area/maintenance/incinerator) -"cmf" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmg" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to MiniSat"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmj" = (/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cml" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/machinery/airalarm{desc = "This particular atmos control unit appears to have no access restrictions."; dir = 8; icon_state = "alarm0"; locked = 0; name = "all-access air alarm"; pixel_x = 24; req_access = "0"; req_one_access = "0"},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cmm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cmq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cms" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmt" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmu" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmw" = (/obj/structure/rack{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmz" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmA" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmB" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmC" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"cmD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cmE" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cmF" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cmG" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cmH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmJ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmN" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cmO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/aft) -"cmP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft) -"cmQ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft) -"cmR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cmS" = (/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j2s"; sortType = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cmT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cmU" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) -"cmV" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/open/floor/plating,/area/engine/engineering) -"cmW" = (/obj/machinery/power/apc{cell_type = 15000; dir = 1; name = "Engineering APC"; pixel_x = 0; pixel_y = 25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cmX" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cmY" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cmZ" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/table,/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cna" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cnb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cnc" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/yellow/side,/area/engine/engineering) -"cnd" = (/turf/closed/wall,/area/engine/engineering) -"cne" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0; name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel,/area/engine/engineering) -"cnf" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel,/area/engine/engineering) -"cng" = (/obj/machinery/computer/station_alert,/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -10; req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; pixel_y = 0; req_access_txt = "11"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 10; req_access_txt = "24"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cnh" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cni" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cnj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cnk" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cnl" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cnm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cnn" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cno" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"cnp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/atmos) -"cnq" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cnr" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cns" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cnt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/atmos) -"cnu" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "plasma tank pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnw" = (/obj/machinery/atmospherics/pipe/manifold4w/general,/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnx" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Incinerator"; on = 0},/mob/living/simple_animal/mouse,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cny" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnz" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{name = "output gas connector port"},/obj/machinery/portable_atmospherics/canister,/obj/structure/sign/nosmoking_2{pixel_x = 28},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cnB" = (/obj/structure/table,/obj/item/weapon/cartridge/medical,/turf/open/floor/plating,/area/maintenance/asmaint) -"cnC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset/full,/turf/open/floor/plating,/area/maintenance/asmaint) -"cnD" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/asmaint) -"cnE" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/aft) -"cnF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft) -"cnG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cnH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cnI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cnJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnK" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cnM" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnN" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnO" = (/obj/machinery/power/apc{dir = 8; name = "Science Maintenance APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/camera{c_tag = "Aft Starboard Solar Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnP" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnQ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cnR" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cnS" = (/obj/machinery/power/solar_control{id = "portsolar"; name = "Aft Port Solar Control"; track = 0},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) -"cnT" = (/turf/open/floor/plating,/area/maintenance/portsolar) -"cnU" = (/obj/machinery/power/apc{dir = 4; name = "Aft Port Solar APC"; pixel_x = 23; pixel_y = 2},/obj/machinery/camera{c_tag = "Aft Port Solar Control"; dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) -"cnV" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) -"cnW" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cnX" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cnY" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/turf/open/floor/plating,/area/engine/engineering) -"cnZ" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/engine/engineering) -"coa" = (/turf/open/floor/plating,/area/engine/engineering) -"cob" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/turf/open/floor/plating,/area/engine/engineering) -"coc" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"cod" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"coe" = (/turf/open/floor/plasteel,/area/engine/engineering) -"cof" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"cog" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"coh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"coi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"coj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) -"cok" = (/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 4; network = list("SS13")},/obj/machinery/airalarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/computer/card/minor/ce,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"col" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"com" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"con" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 27},/obj/structure/filingcabinet/chestdrawer,/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"coo" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/engineering) -"cop" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/engineering) -"coq" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/engineering) -"cor" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space/nearstation) -"cos" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space/nearstation) -"cot" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4; name = "input gas connector port"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cou" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "input port pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cov" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cow" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cox" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"coy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Incinerator to Output"; on = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"coz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/incinerator) -"coA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/asmaint) -"coB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/closed/wall,/area/maintenance/asmaint) -"coC" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/shard,/turf/open/floor/plating,/area/maintenance/asmaint) -"coD" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/asmaint) -"coE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/asmaint) -"coF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"coG" = (/obj/structure/chair,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"coH" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"coI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft) -"coJ" = (/obj/structure/closet,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"coK" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"coL" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"coM" = (/obj/structure/rack,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"coN" = (/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) -"coO" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"coP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) -"coQ" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"coR" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"coS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"coT" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) -"coU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"coV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"coW" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Engineering Secure Storage"; dir = 4; network = list("SS13")},/turf/open/floor/plating,/area/engine/engineering) -"coX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"coY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"coZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cpa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cpb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cpc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cpd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cpe" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cpf" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/machinery/light_switch{pixel_x = 27},/obj/item/weapon/cartridge/atmos,/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cpg" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"cph" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 1; name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cpi" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/engineering) -"cpj" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"cpk" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/atmos) -"cpl" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/atmos) -"cpm" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/incinerator) -"cpn" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cpo" = (/obj/machinery/atmospherics/components/binary/valve{name = "Mix to Space"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cpp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cpq" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cpr" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cps" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) -"cpt" = (/obj/machinery/door/airlock/maintenance{name = "Biohazard Disposals"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cpu" = (/obj/structure/grille,/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"cpv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint2) -"cpw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cpx" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cpy" = (/obj/machinery/power/apc{dir = 8; name = "Aft Starboard Solar APC"; pixel_x = -26; pixel_y = 3},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cpz" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cpA" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cpB" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cpC" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cpD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cpE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cpF" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cpG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cpH" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) -"cpI" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) -"cpJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cpK" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell/high/plus,/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/engineering) -"cpL" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engine/engineering) -"cpM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cpN" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/computer/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/open/floor/plasteel,/area/engine/engineering) -"cpO" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/engineering) -"cpP" = (/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel,/area/engine/engineering) -"cpQ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cpR" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cpS" = (/obj/machinery/door/airlock/glass_command{name = "Chief Engineer"; req_access_txt = "56"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel/neutral{dir = 2},/area/engine/chiefs_office) -"cpT" = (/obj/structure/grille,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cpU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/chiefs_office) -"cpV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/engineering) -"cpW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"cpX" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/engine/engineering) -"cpY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "n2_in"},/turf/open/floor/engine/n2,/area/atmos) -"cpZ" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "n2_sensor"},/turf/open/floor/engine/n2,/area/atmos) -"cqa" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "n2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/n2,/area/atmos) -"cqb" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "o2_in"},/turf/open/floor/engine/o2,/area/atmos) -"cqc" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "o2_sensor"},/turf/open/floor/engine/o2,/area/atmos) -"cqd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; frequency = 1441; id_tag = "o2_out"; initialize_directions = 1; internal_pressure_bound = 4000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/o2,/area/atmos) -"cqe" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "air_in"},/turf/open/floor/engine/air,/area/atmos) -"cqf" = (/obj/machinery/air_sensor{frequency = 1441; id_tag = "air_sensor"},/turf/open/floor/engine/air,/area/atmos) -"cqg" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1; external_pressure_bound = 0; frequency = 1441; icon_state = "vent_map"; id_tag = "air_out"; internal_pressure_bound = 2000; on = 1; pressure_checks = 2; pump_direction = 0},/turf/open/floor/engine/air,/area/atmos) -"cqh" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -29},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/incinerator) -"cqi" = (/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = -31},/obj/machinery/computer/turbine_computer{id = "incineratorturbine"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cqj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cqk" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 1; name = "turbine vent monitor"; network = list("Turbine"); pixel_x = 0; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cql" = (/obj/machinery/button/door{id = "auxincineratorvent"; name = "Auxiliary Vent Control"; pixel_x = 6; pixel_y = -24; req_access_txt = "32"},/obj/machinery/button/door{id = "turbinevent"; name = "Turbine Vent Control"; pixel_x = -6; pixel_y = -24; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cqm" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve{dir = 4; name = "Incinerator to Space"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cqn" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "incinerator_airlock_exterior"; idSelf = "incinerator_access_control"; idInterior = "incinerator_airlock_interior"; name = "Incinerator Access Console"; pixel_x = 6; pixel_y = -26; req_access_txt = "12"},/obj/machinery/button/ignition{id = "Incinerator"; pixel_x = -6; pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator) -"cqo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cqp" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"cqq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cqr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/asmaint) -"cqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cqt" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint) -"cqu" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/aft) -"cqv" = (/obj/structure/rack,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cqA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqB" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqC" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control"; dir = 4; network = list("SS13")},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cqD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cqE" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cqF" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/aft) -"cqG" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cqH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cqI" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault{dir = 1},/area/engine/engine_smes) -"cqJ" = (/turf/open/floor/plasteel/vault{dir = 8},/area/engine/engine_smes) -"cqK" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault{dir = 4},/area/engine/engine_smes) -"cqL" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"cqM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/closed/wall,/area/engine/engineering) -"cqN" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cqO" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cqP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage"; req_access_txt = "11"; req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cqQ" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering) -"cqR" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/engineering) -"cqS" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"cqT" = (/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/engine/engineering) -"cqU" = (/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/engine/engineering) -"cqV" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"cqW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/engine/engineering) -"cqX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cqY" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/engineering) -"cqZ" = (/turf/open/floor/engine/n2,/area/atmos) -"cra" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine/n2,/area/atmos) -"crb" = (/turf/open/floor/engine/o2,/area/atmos) -"crc" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine/o2,/area/atmos) -"crd" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/open/floor/engine/air,/area/atmos) -"cre" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/landmark/event_spawn,/turf/open/floor/engine/air,/area/atmos) -"crf" = (/turf/open/floor/engine/air,/area/atmos) -"crg" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/incinerator) -"crh" = (/turf/closed/wall/r_wall,/area/maintenance/incinerator) -"cri" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/closed/wall/r_wall,/area/maintenance/incinerator) -"crj" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/engine,/area/maintenance/incinerator) -"crk" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/incinerator) -"crl" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"crm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"crn" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-y"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cro" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"crp" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"crq" = (/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"crr" = (/obj/structure/closet/toolcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"crs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"crt" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cru" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"crv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/asmaint2) -"crw" = (/obj/machinery/power/solar_control{id = "starboardsolar"; name = "Aft Starboard Solar Control"; track = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"crx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cry" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"crz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"crA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/open/floor/plasteel/vault{dir = 8},/area/engine/engine_smes) -"crB" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"crC" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/engine/engine_smes) -"crD" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Engineering"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel/bot,/area/engine/engineering) -"crE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"crF" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = -32; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"crG" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/yellow/side{dir = 9},/area/engine/engineering) -"crH" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"crI" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"crJ" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/engine/engineering) -"crK" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/engine/engineering) -"crL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"crM" = (/obj/machinery/requests_console{announcementConsole = 0; department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"crN" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/engineering) -"crO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/engine/engineering) -"crP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"crQ" = (/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/open/floor/plasteel,/area/engine/engineering) -"crR" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"crS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"crT" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/engineering) -"crU" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/atmos) -"crV" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/atmos) -"crW" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/atmos) -"crX" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Incinerator Output Pump"; on = 1},/turf/open/space,/area/maintenance/incinerator) -"crY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; on = 1},/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_exterior"; idSelf = "incinerator_access_control"; layer = 3.1; name = "Incinerator airlock control"; pixel_x = 8; pixel_y = -24},/obj/machinery/light/small{dir = 8},/obj/structure/sign/fire{pixel_x = -32; pixel_y = 0},/turf/open/floor/engine,/area/maintenance/incinerator) -"crZ" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/engine,/area/maintenance/incinerator) -"csa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; on = 1},/obj/structure/sign/fire{pixel_x = 32; pixel_y = 0},/obj/machinery/doorButtons/access_button{idSelf = "incinerator_access_control"; idDoor = "incinerator_airlock_interior"; name = "Incinerator airlock control"; pixel_x = -8; pixel_y = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/engine,/area/maintenance/incinerator) -"csb" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"csc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"csd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"cse" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"csf" = (/obj/machinery/light/small,/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/clipboard,/turf/open/floor/plating,/area/maintenance/asmaint) -"csg" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint) -"csh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"csi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboardsolar) -"csj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"csk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"csl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2; on = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csm" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault{dir = 4},/area/engine/engine_smes) -"csn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/engine/engine_smes) -"cso" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault{dir = 1},/area/engine/engine_smes) -"csp" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera{c_tag = "SMES Room"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csq" = (/obj/machinery/door/window/southleft{base_state = "left"; dir = 2; icon_state = "left"; name = "Engineering Delivery"; req_access_txt = "10"},/turf/open/floor/plasteel/delivery,/area/engine/engineering) -"csr" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering) -"css" = (/obj/machinery/camera{c_tag = "Engineering West"; dir = 4; network = list("SS13")},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/engine/engineering) -"cst" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"csu" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"csv" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the singularity chamber."; dir = 1; layer = 4; name = "Singularity Engine Telescreen"; network = list("Singularity"); pixel_x = 0; pixel_y = -30},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"csw" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"csx" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) -"csy" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/engine/engineering) -"csz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/space,/area/maintenance/incinerator) -"csA" = (/obj/machinery/door/airlock/glass{autoclose = 0; frequency = 1449; heat_proof = 1; icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/engine,/area/maintenance/incinerator) -"csB" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/closed/wall,/area/maintenance/asmaint) -"csC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Waste Out"; on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"csD" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/open/floor/plating,/area/maintenance/asmaint) -"csE" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"csF" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"csG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"csH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csI" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csJ" = (/obj/machinery/door/window{name = "SMES Chamber"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csK" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csL" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/black,/area/engine/engine_smes) -"csM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"csN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"csO" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera{c_tag = "SMES Access"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"csP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/loadingarea,/area/engine/engineering) -"csQ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/engineering) -"csR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csS" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"csY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"csZ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/firstaid/fire,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cta" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"ctc" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"ctd" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/bot{dir = 2},/area/engine/engineering) -"cte" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"ctf" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5; pixel_y = 6},/obj/item/weapon/airlock_painter,/turf/open/floor/plasteel,/area/engine/engineering) -"ctg" = (/obj/machinery/camera{c_tag = "Engineering East"; dir = 8; network = list("SS13"); pixel_x = 0; pixel_y = 0},/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/engine/engineering) -"cth" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"cti" = (/obj/machinery/igniter{icon_state = "igniter0"; id = "Incinerator"; luminosity = 2; on = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"ctj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 0; initialize_directions = 1; internal_pressure_bound = 4000; on = 0; pressure_checks = 2; pump_direction = 0},/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 = -32},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"ctk" = (/obj/machinery/door/poddoor{id = "auxincineratorvent"; name = "Auxiliary Incinerator Vent"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"ctl" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"ctm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cto" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctp" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"ctr" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 9},/area/engine/engine_smes) -"cts" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 1},/area/engine/engine_smes) -"ctt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/warning{dir = 1},/area/engine/engine_smes) -"ctu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/warning{dir = 1},/area/engine/engine_smes) -"ctv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/warning{dir = 5},/area/engine/engine_smes) -"ctw" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 4; name = "SMES Room"; req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/engine_smes) -"ctx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"cty" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"ctz" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 8; name = "SMES Room"; req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/delivery{name = "floor"},/area/engine/engine_smes) -"ctA" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/engineering) -"ctB" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"ctC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"ctD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctE" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctG" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctH" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"ctI" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ctK" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"ctL" = (/turf/open/floor/plating/warnplate{dir = 9},/area/engine/engineering) -"ctM" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"ctN" = (/obj/machinery/camera{c_tag = "Engineering Center"; dir = 2; pixel_x = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"ctO" = (/turf/open/floor/plating/warnplate{dir = 5},/area/engine/engineering) -"ctP" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) -"ctQ" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/engineering) -"ctR" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"ctS" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"ctT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"ctU" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/open/floor/plasteel/warning{dir = 5},/area/engine/engineering) -"ctV" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"ctW" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4) -"ctX" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4) -"ctY" = (/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 1; luminosity = 2},/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera{c_tag = "Turbine Chamber"; dir = 4; network = list("Turbine")},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"ctZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/space,/area/space/nearstation) -"cua" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cub" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"cuc" = (/turf/open/floor/plasteel,/area/engine/engine_smes) -"cud" = (/turf/open/floor/plasteel/warning/corner{dir = 2},/area/engine/engine_smes) -"cue" = (/obj/machinery/light,/turf/open/floor/plasteel/warning,/area/engine/engine_smes) -"cuf" = (/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/warning{dir = 6},/area/engine/engine_smes) -"cug" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/warning{dir = 8},/area/engine/engine_smes) -"cuh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/warning{dir = 4},/area/engine/engine_smes) -"cui" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_x = -32; pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cuj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cuk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cul" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) -"cum" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"cun" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"cuo" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cup" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cuq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plasteel/bot{dir = 2},/area/engine/engineering) -"cur" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cus" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) -"cut" = (/obj/structure/particle_accelerator/end_cap,/turf/open/floor/plating,/area/engine/engineering) -"cuu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/engine/engineering) -"cuv" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/open/floor/plating/warnplate{dir = 4},/area/engine/engineering) -"cuw" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cux" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cuy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cuz" = (/turf/open/floor/plasteel/warning{dir = 4},/area/engine/engineering) -"cuA" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "Escape Pod Four"; req_access = null; req_access_txt = "0"},/turf/open/floor/plating,/area/engine/engineering) -"cuB" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "Escape Pod Four"; req_access = null; req_access_txt = "0"; shuttledocked = 1},/turf/open/floor/plating,/area/engine/engineering) -"cuC" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4; id = "pod4"; name = "escape pod 4"; port_angle = 180; preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4) -"cuD" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6; pixel_y = -32},/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4) -"cuE" = (/obj/machinery/computer/shuttle/pod{pixel_y = -32; possible_destinations = "pod_asteroid4"; shuttleId = "pod4"},/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0; layer = 3; pixel_x = 0; pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4) -"cuF" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_4) -"cuG" = (/obj/docking_port/stationary/random{dir = 4; id = "pod_asteroid4"; name = "asteroid"},/turf/open/space,/area/space) -"cuH" = (/obj/machinery/power/turbine{luminosity = 2},/obj/structure/cable/yellow,/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"cuI" = (/obj/item/weapon/wrench,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"cuJ" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"cuK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table_frame,/obj/item/weapon/wirerod,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cuL" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cuM" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space) -"cuN" = (/obj/machinery/door/airlock{name = "Observatory Access"},/turf/open/floor/plating,/area/maintenance/aft) -"cuO" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "SMES room APC"; pixel_y = -24},/turf/open/floor/plasteel/warning{dir = 10},/area/engine/engine_smes) -"cuP" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/warning,/area/engine/engine_smes) -"cuQ" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/item/weapon/stock_parts/cell/high/plus,/turf/open/floor/plasteel/warning{dir = 6},/area/engine/engine_smes) -"cuR" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 4; network = list("SS13")},/turf/open/floor/plasteel,/area/engine/engineering) -"cuS" = (/obj/structure/table,/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) -"cuT" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuV" = (/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuW" = (/obj/item/clothing/glasses/meson,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuX" = (/obj/structure/chair/stool,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuY" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cuZ" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cva" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/engine/engineering) -"cvb" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/open/floor/plating,/area/engine/engineering) -"cvc" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plating,/area/engine/engineering) -"cvd" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = 25; pixel_y = 0; req_access_txt = "11"},/turf/open/floor/plating/warnplate{dir = 4},/area/engine/engineering) -"cve" = (/obj/machinery/button/door{id = "Singularity"; name = "Shutters Control"; pixel_x = -25; pixel_y = 0; req_access_txt = "11"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cvf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cvg" = (/obj/structure/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/warning{dir = 2},/area/engine/engineering) -"cvh" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/engineering) -"cvi" = (/obj/structure/sign/pods{pixel_x = 32; pixel_y = 0},/turf/open/floor/plasteel/warning{dir = 6},/area/engine/engineering) -"cvj" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod"; dir = 4; network = list("SS13")},/turf/open/floor/plating,/area/engine/engineering) -"cvk" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space/nearstation) -"cvl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/incinerator) -"cvm" = (/obj/structure/sign/fire{pixel_x = 0; pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/incinerator) -"cvn" = (/obj/machinery/door/poddoor{id = "turbinevent"; name = "Turbine Vent"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator) -"cvo" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cvp" = (/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/aft) -"cvq" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cvr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; external_pressure_bound = 101.325; on = 1; pressure_checks = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cvs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cvt" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cvu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/engineering) -"cvv" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/turf/open/floor/plating,/area/engine/engineering) -"cvw" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity"; name = "radiation shutters"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cvx" = (/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/crowbar,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cvy" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/engine/engineering) -"cvz" = (/obj/structure/particle_accelerator/power_box,/turf/open/floor/plating,/area/engine/engineering) -"cvA" = (/obj/item/weapon/screwdriver,/turf/open/floor/plating,/area/engine/engineering) -"cvB" = (/turf/open/floor/plating/warnplate{dir = 4},/area/engine/engineering) -"cvC" = (/obj/machinery/door/airlock/external{name = "External Access"; req_access = null; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cvD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cvE" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cvF" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cvG" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/aft) -"cvH" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cvI" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel,/area/engine/engineering) -"cvJ" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) -"cvK" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/open/floor/plasteel,/area/engine/engineering) -"cvL" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/engineering) -"cvM" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) -"cvN" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) -"cvO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32},/turf/open/floor/plating,/area/engine/engineering) -"cvP" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"cvQ" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable/yellow,/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"cvR" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable/yellow,/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"cvS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cvT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cvU" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/open/floor/plating,/area/engine/engineering) -"cvV" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/open/floor/plating,/area/engine/engineering) -"cvW" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/open/floor/plating,/area/engine/engineering) -"cvX" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating/warnplate{dir = 1},/area/engine/engineering) -"cvY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32},/turf/open/floor/plating,/area/engine/engineering) -"cvZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) -"cwa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"cwb" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cwc" = (/obj/machinery/camera{c_tag = "Engineering MiniSat Access"; dir = 4; network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cwd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cwe" = (/obj/structure/transit_tube{icon_state = "Block"},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cwf" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"cwg" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwh" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cwi" = (/obj/structure/table,/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plating,/area/maintenance/aft) -"cwj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/engine/engineering) -"cwk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/engineering) -"cwl" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cwm" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cwn" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cwo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/engineering) -"cwp" = (/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/open/floor/plating/warnplate{dir = 10},/area/engine/engineering) -"cwq" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating/warnplate,/area/engine/engineering) -"cwr" = (/obj/item/weapon/wirecutters,/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/open/floor/plating/warnplate,/area/engine/engineering) -"cws" = (/turf/open/floor/plating/warnplate,/area/engine/engineering) -"cwt" = (/turf/open/floor/plating/warnplate{dir = 6},/area/engine/engineering) -"cwu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"cwv" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cww" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cwx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cwy" = (/obj/structure/transit_tube/station{dir = 8; icon_state = "closed"; reverse_launch = 1},/obj/structure/transit_tube_pod,/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cwz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space) -"cwA" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwB" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/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},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwC" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwD" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwF" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cwG" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cwH" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cwI" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North-West"; dir = 2; network = list("Singularity")},/obj/machinery/power/grounding_rod,/turf/open/floor/plating/airless,/area/engine/engineering) -"cwJ" = (/obj/machinery/power/grounding_rod,/turf/open/floor/plating/airless,/area/space/nearstation) -"cwK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cwL" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity North East"; dir = 2; network = list("Singularity")},/obj/machinery/power/grounding_rod,/turf/open/floor/plating/airless,/area/engine/engineering) -"cwM" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cwN" = (/obj/structure/grille,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cwO" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/open/floor/plasteel,/area/engine/engineering) -"cwP" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/engine/engineering) -"cwQ" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engineering) -"cwR" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/open/floor/plating/warnplate{dir = 8},/area/engine/engineering) -"cwS" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"cwT" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cwU" = (/turf/open/floor/plating/airless,/area/engine/engineering) -"cwV" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/open/floor/plating/airless,/area/space/nearstation) -"cwW" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plating/airless,/area/space/nearstation) -"cwX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/open/floor/plating/airless,/area/space/nearstation) -"cwY" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/open/floor/plating/airless,/area/space/nearstation) -"cwZ" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxa" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/engine/engineering) -"cxb" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 32},/turf/open/floor/plating,/area/engine/engineering) -"cxc" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cxd" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cxe" = (/obj/machinery/power/emitter{anchored = 1; dir = 4; state = 2},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cxf" = (/turf/open/floor/plating/airless/warnplate{dir = 8},/area/engine/engineering) -"cxg" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"cxh" = (/obj/machinery/field/generator{anchored = 1; state = 2},/turf/open/floor/plating/airless,/area/space/nearstation) -"cxi" = (/turf/open/floor/plating/airless/warnplate{dir = 4},/area/engine/engineering) -"cxj" = (/obj/machinery/power/emitter{anchored = 1; dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plating/airless,/area/engine/engineering) -"cxk" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cxl" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/engineering) -"cxm" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/engine/engineering) -"cxn" = (/obj/structure/transit_tube{icon_state = "N-SE"},/turf/open/space,/area/space) -"cxo" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/open/space,/area/space) -"cxp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxq" = (/obj/item/device/multitool,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxr" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"; d1 = 1; d2 = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"cxs" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space/nearstation) -"cxt" = (/obj/item/weapon/wirecutters,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"cxu" = (/obj/structure/cable/yellow{icon_state = "0-4"; d2 = 4},/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space/nearstation) -"cxv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/open/floor/plating/airless,/area/space/nearstation) -"cxw" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/open/space,/area/space) -"cxx" = (/obj/structure/transit_tube{icon_state = "E-NW"},/turf/open/space,/area/space) -"cxy" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/open/space,/area/space) -"cxz" = (/obj/structure/transit_tube,/turf/open/space,/area/space) -"cxA" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/open/space,/area/space) -"cxB" = (/obj/structure/transit_tube,/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space) -"cxC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxD" = (/obj/structure/transit_tube,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxE" = (/obj/structure/transit_tube/station{reverse_launch = 1},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxF" = (/obj/structure/transit_tube{dir = 8; icon_state = "Block"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxI" = (/obj/effect/landmark/event_spawn,/turf/open/space,/area/space/nearstation) -"cxJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxL" = (/turf/open/floor/plating/warnplate{dir = 1},/area/turret_protected/aisat_interior) -"cxM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plating/warnplate{dir = 1},/area/turret_protected/aisat_interior) -"cxN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxO" = (/turf/open/floor/plating/airless/warnplate{dir = 9},/area/space/nearstation) -"cxP" = (/turf/open/floor/plating/airless/warnplate{dir = 1},/area/space/nearstation) -"cxQ" = (/turf/open/floor/plating/airless/warnplate{dir = 5},/area/space/nearstation) -"cxR" = (/obj/item/weapon/crowbar,/turf/open/space,/area/space/nearstation) -"cxS" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 4; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxT" = (/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 = 32},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxU" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 8; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxV" = (/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cxX" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cxY" = (/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cxZ" = (/obj/machinery/the_singularitygen,/turf/open/floor/plating/airless/warnplate{dir = 8},/area/space/nearstation) -"cya" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless,/area/space/nearstation) -"cyb" = (/obj/machinery/the_singularitygen/tesla,/turf/open/floor/plating/airless/warnplate{dir = 4},/area/space/nearstation) -"cyc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cyd" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space) -"cye" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{pixel_y = -32},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyg" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/obj/machinery/light/small,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyh" = (/obj/machinery/camera{c_tag = "MiniSat Pod Access"; dir = 1; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2; on = 1},/obj/machinery/light/small,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyi" = (/obj/item/weapon/weldingtool,/turf/open/space,/area/space/nearstation) -"cyj" = (/turf/open/floor/plating/airless/warnplate{dir = 10},/area/space/nearstation) -"cyk" = (/turf/open/floor/plating/airless/warnplate{dir = 2},/area/space/nearstation) -"cyl" = (/turf/open/floor/plating/airless/warnplate{dir = 6},/area/space/nearstation) -"cym" = (/turf/closed/wall,/area/turret_protected/aisat_interior) -"cyn" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Foyer"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/turret_protected/aisat_interior) -"cyp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/turret_protected/aisat_interior) -"cyq" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating/airless,/area/turret_protected/aisat_interior) -"cyr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cys" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cyt" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/folder{pixel_x = 3},/obj/item/weapon/pen,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cyu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyv" = (/obj/structure/rack{dir = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/off{pixel_y = 4},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cyw" = (/obj/item/device/radio/off,/turf/open/floor/plating/airless,/area/engine/engineering) -"cyx" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cyy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyA" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyC" = (/obj/machinery/door/poddoor/shutters{id = "teledoor"; name = "MiniSat Teleport Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyD" = (/obj/machinery/button/door{id = "teledoor"; name = "MiniSat Teleport Shutters Control"; pixel_x = 0; pixel_y = 25; req_access_txt = "17;65"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/darkwarning{dir = 4},/area/turret_protected/aisat_interior) -"cyE" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyF" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cyG" = (/obj/structure/grille,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/engineering) -"cyH" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cyI" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyJ" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/effect/landmark/start{name = "Cyborg"},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyL" = (/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyM" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Teleporter"; req_access_txt = "17;65"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyN" = (/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel/darkwarning{dir = 4},/area/turret_protected/aisat_interior) -"cyO" = (/obj/machinery/teleport/station,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cyP" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering) -"cyQ" = (/obj/structure/cable/yellow{icon_state = "0-2"; d2 = 2},/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space/nearstation) -"cyR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/space,/area/space) -"cyS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/lattice,/turf/open/space,/area/space) -"cyT" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = 0; pixel_y = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cyU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4; on = 1},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyV" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/turret_protected/aisat_interior) -"cyX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cyY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/turret_protected/aisat_interior) -"cyZ" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter"; dir = 1; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/darkwarning{dir = 4},/area/turret_protected/aisat_interior) -"cza" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"czb" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"czc" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity West"; dir = 1; network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/engineering) -"czd" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/open/floor/plating/airless,/area/space/nearstation) -"cze" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/open/floor/plating/airless,/area/space/nearstation) -"czf" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/open/floor/plating/airless,/area/space/nearstation) -"czg" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity East"; dir = 1; network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/engineering) -"czh" = (/turf/closed/wall/r_wall,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czi" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czj" = (/obj/structure/rack{dir = 1},/obj/machinery/status_display{pixel_y = -32},/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"czk" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 0; pixel_y = -29},/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; dir = 1; network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czn" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/structure/table,/obj/item/weapon/phone{pixel_x = -3; pixel_y = 3},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"czo" = (/turf/closed/wall/r_wall,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czp" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) -"czq" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/rack,/obj/item/weapon/wrench,/obj/item/weapon/crowbar/red,/obj/item/clothing/head/welding,/turf/open/floor/plating,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czr" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czs" = (/turf/closed/wall/r_wall,/area/turret_protected/aisat_interior) -"czt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/aisat_interior) -"czv" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czw" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plating/warnplate/corner{tag = "icon-warnplatecorner"; dir = 2},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czx" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2; name = "Mix to MiniSat"},/turf/open/floor/plating/warnplate{icon_plating = "warnplate"},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 0},/turf/open/floor/plating/warnplate{icon_plating = "warnplate"},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czz" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/turf/open/floor/plating/warnplate{icon_plating = "warnplate"},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czA" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/turret_protected/aisat_interior) -"czB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czC" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 8; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = 9; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/aisat_interior) -"czD" = (/obj/structure/showcase{density = 0; desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze."; dir = 4; icon = 'icons/mob/robots.dmi'; icon_state = "robot_old"; name = "Cyborg Statue"; pixel_x = -9; pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 30},/turf/open/floor/plating/warnplate{icon_plating = "warnplate"},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czE" = (/turf/open/floor/plating/warnplate{icon_plating = "warnplate"},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/clothing/head/welding,/obj/item/stack/sheet/mineral/plasma{amount = 35; layer = 3.1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/open/floor/plating/warnplate/corner{dir = 1},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czG" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Atmospherics"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/space_heater,/turf/open/floor/plating/warnplate{dir = 4},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czI" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czJ" = (/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28; pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/aisat_interior) -"czL" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Antechamber North"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/turret_protected/aisat_interior) -"czM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/aisat_interior) -"czO" = (/obj/machinery/light/small{dir = 8},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czP" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8; on = 1; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Service Bay"; dir = 8; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/airalarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plating/warnplate{dir = 8},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"czS" = (/obj/machinery/power/apc{dir = 8; name = "MiniSat Atmospherics APC"; pixel_x = -27; pixel_y = 0},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating/warnplate{dir = 4},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"czW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Atmospherics"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czY" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"czZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Service Bay"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_y = 0},/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAe" = (/obj/machinery/power/apc{dir = 4; name = "MiniSat Service Bay APC"; pixel_x = 27; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating/warnplate{dir = 8},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAf" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"cAg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/darkblue/corner,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"cAh" = (/obj/structure/sign/securearea{pixel_x = -32; pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/turret_protected/aisat_interior) -"cAi" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAj" = (/obj/structure/sign/securearea{pixel_x = 32; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/turretid{control_area = "AI Satellite Antechamber"; enabled = 1; icon_state = "control_standby"; name = "AI Antechamber Turret Control"; pixel_x = 0; pixel_y = -24; req_access = list(65)},/turf/open/floor/plasteel/darkblue/corner,/area/turret_protected/aisat_interior) -"cAk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAl" = (/turf/open/floor/plasteel/black,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAm" = (/mob/living/simple_animal/bot/cleanbot,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAn" = (/turf/closed/wall,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"cAo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/turret_protected/AIsatextAS{name = "AI Satellite Atmospherics"}) -"cAp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAq" = (/turf/closed/wall,/area/turret_protected/AIsatextFP{name = "AI Satellite Service"}) -"cAr" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_southmaint"; name = "south maintenance airlock"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space) -"cAs" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/space,/area/space) -"cAt" = (/obj/structure/window/reinforced,/turf/open/space,/area/space) -"cAu" = (/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/space,/area/space) -"cAv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/turret_protected/aisat_interior) -"cAw" = (/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cAx" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAy" = (/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/turret_protected/aisat_interior) -"cAz" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/aisat_interior) -"cAB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cAD" = (/obj/machinery/door/airlock/external{req_access_txt = "65;13"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAE" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAF" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAG" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light/small,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAH" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAI" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cAK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8; on = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/turret_protected/aisat_interior) -"cAM" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/aisat_interior) -"cAO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cAP" = (/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cAQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAS" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAT" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) -"cAU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) -"cAV" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cAW" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/closed/wall,/area/space) -"cAX" = (/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) -"cAY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; locked = 0; pixel_x = -23; pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cAZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cBa" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/turret_protected/aisat_interior) -"cBb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cBc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{dir = 4; name = "MiniSat Foyer APC"; pixel_x = 27; pixel_y = 0},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cBd" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space) -"cBe" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/closed/wall,/area/space) -"cBf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cBg" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) -"cBh" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) -"cBi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space) -"cBj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cBk" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/turret_protected/aisat_interior) -"cBl" = (/turf/open/floor/plasteel/darkblue/side,/area/turret_protected/aisat_interior) -"cBm" = (/obj/machinery/camera{c_tag = "MiniSat Antechamber South"; dir = 1; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/open/floor/plasteel/darkblue/side,/area/turret_protected/aisat_interior) -"cBn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/aisat_interior) -"cBo" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space) -"cBp" = (/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cBq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cBr" = (/obj/machinery/door/airlock/highsecurity{name = "AI Core"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cBt" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space) -"cBu" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior Northwest"; dir = 8; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cBv" = (/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/space) -"cBw" = (/turf/closed/wall,/area/space) -"cBx" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBy" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBz" = (/obj/machinery/camera/motion{c_tag = "AI Chamber North"; dir = 2; network = list("MiniSat")},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/ai) -"cBA" = (/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/ai) -"cBB" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/vault{dir = 8},/area/turret_protected/ai) -"cBC" = (/obj/machinery/status_display{density = 0; layer = 4; pixel_x = 0; pixel_y = 32},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBD" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBE" = (/obj/structure/window/reinforced{dir = 4},/turf/closed/wall,/area/space) -"cBF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior Northeast"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cBG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBH" = (/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBI" = (/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBK" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBL" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/obj/machinery/flasher{pixel_y = -24},/obj/machinery/light,/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBM" = (/turf/closed/wall,/area/turret_protected/ai) -"cBN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cBO" = (/turf/closed/wall/r_wall,/area/space) -"cBP" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{listening = 0; name = "Custom Channel"; pixel_x = -27; pixel_y = 0},/obj/item/device/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = 27},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 0; pixel_y = -27},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBQ" = (/obj/machinery/ai_slipper{icon_state = "motion0"; uses = 10},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBR" = (/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 32; pixel_y = 32},/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 32},/obj/item/device/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = 5},/obj/item/device/radio/intercom{listening = 0; name = "Custom Channel"; pixel_y = 27},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = -27; pixel_y = 5},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBS" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{listening = 0; name = "Custom Channel"; pixel_x = 27; pixel_y = 0},/obj/item/device/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 0; pixel_y = -27},/obj/item/device/radio/intercom{broadcasting = 0; freerange = 1; listening = 1; name = "Common Channel"; pixel_x = 0; pixel_y = 27},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cBU" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 1; name = "AI Chamber APC"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBV" = (/obj/machinery/door/window/southright{name = "AI Core Door"; req_access_txt = "16"},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBW" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/turretid{name = "AI Core Turret Control"; pixel_x = 4; pixel_y = 28},/obj/machinery/flasher{pixel_x = -10; pixel_y = 28},/obj/machinery/camera/motion{c_tag = "AI Chamber South"; dir = 2; network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cBY" = (/obj/machinery/light,/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cBZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/airalarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cCa" = (/obj/machinery/hologram/holopad,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cCb" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cCc" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_se"; name = "southeast of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space) -"cCd" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior Southwest"; dir = 8; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCe" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cCf" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/turret_protected/ai) -"cCg" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cCh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior Southeast"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCi" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) -"cCj" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) -"cCk" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) -"cCl" = (/turf/closed/wall,/area/ai_monitored/storage/secure) -"cCm" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cCn" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cCo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) -"cCp" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cCq" = (/obj/structure/rack{dir = 1},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/clothing/head/welding,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cCr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/space) -"cCs" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space) -"cCt" = (/obj/machinery/power/apc{dir = 8; name = "MiniSat Maint APC"; pixel_x = -27; pixel_y = 0},/turf/open/floor/plasteel/darkwarning{dir = 1},/area/ai_monitored/storage/secure) -"cCu" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Air Out"; on = 0},/turf/open/floor/plasteel/darkwarning{dir = 5},/area/ai_monitored/storage/secure) -"cCv" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cCw" = (/obj/machinery/power/terminal{dir = 8; icon_state = "term"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1; d2 = 2},/turf/open/floor/plasteel/darkwarning{dir = 9},/area/ai_monitored/storage/secure) -"cCx" = (/turf/open/floor/plasteel/darkwarning{dir = 1},/area/ai_monitored/storage/secure) -"cCy" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/closed/wall,/area/space) -"cCz" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCA" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCB" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/hatch{name = "MiniSat Maintenance"; req_one_access_txt = "65"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCD" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCE" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4; initialize_directions = 11},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/turf/open/floor/plasteel/darkwarning/corner{dir = 8},/area/ai_monitored/storage/secure) -"cCF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/darkwarning{dir = 1},/area/ai_monitored/storage/secure) -"cCG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/open/floor/plasteel/darkwarning/corner{dir = 4},/area/ai_monitored/storage/secure) -"cCH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"; tag = ""},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/hatch{name = "MiniSat Maintenance"; req_one_access_txt = "65"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCJ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCL" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/turret_protected/aisat_interior) -"cCM" = (/obj/docking_port/stationary{dheight = 9; dir = 2; dwidth = 5; height = 24; id = "syndicate_s"; name = "south of station"; turf_type = /turf/open/space; width = 18},/turf/open/space,/area/space) -"cCN" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/camera{c_tag = "MiniSat Maintenance"; dir = 4; network = list("MiniSat"); pixel_x = 0; pixel_y = 0; start_active = 1},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1; on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCP" = (/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1; on = 1; scrub_N2O = 0; scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCT" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 20},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCU" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCV" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{amount = 35; layer = 3.1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCW" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure) -"cCX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/secure) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aag" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aah" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aai" = ( +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aak" = ( +/obj/machinery/door/poddoor{ + id = "executionspacevent" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aal" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aam" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/open/space, +/area/space) +"aan" = ( +/obj/machinery/flasher{ + id = "executionflasher"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/processing) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"aar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/security/transfer) +"aas" = ( +/obj/machinery/sparker{ + id = "executionsparker"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/chair, +/turf/open/floor/engine, +/area/security/transfer) +"aau" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aay" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northwest"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aaF" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + heat_proof = 1; + name = "Prisoner Transfer Chamber"; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"aaM" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 10000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaN" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaO" = ( +/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaP" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/razor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaR" = ( +/obj/machinery/button/flasher{ + id = "executionflasher"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionspacevent"; + name = "vent to space"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaS" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/weapon/tank/internals/anesthetic, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaV" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northeast"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaW" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaX" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaY" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aba" = ( +/obj/machinery/button/ignition{ + id = "executionsparker"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abd" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"abe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abf" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/transfer) +"abk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abq" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Transfer"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abw" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/clothing/head/helmet, +/obj/item/device/assembly/signaler, +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Transfer Center APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aby" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abz" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abF" = ( +/turf/closed/wall/r_wall, +/area/security/lockers) +"abG" = ( +/turf/closed/wall/r_wall, +/area/security/hos) +"abH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/hos) +"abI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abK" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Brig Interrogation" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/processing) +"abO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/hos) +"abQ" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"abT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/carpet, +/area/security/hos) +"abU" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"abV" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/lockers) +"abX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plasteel, +/area/security/lockers) +"abY" = ( +/turf/open/floor/plasteel, +/area/security/lockers) +"abZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Cappers! Fairly unremarkable really."; + name = "\improper Officer Cappers" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aca" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Camilla! He constantly seeks validation."; + name = "\improper Officer Camilla" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acg" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ach" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aci" = ( +/obj/structure/table, +/obj/item/weapon/lighter, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"ack" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"acl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acm" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Prison Shuttle Dock APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aco" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acp" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acr" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"act" = ( +/obj/structure/closet/ammunitionlocker, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/deputy, +/obj/item/weapon/storage/box/seccarts, +/turf/open/floor/carpet, +/area/security/hos) +"acx" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"acy" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acB" = ( +/turf/open/floor/carpet, +/area/security/hos) +"acC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acD" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acE" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acF" = ( +/obj/structure/table, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acG" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"acI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/security/hos) +"acQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/adamantine, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acR" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/security/hos) +"acS" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/carpet, +/area/security/hos) +"acT" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Locker Room West"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/lockers) +"acY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"ada" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"add" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"ade" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"adi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adj" = ( +/obj/structure/closet/ammunitionlocker, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/hos) +"adn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/security/hos) +"ado" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adp" = ( +/turf/closed/wall, +/area/security/transfer) +"adq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/transfer) +"ads" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Security Locker Room APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adw" = ( +/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/open/floor/plasteel, +/area/security/lockers) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"ady" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"adz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"adA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adE" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/obj/item/weapon/stamp/hos, +/turf/open/floor/carpet, +/area/security/hos) +"adF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Brig Riot Equipment"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"adI" = ( +/turf/closed/wall, +/area/security/hos) +"adJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adK" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/security/hos) +"adL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"adP" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adR" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/security/lockers) +"adT" = ( +/obj/structure/table, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/machinery/camera{ + c_tag = "Brig Locker Room East"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adU" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/isolation) +"adW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitered" + }, +/area/security/isolation) +"adX" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitered" + }, +/area/security/isolation) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"adZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aea" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor Northwest"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"aeg" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aei" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/camera/motion{ + c_tag = "Armory"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aej" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aek" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"ael" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aem" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/hos) +"aen" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/turf/open/floor/carpet, +/area/security/hos) +"aeo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/hos) +"aep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aer" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/main) +"aes" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"aet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"aeu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"aev" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Brig Medbay"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/isolation) +"aex" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"aey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aeG" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeK" = ( +/obj/machinery/button/door{ + id = "riotequipment"; + name = "Riot Equipment Shutters"; + pixel_x = 24; + pixel_y = 32; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeN" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/hos) +"aeQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"aeS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aeU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeV" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeW" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/main) +"afa" = ( +/obj/machinery/computer/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"afb" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afc" = ( +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afe" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"aff" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"afh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afi" = ( +/obj/structure/bed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"afj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fpmaint) +"afm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afp" = ( +/obj/structure/rack, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afq" = ( +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; + name = "\improper Officer Lock n Lode" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afs" = ( +/obj/structure/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Armory APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afv" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"afw" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"afx" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"afy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"afz" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afB" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afC" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"afF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afG" = ( +/obj/machinery/camera{ + c_tag = "Brig Medbay"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afI" = ( +/turf/closed/wall, +/area/security/main) +"afJ" = ( +/obj/structure/grille, +/turf/open/space, +/area/space) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 6" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afO" = ( +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Secure Cell 2"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afS" = ( +/obj/machinery/door/window/brigdoor{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afT" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afU" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/ecase, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afV" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/shotgun, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afW" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aga" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"agc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"age" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/security/main) +"agf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"agh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Security Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"agi" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agj" = ( +/obj/machinery/door/airlock{ + name = "Showers"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agl" = ( +/obj/machinery/camera{ + c_tag = "Brig Showers"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agm" = ( +/turf/open/floor/plasteel, +/area/security/main) +"agn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"ago" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/security/isolation) +"agp" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitered" + }, +/area/security/isolation) +"agq" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitered" + }, +/area/security/isolation) +"agr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ags" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Medbay APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"agu" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agv" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agw" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/pod_3) +"agx" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/pod_3) +"agz" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agA" = ( +/obj/machinery/flasher{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"agC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell2"; + name = "Secure Cell 2"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"agD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"agE" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"agJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agK" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/weapon/gun/energy/laser/practice, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"agM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/main) +"agP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Security Office West"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/open/floor/plasteel, +/area/security/main) +"agR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Security Office East"; + dir = 8; + network = list("SS13") + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"agT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aha" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahc" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahd" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc4" + }, +/area/shuttle/pod_3) +"ahe" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahf" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahg" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahi" = ( +/obj/structure/chair, +/obj/item/weapon/storage/pod{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahj" = ( +/obj/structure/chair, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahk" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahp" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aht" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahx" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"ahy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahA" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahB" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -31; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahC" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall1"; + dir = 2 + }, +/area/shuttle/labor) +"ahD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"ahF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahG" = ( +/obj/structure/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahR" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahS" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/door{ + id = "armorylockdown"; + name = "Brig Control Lockdown"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahV" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Brig Control APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahX" = ( +/turf/closed/wall, +/area/security/warden) +"ahY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahZ" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/item/device/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/main) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aib" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aid" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + dwidth = 2; + height = 9; + id = "pod3"; + name = "escape pod 3"; + width = 5 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aie" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aif" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig Escape Shuttle"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aig" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aih" = ( +/obj/docking_port/stationary/random{ + dir = 4; + dwidth = 2; + height = 9; + id = "asteroid_pod3"; + width = 5 + }, +/turf/open/space, +/area/space) +"aii" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aik" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/main) +"ail" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aim" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ain" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/main) +"aio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"air" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ais" = ( +/obj/structure/table, +/obj/item/baseball, +/obj/item/baseball, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ait" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiy" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 5" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiz" = ( +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Secure Cell 1"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"aiA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aiB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aiC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aiE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aiL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiM" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiN" = ( +/obj/machinery/flasher{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell1"; + name = "Secure Cell 1"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Brig APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/brig) +"aiR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aiY" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc1" + }, +/area/shuttle/pod_3) +"aiZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aja" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ajb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigshuttleflash"; + name = "Flash Control"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 0; + pixel_y = -31 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod3"; + shuttleId = "pod3" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajd" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajn" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"ajp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"ajs" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aju" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajv" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"ajx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice{ + pixel_y = 4 + }, +/obj/item/weapon/dice/d8{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajA" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ajB" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d20, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ajD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/brig) +"ajG" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajI" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajL" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajM" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aka" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/pod_3) +"akb" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/pod_3) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"akd" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ake" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aki" = ( +/obj/structure/table/wood, +/obj/item/weapon/gavelblock, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akj" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d12, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akk" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"akm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"akn" = ( +/turf/closed/wall, +/area/security/isolation) +"ako" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 4"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/labor) +"akr" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aks" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/labor) +"akt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + color = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aku" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akw" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aky" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akC" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akE" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"akG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akI" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akJ" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d10, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akL" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akM" = ( +/obj/structure/chair/comfy/brown, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/cheesie, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/mop, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/ian, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akP" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akX" = ( +/turf/closed/wall, +/area/maintenance/fsmaint) +"akY" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"akZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"ala" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"alc" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ald" = ( +/turf/closed/wall/r_wall, +/area/security/isolation) +"ale" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alf" = ( +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"alg" = ( +/obj/structure/grille, +/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ali" = ( +/obj/item/stack/teeth/lizard{ + amount = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"all" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aln" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alo" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alp" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "perma prison shuttle"; + travelDir = 90; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"alq" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/rack, +/obj/item/clothing/head/bowler, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/computer/security, +/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/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aly" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/crew_quarters/courtroom) +"alz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 8; + name = "Courtroom APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alB" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alC" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alD" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alE" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alF" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alG" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alH" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 3" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alJ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alK" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 1" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alN" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"alP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alQ" = ( +/obj/structure/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby Desk"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/flasher{ + id = "lobbyflash"; + pixel_y = -4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "lobbylockdown"; + name = "Lobby Lockdown"; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"alV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"alY" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/space) +"alZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ama" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amb" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/weapon/gun/magic/staff, +/obj/item/weapon/gun/magic/wand, +/obj/item/weapon/sord, +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amc" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/clothing/suit/armor/riot/knight, +/obj/item/clothing/head/helmet/knight, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/helmet/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/under/roman, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/under/kilt, +/obj/item/clothing/under/pirate, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amd" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ame" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ami" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"amj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aml" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"amm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"amn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ams" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amz" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Brig Lobby" + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amF" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amH" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"amJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"amN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amO" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amS" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amU" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"amV" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"amW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amZ" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ana" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anb" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"and" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/item/weapon/poster/legit, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ane" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ang" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anh" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ani" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ann" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ano" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anp" = ( +/obj/machinery/atmospherics/pipe/manifold, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ans" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ant" = ( +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anv" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"anw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"any" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anA" = ( +/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"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anE" = ( +/obj/structure/table, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anF" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/pill/morphine, +/obj/item/weapon/reagent_containers/pill/morphine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anG" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"anN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"anO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anP" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anS" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aob" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aoc" = ( +/turf/closed/wall, +/area/security/brig) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"aoe" = ( +/obj/machinery/camera{ + c_tag = "Cargo North"; + dir = 4; + network = list("perma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 8; + network = list("perma") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"aog" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aok" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aol" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aom" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aon" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aoo" = ( +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aop" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aor" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aos" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/main) +"aot" = ( +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aou" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aov" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/matches, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aow" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 1; + color = "red"; + dir = 1 + }, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aox" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoA" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoD" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoE" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aoH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"aoJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Port Engineering Hallway" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"aoK" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northwest"; + dir = 5; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoL" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northeast"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoN" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southwest"; + dir = 4; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoO" = ( +/obj/item/weapon/crowbar, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aoP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoQ" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoR" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoS" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Detective's Office"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoU" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aoX" = ( +/obj/structure/rack, +/obj/item/weapon/storage/backpack/satchel/sec, +/obj/item/weapon/storage/backpack/security, +/obj/item/weapon/storage/backpack/dufflebag/sec, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apb" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apd" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apf" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"apg" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"aph" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"api" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apl" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apm" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apn" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"apo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"app" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apq" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apr" = ( +/obj/machinery/button/door{ + id = "detshutters"; + name = "Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aps" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/brig) +"apu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apv" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"apw" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/outpost) +"apx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apy" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apF" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apM" = ( +/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" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Security Electrical Maintenance APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apP" = ( +/turf/closed/wall, +/area/maintenance/secelectrical) +"apQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"apU" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apW" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/adamantine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apY" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/wirecutters, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqe" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqf" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqi" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aql" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqo" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqu" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqx" = ( +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqA" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"aqB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aqE" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Northeast" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqG" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqH" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqL" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6; + icon_state = "tracks"; + tag = "icon-tracks (SOUTHWEST)" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqR" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqY" = ( +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ara" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"arc" = ( +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"are" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ari" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arp" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"ars" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"art" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aru" = ( +/obj/structure/closet/cardboard, +/obj/item/clothing/suit/jacket/miljacket, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"arv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arw" = ( +/obj/structure/table, +/obj/item/stack/ducttape, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c50, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ary" = ( +/obj/structure/table/wood, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arz" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arB" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office Backroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"arD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway North"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arN" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"arO" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod1" + }, +/turf/open/space, +/area/space) +"arP" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod2" + }, +/turf/open/space, +/area/space) +"arQ" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/labor) +"arR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"arS" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/labor) +"arT" = ( +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/engine/port_engineering) +"arU" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southeast"; + dir = 9; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"arV" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/weapon/crowbar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Red Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"arW" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asb" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asc" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"asd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/lawoffice) +"asf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawshutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"asg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ash" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ask" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ass" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ast" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"asu" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"asv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"asw" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"asx" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"asy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/labor) +"asz" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"asA" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"asB" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"asC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asE" = ( +/obj/structure/closet/crate, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plating, +/area/engine/port_engineering) +"asG" = ( +/obj/structure/table, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/engineering) +"asH" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"asI" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"asJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asL" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asM" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"asN" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/red, +/obj/item/clothing/glasses/orange, +/obj/item/clothing/glasses/gglasses, +/turf/open/floor/wood, +/area/lawoffice) +"asP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/lawoffice) +"asQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asR" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/carpet, +/area/lawoffice) +"asS" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"asT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/turf/open/floor/carpet, +/area/lawoffice) +"asU" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"asV" = ( +/obj/machinery/button/door{ + id = "lawshutters"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"asZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"ata" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ate" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Pool APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"atf" = ( +/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/open/floor/plating, +/area/maintenance/fpmaint2) +"atg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ath" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_1) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod1"; + shuttleId = "pod1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_2) +"atk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod2"; + shuttleId = "pod2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atl" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/space) +"atm" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atn" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ato" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"atr" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"ats" = ( +/obj/effect/decal/cleanable/oil, +/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" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"att" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atv" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/weapon/storage/firstaid/surgery, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"aty" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"atz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"atA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atL" = ( +/turf/closed/wall, +/area/maintenance/commiespy) +"atM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/open/floor/carpet, +/area/lawoffice) +"atT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atU" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atV" = ( +/obj/machinery/camera{ + c_tag = "Pool North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atW" = ( +/obj/structure/closet, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Law Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/lawoffice) +"atY" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atZ" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/device/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"aua" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/lawoffice) +"aub" = ( +/obj/structure/closet/crate, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/wood, +/area/lawoffice) +"auc" = ( +/obj/structure/closet, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/under/griffin, +/obj/item/clothing/head/griffin, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/pig, +/obj/item/clothing/head/chicken, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lawoffice) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet, +/area/lawoffice) +"aue" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/law, +/obj/item/weapon/pen/blue, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/med_data, +/turf/open/floor/carpet, +/area/lawoffice) +"aug" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/lawoffice) +"auh" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/lawoffice) +"aui" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/lawoffice) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (WEST)"; + icon_state = "yellowcornersiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"auk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aum" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auo" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aup" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auq" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/open/floor/engine, +/area/gateway) +"aur" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aus" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1351; + name = "Science intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "Supply intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1355; + name = "Medical intercom"; + pixel_x = -27; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"aut" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1353; + name = "Command intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Stronk Russian APC"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/soviet, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auw" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aux" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"auy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"auz" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"auA" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"auB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"auC" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"auD" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"auE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"auF" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/arrival) +"auG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auI" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"auJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"auK" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"auL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"auM" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"auN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"auO" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auQ" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"auR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_access_txt = list(27,12) + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"auW" = ( +/obj/machinery/gateway, +/turf/open/floor/engine, +/area/gateway) +"auX" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"auY" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"ava" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avb" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avc" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avd" = ( +/turf/closed/wall, +/area/lawoffice) +"ave" = ( +/turf/closed/wall, +/area/maintenance/fsmaint2) +"avf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating/airless, +/area/maintenance/fsmaint2) +"avg" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1447; + name = "AI Private intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/storage/photo_album, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avi" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/syndie, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avl" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"avm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avn" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avo" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"avr" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avu" = ( +/obj/machinery/door/window/southright{ + name = "Gateway Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"avv" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avw" = ( +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avx" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avy" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avG" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/camera{ + c_tag = "Arrivals Infirmary"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avM" = ( +/obj/structure/table/glass, +/obj/item/weapon/cultivator, +/obj/item/weapon/hatchet, +/obj/item/weapon/crowbar, +/obj/item/device/plant_analyzer, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avN" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"avO" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avP" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avS" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avT" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"avU" = ( +/obj/machinery/door/airlock/external{ + name = "Airlock"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avV" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1357; + name = "Engineering intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avW" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/clothing/tie/stethoscope, +/obj/item/device/camera, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer{ + desc = "These possibly cant be even letters, blyat!"; + name = "Russian computer" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avY" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awb" = ( +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awc" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awe" = ( +/obj/structure/rack, +/obj/item/weapon/gun/projectile/shotgun/toy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awg" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"awk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"awl" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awn" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awp" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awq" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aws" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"awu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"awv" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aww" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"awx" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/white, +/area/mime) +"awy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"awA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awB" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/hallway/secondary/entry) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awE" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"awG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"awI" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"awK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awP" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"awQ" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awS" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/library) +"awT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/storage/tools) +"awU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"awV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"awW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"awX" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"awY" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"awZ" = ( +/obj/item/weapon/garrote, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"axa" = ( +/obj/machinery/vending/sustenance, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axb" = ( +/obj/machinery/computer/crew, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axc" = ( +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axd" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axe" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axf" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axg" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"axh" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axi" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axj" = ( +/turf/closed/wall/shuttle{ + blocks_air = 6; + dir = 1; + icon_state = "swall13" + }, +/area/shuttle/arrival) +"axk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"axl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"axo" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axr" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2) +"axs" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axt" = ( +/obj/structure/table/wood, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axw" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/bandana/red, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axx" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axA" = ( +/obj/item/weapon/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"axC" = ( +/obj/item/weapon/storage/box, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"axD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"axJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axK" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/quartermaster/storage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axT" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"axU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/assembly/robotics) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axW" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"axX" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axY" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"axZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency) +"aya" = ( +/turf/open/floor/wood, +/area/lawoffice) +"ayb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency) +"ayc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency) +"ayd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ayf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ayi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayk" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayl" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aym" = ( +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayn" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayo" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayq" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayr" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"ays" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayB" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ayD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayE" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayG" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayL" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayM" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayN" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayP" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayR" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/labor) +"ayS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"ayT" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/labor) +"ayU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ayZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"aza" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"azc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/medical) +"azd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aze" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"azg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"azi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"azj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"azk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"azl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"azm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fsmaint2) +"azn" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fsmaint2) +"azo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"azp" = ( +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azq" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"azr" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azv" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azw" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azx" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azA" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azB" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azD" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azE" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azH" = ( +/obj/item/trash/sosjerky, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azL" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"azM" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azO" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azP" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azQ" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azS" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"azT" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"azU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azV" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"aAb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAc" = ( +/mob/living/simple_animal/bot/cleanbot{ + desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; + name = "\improper Dumpy"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aAd" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"aAj" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/engine/break_room) +"aAk" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/engine/break_room) +"aAl" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/engine/break_room) +"aAm" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aAn" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aAo" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aAp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Checkpoint"; + dir = 8; + network = list("perma") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aAq" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aAr" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/airless, +/area/space) +"aAs" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aAu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAy" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAC" = ( +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aAD" = ( +/obj/structure/table, +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAF" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAH" = ( +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod Hallway"; + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAK" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aAM" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aAN" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAO" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"aAP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAS" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/under/rank/bartender, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAW" = ( +/turf/closed/wall, +/area/maintenance/fpmaint) +"aAX" = ( +/obj/machinery/poolcontroller, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aBl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"aBz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aBA" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBC" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/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 = 32 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBE" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aBG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBH" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBJ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aBK" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBL" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBM" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aBN" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aBP" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHEAST)"; + icon_state = "intact"; + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBS" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBU" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBV" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBW" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBX" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/tile/wood{ + amount = 25 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBY" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBZ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCc" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aCr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"aCt" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCv" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCw" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/fsmaint2) +"aCx" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aCy" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"aCz" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCB" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCD" = ( +/obj/structure/closet, +/obj/item/ammo_box/foambox, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCE" = ( +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCG" = ( +/obj/structure/closet/wardrobe/blue, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCH" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCI" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCL" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCQ" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCT" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCV" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDc" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aDd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aDe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDv" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDx" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint2) +"aDz" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDG" = ( +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDH" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDJ" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDQ" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aDR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDU" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDW" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aEd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEk" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEl" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aEm" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aED" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEE" = ( +/obj/structure/grille, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEG" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aEI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aEJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEK" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEM" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEN" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/coin/gold, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEQ" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aER" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aET" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEU" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEV" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEW" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aEY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFe" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFf" = ( +/obj/machinery/monkey_recycler, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFg" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFh" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFs" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/bodybags, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFt" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFA" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFD" = ( +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFL" = ( +/turf/closed/wall, +/area/crew_quarters/pool) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFQ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"aFR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFS" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFZ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGa" = ( +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGb" = ( +/obj/structure/closet, +/obj/item/weapon/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"aGm" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aGq" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGs" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aGw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aGH" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aGI" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aGM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/sleep) +"aGN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/sleep) +"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHb" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHf" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHh" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHj" = ( +/turf/closed/wall, +/area/maintenance/electrical) +"aHk" = ( +/turf/closed/wall, +/area/space) +"aHl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space) +"aHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHt" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHv" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aHw" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aHx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHy" = ( +/obj/structure/chair/withwheels/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aHz" = ( +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHB" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHC" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aHN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aHO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aHP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHS" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aHV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/toy/carpplushie, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHY" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding"; + icon_state = "yellowcornersiding" + }, +/area/crew_quarters/pool) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aIg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIh" = ( +/obj/structure/table, +/obj/item/weapon/shard, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIi" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIj" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIk" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIl" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIm" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIn" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIo" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/electrical) +"aIq" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/maintenance/electrical) +"aIr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aIs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIx" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged3" + }, +/area/space) +"aIy" = ( +/turf/open/floor/plating/airless, +/area/space) +"aIz" = ( +/obj/item/weapon/paper/crumpled, +/turf/open/floor/plasteel/airless{ + icon_state = "damaged2" + }, +/area/space) +"aIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIC" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aID" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIE" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIF" = ( +/obj/machinery/button/door{ + id = "hobodorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aII" = ( +/obj/machinery/button/door{ + id = "hobodorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/fpmaint) +"aIJ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIN" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aIU" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIY" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aIZ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/poolfilter{ + pixel_y = 11 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aJb" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJf" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJn" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJo" = ( +/turf/open/floor/plating, +/area/maintenance/electrical) +"aJp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aJt" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"aJu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aJv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"aJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJA" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/chair, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJF" = ( +/obj/item/weapon/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space, +/area/space) +"aJG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJI" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm1"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aJK" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/weapon/bedsheet/brown, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aJL" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/open/floor/plasteel, +/area/maintenance/fpmaint) +"aJM" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/fpmaint) +"aJN" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm2"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aJY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aKa" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKb" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aKj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aKk" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/toy/poolnoodle/blue, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKl" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aKn" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aKs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKu" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKx" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/weapon/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKz" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged5" + }, +/area/space) +"aKA" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKF" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKK" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKV" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"aKW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLf" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLg" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLh" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aLn" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/ladder, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLo" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/drain, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLp" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/Lboard, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLr" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aLs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLt" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLw" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLy" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLz" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLI" = ( +/obj/structure/table, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-West"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLP" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-East"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLY" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMs" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/item/clothing/head/welding, +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/off, +/obj/item/device/assembly/timer, +/obj/structure/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMx" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMy" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMz" = ( +/obj/item/device/aicard, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMB" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMC" = ( +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aME" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aMF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMG" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMI" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMJ" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aML" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aMP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNb" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNc" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNi" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNj" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNk" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNl" = ( +/obj/structure/table/glass, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aNz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNA" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aND" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNE" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNG" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNH" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aNI" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aNK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aNQ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/clothing/under/shorts/red, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aNR" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOg" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOh" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aOl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOm" = ( +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aOn" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOp" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aOv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aOw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOy" = ( +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOD" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOH" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/patriot, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aOK" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/open/floor/engine, +/area/gateway) +"aOM" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/open/floor/engine, +/area/gateway) +"aON" = ( +/turf/open/floor/engine, +/area/gateway) +"aOO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOY" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aOZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aPa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 2 + }, +/area/crew_quarters/sleep) +"aPb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPe" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/toilet) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPr" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPs" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPv" = ( +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPx" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPy" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aPA" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPB" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/space) +"aPD" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPE" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPF" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/security/checkpoint2) +"aPG" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPI" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint2) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aPK" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPT" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPV" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/primary) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQb" = ( +/obj/structure/bed/dogbed, +/obj/item/weapon/reagent_containers/food/drinks/flask/det{ + desc = "A Space Veteran's only friend."; + name = "space veteran's flask" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQc" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aQe" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/open/floor/engine, +/area/gateway) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"aQg" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aQi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQw" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aQx" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"aQy" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aQA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/table/glass, +/obj/item/clothing/under/shorts/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQD" = ( +/obj/machinery/camera{ + c_tag = "Pool South"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQH" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQI" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/crew_quarters/pool) +"aQJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQM" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQN" = ( +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aQS" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/security/checkpoint2) +"aQT" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQW" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQX" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint2) +"aQY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRe" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRf" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRj" = ( +/turf/closed/wall, +/area/storage/primary) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"aRn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRo" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/open/floor/engine, +/area/gateway) +"aRq" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aRs" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRv" = ( +/obj/item/weapon/pen{ + desc = "Writes upside down!"; + name = "astronaut pen" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRx" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRy" = ( +/obj/machinery/camera{ + c_tag = "EVA East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aRA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aRB" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRD" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRI" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aRM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRO" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aRP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/weapon/lighter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = 9; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSf" = ( +/turf/closed/wall, +/area/chapel/main) +"aSg" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSh" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"aSi" = ( +/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 = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"aSj" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/open/floor/plating, +/area/chapel/main) +"aSm" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSo" = ( +/turf/closed/wall, +/area/security/checkpoint2) +"aSp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSq" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSB" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSC" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSE" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSF" = ( +/obj/structure/table, +/obj/item/device/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSG" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSH" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSL" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSM" = ( +/turf/closed/wall, +/area/mime) +"aSO" = ( +/turf/closed/wall, +/area/clown) +"aSP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSS" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aST" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aTa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Command EVA"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aTc" = ( +/obj/machinery/door/airlock/command{ + name = "Command EVA"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTd" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aTg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTn" = ( +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTo" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aTr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j1s"; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTu" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTw" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/chapel/main) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTM" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTN" = ( +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/main) +"aTP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aTS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTT" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Green Arrivals"; + name = "Nothing To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTU" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTV" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTW" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTZ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aUa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aUb" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aUj" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/plants{ + lootcount = 10; + name = "10plant_spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUk" = ( +/obj/machinery/door/airlock{ + name = "Garden"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUl" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Mime Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/mime, +/turf/open/floor/plasteel/black, +/area/mime) +"aUn" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aUo" = ( +/obj/item/weapon/bedsheet/mime, +/obj/structure/bed, +/turf/open/floor/plasteel/black, +/area/mime) +"aUp" = ( +/obj/machinery/camera{ + c_tag = "Clown Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/clown, +/turf/open/floor/plasteel/green, +/area/clown) +"aUq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aUr" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed, +/turf/open/floor/plasteel/green, +/area/clown) +"aUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUt" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUu" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/gateway) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUA" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUD" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + c_tag_order = 999; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aUF" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUH" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUK" = ( +/obj/structure/dresser, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUM" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUZ" = ( +/turf/closed/wall, +/area/library) +"aVa" = ( +/turf/closed/wall, +/area/chapel/office) +"aVc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aVd" = ( +/obj/structure/falsewall, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVg" = ( +/obj/machinery/camera{ + c_tag = "Chapel North"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVh" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVi" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"aVk" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals No-Declare Lane"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aVl" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aVn" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Green Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = -22; + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVq" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aVr" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aVs" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals Declare Lane"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aVQ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mime Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/mime) +"aVR" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVS" = ( +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/open/floor/plasteel/green, +/area/clown) +"aVT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aVY" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aWa" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWb" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWc" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/storage/eva) +"aWe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWh" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWk" = ( +/obj/structure/toilet{ + tag = "icon-toilet00 (WEST)"; + icon_state = "toilet00"; + dir = 8 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWl" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/weapon/lipstick/random, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWn" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWr" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aWJ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 17 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/library) +"aWM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"aWN" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/library) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/wood, +/area/library) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/library) +"aWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"aWS" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWU" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWV" = ( +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWW" = ( +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWX" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aWY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXb" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"aXc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aXd" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aXe" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXg" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/open/space, +/area/space) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXn" = ( +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXo" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXq" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/obj/item/weapon/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXr" = ( +/obj/structure/window, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/black, +/area/mime) +"aXs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aXt" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/frame/computer{ + anchored = 1; + desc = "What, you can't see the screen?"; + name = "Mime's Computer" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"aXu" = ( +/obj/structure/reagent_dispensers/honk_cooler, +/turf/open/floor/plasteel/green, +/area/clown) +"aXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aXw" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/obj/item/weapon/bikehorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aXx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Clown Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/clown) +"aXy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aXA" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/gateway) +"aXB" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aXC" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aXK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXM" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXO" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXP" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXQ" = ( +/obj/structure/closet, +/obj/item/weapon/dnainjector/smilemut, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXR" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXU" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXY" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/bar) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYj" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hydroponics) +"aYk" = ( +/turf/closed/wall, +/area/hydroponics) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYn" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"aYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) +"aYp" = ( +/obj/structure/chair/office/dark, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYq" = ( +/obj/structure/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/library) +"aYu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aYv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYw" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYx" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/office) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aYF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aYG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aYN" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aYO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYQ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge"; + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYT" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYU" = ( +/obj/structure/table/glass, +/obj/item/weapon/hatchet, +/obj/item/weapon/cultivator, +/obj/item/weapon/crowbar, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYV" = ( +/obj/item/weapon/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/device/plant_analyzer, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYW" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYY" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZb" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/storage/primary) +"aZc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/storage/primary) +"aZd" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZe" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/mime) +"aZg" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/mime) +"aZh" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aZj" = ( +/obj/structure/statue/bananium/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"aZk" = ( +/obj/machinery/button/door{ + dir = 2; + id = "gateway_shutters"; + name = "Gateway Access Button"; + pixel_x = 0; + pixel_y = -27; + req_access_txt = "47" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aZl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZm" = ( +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aZp" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZs" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZt" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_evac (EAST)" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZu" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZv" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aZx" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/primary/central) +"aZz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZD" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aZF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aZG" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aZH" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/structure/table/wood, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZJ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZK" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/bar) +"aZL" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/hydroponics) +"aZQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"aZR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZS" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/paper/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/library) +"aZU" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aZV" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"aZW" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"aZX" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"aZY" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/library) +"baa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bab" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bac" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bad" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"baf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bah" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"ban" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bao" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bap" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"baq" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bar" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bau" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"baw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"bax" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bay" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/mime) +"baz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/freezer{ + desc = "..."; + name = "Mime Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"baA" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/mime) +"baB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"baC" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/clown) +"baD" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown Office"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"baE" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/clown) +"baF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baG" = ( +/obj/machinery/door/airlock/research{ + name = "Gateway Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"baJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baL" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"baM" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"baN" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/lipstick, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baR" = ( +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baS" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baZ" = ( +/obj/machinery/camera{ + c_tag = "Bar Storage" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bba" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbb" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbe" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hydroponics) +"bbg" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbi" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbk" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbm" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/weapon/watertank, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"bbo" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bbp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/library) +"bbr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbD" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bbE" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbF" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbH" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbL" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + name = "Port Hall APC"; + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcd" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bce" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West"; + dir = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bch" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bci" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bcj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bck" = ( +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bcl" = ( +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bcm" = ( +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bcn" = ( +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bco" = ( +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bcp" = ( +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bcq" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bcv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcw" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East"; + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcA" = ( +/obj/structure/piano, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcG" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcL" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcT" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcU" = ( +/turf/open/floor/wood, +/area/library) +"bcV" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"bcW" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bcY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"bda" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdb" = ( +/obj/machinery/light, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdd" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bde" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdf" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdg" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdk" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint South" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdn" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdo" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdp" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdr" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bds" = ( +/turf/open/floor/goonplaque, +/area/hallway/secondary/entry) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdK" = ( +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bdL" = ( +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bdM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bdN" = ( +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bdP" = ( +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bdQ" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdU" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdX" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdY" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bea" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"beb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bec" = ( +/obj/machinery/vending/coffee, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bed" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bef" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"bei" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"bej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bek" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/library) +"bel" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bem" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/library) +"beo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"beq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bes" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bet" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"beu" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bew" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bex" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0; + verted = -1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bey" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Red Arrivals"; + name = "Items to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bez" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0; + verted = -1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"beA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beB" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beD" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beI" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beJ" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beY" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfd" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfe" = ( +/obj/machinery/light, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bff" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfi" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bfj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bfk" = ( +/obj/structure/closet/chefcloset, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfp" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfq" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bft" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfu" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/open/floor/wood, +/area/library) +"bfv" = ( +/turf/open/floor/carpet, +/area/library) +"bfw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/library) +"bfx" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/open/floor/wood, +/area/library) +"bfy" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bfA" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfB" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bfE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfI" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Escape Arm Holding Area"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bfJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bfO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bfP" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bfQ" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"bfR" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"bfS" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bfV" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bfW" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bga" = ( +/turf/closed/wall, +/area/maintenance/port) +"bgb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgc" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bgd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bge" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/turf/closed/wall, +/area/storage/art) +"bgg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/art) +"bgh" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/art) +"bgj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bgk" = ( +/turf/closed/wall, +/area/storage/emergency2) +"bgl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgm" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgq" = ( +/turf/closed/wall, +/area/storage/tools) +"bgr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bgt" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bgu" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgw" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgx" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgy" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgH" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bgI" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hydroponics) +"bgK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"bgM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bgN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bgO" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgP" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgR" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgS" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgV" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bgW" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgZ" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bha" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bhb" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhc" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhd" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bhk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bhl" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bho" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhp" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhs" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"bhx" = ( +/turf/open/floor/plasteel, +/area/storage/art) +"bhy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bhz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bhA" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bhB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bhD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/turf/open/floor/plasteel, +/area/bridge) +"bhF" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/bridge) +"bhG" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/bridge) +"bhH" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/bridge) +"bhI" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bhJ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bhL" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/bridge) +"bhM" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "green" + }, +/area/bridge) +"bhN" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/bridge) +"bhO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/bridge) +"bhP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhS" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhU" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhV" = ( +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhY" = ( +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bhZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bia" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bib" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bic" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 2 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bie" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bif" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bih" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bij" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"bik" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bil" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bim" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/library) +"bin" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bio" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bip" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"biq" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bir" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bis" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bit" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"biu" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biD" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway Central"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biL" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biO" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"biP" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biQ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"biS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency2) +"biT" = ( +/turf/open/floor/plating, +/area/storage/emergency2) +"biU" = ( +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency2) +"biV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tools) +"bjc" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjd" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bje" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjf" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/bridge) +"bjg" = ( +/obj/structure/chair{ + dir = 1; + name = "Command Station" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/bridge) +"bji" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/bridge) +"bjj" = ( +/obj/structure/chair{ + dir = 1; + name = "Crew Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/bridge) +"bjl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/bridge) +"bjm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjr" = ( +/obj/item/stack/spacecash/c10{ + amount = 10 + }, +/obj/item/stack/spacecash/c100{ + amount = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjs" = ( +/mob/living/carbon/monkey{ + name = "Pun Pun"; + real_name = "Pun Pun"; + unique_name = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjt" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjv" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjA" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjB" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bjC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bjD" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bjH" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"bjI" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/library) +"bjJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjP" = ( +/obj/machinery/vending/cola, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bjQ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/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 = 32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjV" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/open/space, +/area/space) +"bjX" = ( +/turf/closed/wall/r_wall, +/area/rec_room) +"bjY" = ( +/turf/closed/wall, +/area/rec_room) +"bjZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/rec_room) +"bka" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bkb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkc" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkh" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkk" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkm" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkn" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bko" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkq" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/open/floor/plasteel, +/area/storage/art) +"bkr" = ( +/obj/structure/table, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bkt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency2) +"bku" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bky" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkA" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"bkB" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkC" = ( +/turf/closed/wall, +/area/bridge) +"bkD" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/bridge) +"bkE" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/bridge) +"bkF" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/bridge) +"bkG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/bridge) +"bkH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkI" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bkJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/bridge) +"bkL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/bridge) +"bkM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/bridge) +"bkO" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/bridge) +"bkP" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/bridge) +"bkQ" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/bridge) +"bkR" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkS" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkT" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkU" = ( +/obj/item/clothing/head/that{ + throwforce = 1; + throwing = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkV" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkW" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("SS13") + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkY" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkZ" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bla" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/crew_quarters/kitchen) +"bld" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/hydroponics) +"ble" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"blf" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"blg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"blh" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bli" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"blj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/open/floor/wood, +/area/library) +"blk" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/library) +"blm" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/library) +"bln" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/library) +"blo" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"blp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"blq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bls" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blt" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"blu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bly" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Recreation Room APC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"blz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/carpet, +/area/rec_room) +"blA" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/rec_room) +"blB" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/hallway/secondary/entry) +"blC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blE" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/secondary/entry) +"blF" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"blG" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blI" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blJ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blN" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blR" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blY" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bma" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bmc" = ( +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmd" = ( +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/bridge) +"bme" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/bridge) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bmi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bml" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmn" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/bridge) +"bmq" = ( +/obj/structure/chair{ + dir = 1; + name = "Logistics Station" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmr" = ( +/obj/machinery/camera{ + c_tag = "Bridge East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/bridge) +"bms" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmu" = ( +/obj/machinery/camera{ + c_tag = "Bridge East Entrance"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bmw" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmy" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmz" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmA" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmC" = ( +/obj/machinery/processor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmE" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"bmH" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/open/floor/wood, +/area/library) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bmK" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"bmL" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/library) +"bmM" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/library) +"bmN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bmO" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bmP" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bmR" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmS" = ( +/obj/machinery/door/window/northright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmT" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmV" = ( +/turf/open/floor/carpet, +/area/rec_room) +"bmW" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/rec_room) +"bmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmZ" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/rec_room) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bnb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnd" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bnf" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bng" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bni" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnj" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnk" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"bnl" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnn" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bny" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bnA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bnC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bnD" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"bnE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bnJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bnL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bnN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/bridge) +"bnQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnR" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnV" = ( +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnY" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Bridge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/bridge) +"boa" = ( +/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; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bob" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"boc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"boe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bof" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bog" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bol" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bom" = ( +/obj/item/weapon/lighter, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bon" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boo" = ( +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bop" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"boq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"box" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/library) +"boz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"boC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"boF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"boH" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boI" = ( +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boK" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boN" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/wood, +/area/rec_room) +"boP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/rec_room) +"boQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/bikehorn/airhorn, +/turf/open/floor/wood, +/area/rec_room) +"boR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boS" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boT" = ( +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"boU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"boW" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"boZ" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"bpe" = ( +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bph" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpk" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/crew_quarters/locker) +"bpl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/crew_quarters/locker) +"bpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpo" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tools) +"bpz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tools) +"bpA" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpC" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/hallway/primary/central) +"bpE" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bpF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bpG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpI" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpP" = ( +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bpT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/hallway/primary/central) +"bpV" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Central Hall APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bpY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bpZ" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqe" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bqf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/library) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/library) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqw" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "Scaley."; + name = "Robusts-Many-Faces" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqy" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/rec_room) +"bqz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/rec_room) +"bqA" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder/empty, +/turf/open/floor/wood, +/area/rec_room) +"bqB" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bqC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bqD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bqF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqH" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bqJ" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqM" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqQ" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqR" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqS" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/female{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqT" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqZ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"brb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"brc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brg" = ( +/turf/closed/wall, +/area/quartermaster/office) +"brh" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bri" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room) +"brk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"brl" = ( +/turf/closed/wall, +/area/bridge/meeting_room) +"brm" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brn" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brp" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brr" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bru" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brv" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brw" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brx" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bry" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brz" = ( +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brA" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brC" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brE" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"brF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brH" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brM" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"brP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/library) +"brQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"brS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"brT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/library) +"brU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brV" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"brW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Escape Hallway APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape shuttle Hallway"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"brY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bsa" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsb" = ( +/mob/living/simple_animal/cow, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bsd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bsf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bsg" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsh" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsi" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bso" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bss" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/office) +"bst" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/office) +"bsw" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsx" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsy" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Conference Room"; + dir = 2 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsA" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsB" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsF" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsH" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsN" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsP" = ( +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsQ" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsR" = ( +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsS" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bsT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsU" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsW" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/library) +"bsX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"bsY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btb" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "A Lizard Wizard!"; + name = "Merlin" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btc" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btd" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bte" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-l"; + icon_state = "stairs-l" + }, +/area/hallway/secondary/entry) +"btf" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"bth" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-stairs-r"; + icon_state = "stairs-r" + }, +/area/hallway/secondary/entry) +"bti" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/vacantoffice) +"btj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"btk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bto" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btq" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btr" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"bts" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btu" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"btv" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 5 + }, +/area/quartermaster/office) +"btw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btx" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bty" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btA" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btD" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btE" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btG" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btH" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btK" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btN" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btP" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36; + tag = "icon-direction_sec (NORTH)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btQ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btR" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btZ" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bud" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bue" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buf" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bug" = ( +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buh" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bui" = ( +/obj/structure/window, +/obj/machinery/vending/cola, +/turf/open/floor/carpet, +/area/rec_room) +"buj" = ( +/obj/structure/window, +/obj/machinery/vending/snack, +/turf/open/floor/carpet, +/area/rec_room) +"buk" = ( +/obj/structure/window, +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/carpet, +/area/rec_room) +"bul" = ( +/obj/structure/window, +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/rec_room) +"bum" = ( +/obj/structure/window, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/rec_room) +"bun" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bup" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bus" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"but" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"buv" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"buy" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"buB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"buC" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buD" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"buH" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"buI" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"buK" = ( +/obj/item/weapon/hand_labeler, +/obj/item/device/assembly/timer, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buL" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buM" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buN" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buQ" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"buS" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"buT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"buU" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"buV" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"buW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"buX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bva" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bvo" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/turf/open/floor/carpet, +/area/rec_room) +"bvp" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/rec_room) +"bvq" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/rec_room) +"bvr" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"bvu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bvw" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvy" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port) +"bvz" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker) +"bvB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bvC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvE" = ( +/obj/structure/closet/crate, +/obj/machinery/doorButtons, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvF" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvI" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bvJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bvM" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvN" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvO" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvP" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvQ" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/corp, +/obj/item/weapon/aiModule/core/full/paladin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/aiModule/core/full/robocop, +/obj/item/weapon/aiModule/core/full/custom, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvS" = ( +/obj/machinery/computer/upload/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvT" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvU" = ( +/obj/machinery/computer/upload/borg, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvV" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvW" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/reset/purge, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/aiModule/supplied/protectStation, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwd" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/item/weapon/storage/lockbox/medal{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bwf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_sci (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwi" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwj" = ( +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwl" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/hallway/primary/starboard) +"bwo" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bws" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwv" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bww" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bwA" = ( +/obj/machinery/camera{ + c_tag = "Escape Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/easel, +/turf/open/floor/carpet, +/area/rec_room) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/rec_room) +"bwH" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwI" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwK" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bwL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwO" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwU" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwV" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bxa" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxb" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxc" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxd" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bxf" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bxg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxj" = ( +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxn" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxr" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxv" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxy" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxA" = ( +/obj/structure/table/wood, +/obj/item/weapon/pinpointer, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxB" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bxC" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay) +"bxD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bxE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxG" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bxH" = ( +/turf/closed/wall, +/area/medical/morgue) +"bxI" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bxJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxL" = ( +/turf/closed/wall, +/area/storage/emergency) +"bxM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/assembly/chargebay) +"bxO" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "loadingarea" + }, +/area/hallway/primary/starboard) +"bxP" = ( +/turf/closed/wall/r_wall, +/area/assembly/robotics) +"bxR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxS" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxT" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxU" = ( +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxV" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxX" = ( +/turf/closed/wall/r_wall, +/area/toxins/lab) +"bxY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bxZ" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bya" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byc" = ( +/obj/structure/easel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"byd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/rec_room) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"byf" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byg" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byh" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/plants, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"byk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byo" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"byw" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byz" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/storage) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/office) +"byC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"byF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"byI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"byK" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Bridge Delivery"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/bridge/meeting_room) +"byL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byM" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"byQ" = ( +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byS" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"byV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byW" = ( +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byX" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/coin/plasma, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/camera, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bza" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzb" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzd" = ( +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bze" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzf" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzg" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzh" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bzl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bzm" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bzn" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bzo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzp" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzu" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bzv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bzw" = ( +/turf/closed/wall, +/area/assembly/chargebay) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bzy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/assembly/chargebay) +"bzz" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzA" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzC" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + closingLayer = 3.2; + dir = 2; + icon_state = "left"; + layer = 3.2; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzE" = ( +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"bzF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bzG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bzH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + closingLayer = 3.2; + layer = 3.2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/toxins/lab) +"bzI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bzL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bzN" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bzP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/rec_room) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + verted = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"bAj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAk" = ( +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/quartermaster/office) +"bAl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bAo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bAp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bAs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bAt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/bridge/meeting_room) +"bAu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bAv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/maintcentral) +"bAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAz" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAA" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAB" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/weapon/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAC" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAE" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAF" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bAJ" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bAK" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bAL" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAO" = ( +/turf/open/floor/plating, +/area/storage/emergency) +"bAP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency) +"bAQ" = ( +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency) +"bAR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bAS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAT" = ( +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/assembly/chargebay) +"bAV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/chargebay) +"bAW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAX" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAY" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bBa" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBc" = ( +/obj/machinery/vending/robotics, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBf" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 2; + network = list("SS13") + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"bBg" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBi" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/toxins/lab) +"bBj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bBl" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + density = 0; + dir = 4; + icon_state = "rightopen"; + layer = 3 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bBw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBy" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBz" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bBA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBB" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBI" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBK" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBL" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBO" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBP" = ( +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bBT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bridge Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBV" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBW" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBY" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bBZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCc" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bCd" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCe" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCl" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bCm" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bCn" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCs" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bCT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bCU" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDb" = ( +/turf/closed/wall, +/area/maintenance/asmaint2) +"bDc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space, +/area/space) +"bDd" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + layer = 2.5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3; + name = "disposal exit vent" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bDn" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bDt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDy" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDF" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"bDG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Personnel APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bDL" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Confrence Room South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bDO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bDQ" = ( +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDR" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bDS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"bDW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bDX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bEf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEi" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bEl" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bEm" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bEn" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/assembly/chargebay) +"bEo" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bEp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bEs" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEw" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bEy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEB" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEC" = ( +/obj/machinery/r_n_d/protolathe, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bED" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bEE" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEJ" = ( +/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 = 32 + }, +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEL" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEO" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bER" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bET" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bEZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bFa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFf" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bFi" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/office) +"bFj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bFl" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bFm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bFn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bFp" = ( +/turf/closed/wall, +/area/crew_quarters/heads) +"bFq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads) +"bFr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads) +"bFt" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/champion, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bFu" = ( +/obj/item/weapon/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bFv" = ( +/turf/closed/wall, +/area/crew_quarters/captain) +"bFw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFz" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFA" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFE" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFI" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFJ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFK" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFL" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFM" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/medical) +"bFP" = ( +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"bFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bFY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGc" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bGf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/robotics) +"bGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bGj" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGl" = ( +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGm" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGo" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGp" = ( +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGq" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bGs" = ( +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bGz" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"bGE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bGF" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + icon_state = "switch-rev"; + id = "garbage"; + name = "disposal coveyor"; + position = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGG" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGH" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGI" = ( +/obj/structure/closet, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGJ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bGQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGS" = ( +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGT" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGU" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGV" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGW" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bGX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bGY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGZ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/central) +"bHa" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bHb" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHf" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bHg" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault" + }, +/area/ai_monitored/nuke_storage) +"bHi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"bHj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/gun/projectile/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bHk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bHl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHn" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHq" = ( +/obj/structure/table/glass, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHs" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHt" = ( +/turf/closed/wall, +/area/medical/medbay) +"bHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bHx" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHy" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/medical) +"bHA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bHB" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bHD" = ( +/turf/closed/wall, +/area/medical/genetics) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bHK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bHO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHP" = ( +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHR" = ( +/obj/structure/table, +/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/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bHS" = ( +/turf/closed/wall, +/area/assembly/robotics) +"bHT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHW" = ( +/turf/closed/wall, +/area/toxins/lab) +"bHX" = ( +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"bIb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bIc" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/lab) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/lab) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"bIj" = ( +/turf/closed/wall, +/area/toxins/shuttledock) +"bIk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/outpost) +"bIl" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/outpost) +"bIm" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bIn" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/outpost) +"bIo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bIp" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIq" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bIr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bIs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIx" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/office) +"bIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bIC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/primary/central) +"bIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hallway/primary/central) +"bIG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIH" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bIN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIQ" = ( +/obj/machinery/door/airlock/vault{ + icon_state = "door_locked"; + locked = 1; + req_access_txt = "53" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bIR" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIW" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/bikehorn/rubberducky, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJb" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJc" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJd" = ( +/obj/structure/bed/roller, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bJe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJo" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJp" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTHEAST)"; + icon_state = "whiteblue"; + dir = 5 + }, +/area/medical/genetics) +"bJq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bJr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJt" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bJu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJv" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJw" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bJx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bJy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJD" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bJF" = ( +/obj/structure/table, +/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/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bJG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bJH" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/research{ + name = "Research Division" + }) +"bJJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJK" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJO" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/toxins/lab) +"bJQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/lab) +"bJR" = ( +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bJT" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Science Outpost Dock APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bJX" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/outpost) +"bJY" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bJZ" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bKa" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_ss13"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/open/space, +/area/space) +"bKb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKc" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKi" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKj" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKm" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKo" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKp" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bKq" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bKr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bKs" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bKt" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bKu" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKv" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Vault Access"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bKy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKz" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"bKD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKF" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bKH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKJ" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bKK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKM" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor2"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKU" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKX" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bKY" = ( +/turf/open/floor/plasteel, +/area/medical/genetics) +"bKZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 14 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bLa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bLb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLf" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"bLh" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/assembly/robotics) +"bLj" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bLm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLo" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLp" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Experimentor Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLq" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLr" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLs" = ( +/obj/structure/closet/emcloset{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLw" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bLz" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bLA" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLD" = ( +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLE" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bLF" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/storage) +"bLG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bLH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/device/multitool, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bLQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/ai_monitored/nuke_storage) +"bLR" = ( +/turf/closed/wall, +/area/teleporter) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLT" = ( +/obj/structure/table, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bLU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLW" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLY" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bMc" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMn" = ( +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bMp" = ( +/obj/structure/table/glass, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor2"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMr" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bMs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bMt" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMu" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMw" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/chargebay) +"bMx" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 4 + }, +/area/assembly/robotics) +"bMy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMz" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMB" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bMD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bML" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/explab) +"bMO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMP" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"bMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bMZ" = ( +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bNa" = ( +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "7" + }, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bNb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost_home"; + name = "outpost shuttle bay"; + width = 7 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost"; + name = "outpost shuttle"; + travelDir = 90; + width = 7 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall3" + }, +/area/shuttle/outpost) +"bNc" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bNd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bNe" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/folder/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bNl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bNm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNn" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/coin/gold, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNq" = ( +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"bNr" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/ai_monitored/nuke_storage) +"bNs" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bNw" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNx" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/ai_monitored/nuke_storage) +"bNy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bNA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bNC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bND" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bNI" = ( +/obj/structure/table, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNS" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNU" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/medical_cloning, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNX" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bNZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOa" = ( +/obj/structure/window/reinforced, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOb" = ( +/turf/closed/wall/r_wall, +/area/assembly/chargebay) +"bOc" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bOd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bOe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOk" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOr" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOy" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/white, +/area/toxins/shuttledock) +"bOz" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/open/space, +/area/space) +"bOA" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bOC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bOG" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bOH" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOI" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bON" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOQ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bOR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/teleporter) +"bOS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOT" = ( +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOU" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/teleporter) +"bOV" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOW" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/teleporter) +"bOY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPb" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPc" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bPd" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/sleeper) +"bPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera{ + c_tag = "Medbay Hallway"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPh" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPj" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/disks, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPk" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 12 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bPn" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPp" = ( +/obj/machinery/camera{ + c_tag = "Research Division West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bPz" = ( +/turf/closed/wall, +/area/crew_quarters/hor) +"bPA" = ( +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPC" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPD" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bPG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPI" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light, +/obj/machinery/status_display{ + density = 0; + pixel_y = -30; + supply_display = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPK" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bPL" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPM" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #4" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bPN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPO" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPR" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"bPS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bPU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bPV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bPW" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bPX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQc" = ( +/obj/machinery/button/door{ + id = "vaultshut"; + name = "Vault Shutters Control"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/office/dark, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQg" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bQi" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/teleporter) +"bQj" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/teleporter) +"bQk" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/teleporter) +"bQl" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/teleporter) +"bQm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/medbay) +"bQo" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/medbay) +"bQp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQs" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQt" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQu" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bQv" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/sleeper) +"bQx" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQy" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQz" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bQF" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQG" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = 23 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQI" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/disk/tech_disk/gooncode, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQV" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQW" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQX" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bQY" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/crew_quarters/hor) +"bQZ" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/crew_quarters/hor) +"bRa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"bRb" = ( +/turf/closed/wall, +/area/toxins/explab) +"bRc" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/book/manual/experimentor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRd" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/toxins/explab) +"bRe" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRf" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/explab) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRi" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/outpost) +"bRm" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/outpost) +"bRn" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bRo" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bRq" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bRt" = ( +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/supply) +"bRv" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"bRw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/supply) +"bRx" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bRB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bRC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Vault Access"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/ai_monitored/nuke_storage) +"bRD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South-East"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/sleeper) +"bRF" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bRG" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRH" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/sleeper) +"bRJ" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRN" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRP" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Research"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRS" = ( +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bRT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bRU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRV" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRW" = ( +/turf/closed/wall/r_wall, +/area/toxins/server) +"bRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bRY" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bSa" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/science) +"bSb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bSe" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/item/weapon/coin/uranium, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSf" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSg" = ( +/obj/machinery/computer/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSh" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSi" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/crew_quarters/hor) +"bSj" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSk" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/hor) +"bSl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSo" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSp" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSs" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSu" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSz" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bSC" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"bSD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSE" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSM" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bSN" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSO" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSQ" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSS" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bST" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSU" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSV" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bTa" = ( +/obj/machinery/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTb" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTc" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTd" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (SOUTHEAST)"; + icon_state = "whiteblue"; + dir = 6 + }, +/area/medical/genetics) +"bTe" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTg" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"bTk" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/open/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bTm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bTn" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTo" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + current_temperature = 80; + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTq" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/science) +"bTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTt" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of your own office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTu" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/science) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bTw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bTx" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen/blue, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTz" = ( +/obj/machinery/computer/mecha, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTA" = ( +/obj/structure/rack, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTB" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTD" = ( +/turf/open/floor/engine, +/area/toxins/explab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTG" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTH" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTK" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTN" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bUa" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUh" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUl" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bUm" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUs" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUu" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bUv" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUy" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUA" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/science) +"bUC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUD" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/science) +"bUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUH" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUM" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUN" = ( +/obj/machinery/r_n_d/experimentor, +/turf/open/floor/engine, +/area/toxins/explab) +"bUO" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bUP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bUQ" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/status_display{ + density = 0; + pixel_x = -32; + pixel_y = 0; + supply_display = 1 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUS" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUT" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUU" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUV" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bVa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bVb" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/supply) +"bVd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"bVe" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/supply) +"bVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bVg" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVu" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVw" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVA" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVE" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bVF" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVI" = ( +/turf/closed/wall, +/area/medical/cmo) +"bVJ" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVK" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVP" = ( +/obj/machinery/r_n_d/server/core, +/turf/open/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/toxins/server) +"bVR" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bVS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVT" = ( +/obj/machinery/computer/rdservercontrol, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVV" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/science) +"bVX" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVY" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVZ" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/science) +"bWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/item/weapon/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWd" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/computer/card/minor/rd, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWe" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("SS13","RD") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWi" = ( +/obj/machinery/camera{ + c_tag = "Experimentor Lab Chamber"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWo" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bWp" = ( +/turf/closed/wall, +/area/storage/tech) +"bWq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/central) +"bWt" = ( +/turf/closed/wall, +/area/janitor) +"bWu" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bWv" = ( +/turf/closed/wall, +/area/maintenance/asmaint) +"bWw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWx" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"bWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWz" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWA" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWB" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWC" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWD" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bWF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWG" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWH" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bWM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/cmo) +"bWN" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWO" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWR" = ( +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"bWS" = ( +/turf/closed/wall, +/area/toxins/storage) +"bWT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWV" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWW" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"bWZ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXl" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/storage/tech) +"bXm" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXn" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 2 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Tech Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXo" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXp" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXq" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bXt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bXu" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/plasteel, +/area/janitor) +"bXv" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/vehicle/janicart, +/turf/open/floor/plasteel, +/area/janitor) +"bXx" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/janitor) +"bXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bXz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXA" = ( +/turf/open/floor/plasteel, +/area/janitor) +"bXB" = ( +/obj/machinery/door/window/westleft{ + name = "Janitoral Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/janitor) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/janitor) +"bXD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "surgery"; + name = "Surgery Shutter Control"; + pixel_x = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXH" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXJ" = ( +/obj/structure/table, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bXL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bXO" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXR" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXW" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXX" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXY" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/obj/item/clothing/tie/stethoscope, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bYa" = ( +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYb" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Misc Research APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYg" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYi" = ( +/turf/closed/wall, +/area/toxins/mixing) +"bYj" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/plasmaresearch, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYo" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"bYr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"bYs" = ( +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"bYt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/mixing) +"bYy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/labor) +"bYz" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/aft) +"bYJ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYL" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYN" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/open/floor/plating, +/area/storage/tech) +"bYO" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bYR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bYT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bYY" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"bYZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/janitor) +"bZa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 6 + }, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZc" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZi" = ( +/obj/structure/table/optable, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bZq" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZt" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZy" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZz" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZA" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/storage) +"bZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZF" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/mixing) +"bZH" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZP" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/mixing) +"bZQ" = ( +/turf/closed/indestructible, +/area/toxins/test_area) +"bZR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"bZS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZT" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bZV" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"bZW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZY" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"caa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cab" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cac" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cad" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cae" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"caf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"cag" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cah" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/pandemic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/computer/rdconsole, +/obj/item/weapon/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/destructive_analyzer, +/obj/item/weapon/circuitboard/machine/protolathe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/computer/aifixer, +/obj/item/weapon/circuitboard/computer/teleporter, +/obj/item/weapon/circuitboard/machine/circuit_imprinter, +/obj/item/weapon/circuitboard/machine/mechfab, +/turf/open/floor/plating, +/area/storage/tech) +"cai" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/mining, +/obj/item/weapon/circuitboard/machine/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/computer/arcade/battle, +/turf/open/floor/plating, +/area/storage/tech) +"caj" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/telecomms/processor, +/obj/item/weapon/circuitboard/machine/telecomms/receiver, +/obj/item/weapon/circuitboard/machine/telecomms/server, +/obj/item/weapon/circuitboard/machine/telecomms/bus, +/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, +/obj/item/weapon/circuitboard/computer/message_monitor{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cak" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cal" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"cam" = ( +/obj/structure/table, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"can" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/janitor) +"cao" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/janitor) +"cap" = ( +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"caq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/janitor) +"car" = ( +/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/open/floor/plating, +/area/maintenance/asmaint) +"cas" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cat" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cav" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"cax" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cay" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"caA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caB" = ( +/obj/machinery/vending/wallmed{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("SS13") + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caF" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caG" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv4"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caH" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv4"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caL" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Medical Officer"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caN" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/cmo) +"caQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caS" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"caZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cba" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"cbb" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cbf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/mixing) +"cbg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"cbi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbk" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cbl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cbm" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cbn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cbo" = ( +/obj/item/weapon/ore/iron, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbq" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cbs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbt" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbu" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cby" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbA" = ( +/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 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/janitor) +"cbI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/janitor) +"cbJ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbL" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbS" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating"; + dir = 1; + network = list("SS13"); + pixel_x = 22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbV" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbW" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbX" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbY" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cca" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccb" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccc" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccd" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cce" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccg" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cch" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cci" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"cck" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/cartridge/medical, +/obj/item/weapon/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccl" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccn" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"cco" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"ccp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ccq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"cct" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccw" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible, +/area/toxins/test_area) +"ccL" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccN" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "48" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + travelDir = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"ccP" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"ccQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccU" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccW" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"ccX" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/storage/tech) +"ccY" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/cloning{ + pixel_x = 0 + }, +/obj/item/weapon/circuitboard/computer/med_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/clonescanner, +/obj/item/weapon/circuitboard/machine/clonepod, +/obj/item/weapon/circuitboard/computer/scan_consolenew, +/turf/open/floor/plating, +/area/storage/tech) +"ccZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cda" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/powermonitor{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/computer/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdb" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cde" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdn" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cds" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cdt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdv" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cdw" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdx" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdy" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdA" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdB" = ( +/turf/closed/wall, +/area/toxins/xenobiology) +"cdC" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cdD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdG" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdI" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdJ" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdK" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdO" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/mixing) +"cdP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cdS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/mixing) +"cdT" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdU" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdW" = ( +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cdX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdY" = ( +/obj/item/weapon/ore/silver, +/obj/item/weapon/ore/silver, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cdZ" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cea" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"ceb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cec" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/pickaxe{ + pixel_x = 5 + }, +/obj/item/weapon/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ced" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cee" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cef" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cej" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/storage/tech) +"cek" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/storage/tech) +"cel" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cem" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tech) +"ceo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ceq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"ces" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"cet" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"ceu" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cev" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cex" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cey" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceF" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay) +"ceG" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceH" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room 2"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay) +"ceK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "CM Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceP" = ( +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceQ" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceR" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceS" = ( +/obj/machinery/door/window/southleft{ + name = "Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceU" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceW" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/toxins/xenobiology) +"ceX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceZ" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cfa" = ( +/obj/structure/sign/fire, +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"cfb" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cfc" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfd" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/toxins/mixing) +"cff" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfg" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfh" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfi" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cfj" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfk" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"cfl" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cfm" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfp" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/storage/tech) +"cfq" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfr" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/open/floor/plating, +/area/storage/tech) +"cfs" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cft" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfu" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"cfw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cfA" = ( +/turf/closed/wall/r_wall, +/area/atmos) +"cfB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/atmos) +"cfG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfK" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfL" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfX" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfZ" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cga" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgb" = ( +/obj/machinery/smartfridge/extract, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgc" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cge" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgf" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cgh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cgi" = ( +/obj/machinery/door/poddoor{ + id = "mixvent2"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgk" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cgm" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor2"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump2"; + exterior_door_tag = "tox_airlock_exterior2"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior2"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cgo" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cgp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cgq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgs" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgu" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cgw" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/primary/aft) +"cgx" = ( +/turf/closed/wall, +/area/atmos) +"cgy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/atmos) +"cgz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgD" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/atmos) +"cgE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cgF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id = "wloop_atm_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 2 + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgL" = ( +/turf/open/floor/plasteel, +/area/atmos) +"cgM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgN" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgO" = ( +/turf/closed/wall, +/area/medical/virology) +"cgP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cgQ" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cha" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"chb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"chd" = ( +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"che" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior2"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chf" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump2" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chg" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior2"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chi" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"chk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chl" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cho" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chq" = ( +/turf/closed/wall, +/area/construction) +"chr" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction) +"chs" = ( +/turf/open/floor/plating, +/area/construction) +"cht" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/construction) +"chu" = ( +/turf/open/floor/plasteel, +/area/construction) +"chv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/construction) +"chw" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"chx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"chB" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"chF" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chG" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chN" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/atmos) +"chO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"chP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chQ" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chS" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/virology) +"chU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/virology) +"chW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chX" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cia" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cic" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cid" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cig" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cih" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cik" = ( +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cil" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cim" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent2"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker2"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cio" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cip" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ciq" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cir" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"cis" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction) +"cit" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/construction) +"ciu" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"civ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ciw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/aft) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/atmos) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciD" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/atmos) +"ciF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/autolathe/atmos, +/turf/open/floor/plasteel, +/area/atmos) +"ciG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/atmos) +"ciH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciI" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste In"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciN" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"ciO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/atmos) +"ciR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ciT" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"ciU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ciV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ciW" = ( +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ciX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ciY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ciZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cja" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cjg" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cji" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjj" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjk" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjn" = ( +/obj/structure/table, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjp" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjq" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cjt" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cju" = ( +/turf/closed/wall, +/area/toxins/misc_lab) +"cjv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjw" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjy" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjz" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cjC" = ( +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cjD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjE" = ( +/obj/structure/girder, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"cjG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjH" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjM" = ( +/obj/structure/closet/crate, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/construction) +"cjO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"cjQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cjU" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cjV" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cjW" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cka" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ckb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckl" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckm" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"ckn" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/atmos) +"ckp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor"; + output = 63 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ckq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"ckr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cks" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckt" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cku" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckx" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cky" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckB" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckC" = ( +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckD" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"ckE" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Testing Lab North"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + req_access = null + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckM" = ( +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"ckN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ckO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckQ" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cla" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"clc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cle" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clf" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"clg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/atmos) +"cli" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cll" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Unfiltered to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cls" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"clt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"clv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "waste_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + nitrogen = 0.01; + oxygen = 0.01 + }, +/area/atmos) +"clw" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cly" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"clB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clE" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clK" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"clM" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clN" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clR" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/target_stake, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"clS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"clT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"clU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/rack, +/obj/item/clothing/head/cone, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/aft) +"clW" = ( +/obj/item/weapon/storage/secure/safe, +/turf/closed/wall, +/area/maintenance/aft) +"clX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clY" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + tag = "icon-connector_map (WEST)"; + icon_state = "connector_map"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cma" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cme" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmf" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmg" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/construction) +"cmh" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/construction) +"cmi" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/construction) +"cmj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cmk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cml" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plating, +/area/atmos) +"cmm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cmo" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"cmp" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/atmos) +"cmq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/open/floor/plasteel, +/area/atmos) +"cmr" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cmt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmv" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmH" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Module" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmI" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmJ" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmL" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cmN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmR" = ( +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmU" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmV" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/toxins/misc_lab) +"cmY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cmZ" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses/garb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cna" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/clothing/tie/black, +/obj/item/clothing/tie/red, +/obj/item/clothing/mask/bandana/red, +/obj/item/clothing/mask/bandana/skull, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cne" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cng" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cni" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"cnj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnl" = ( +/obj/machinery/power/apc{ + name = "Aft Hall APC"; + dir = 8; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cnm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnn" = ( +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/atmos) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/atmos) +"cnq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnt" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/atmos) +"cny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tanks" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnA" = ( +/turf/open/floor/engine/n2o, +/area/atmos) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/medical/virology) +"cnE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnI" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnK" = ( +/obj/structure/disposalpipe/segment, +/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/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cnL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnM" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnS" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnT" = ( +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnU" = ( +/obj/structure/target_stake, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cnW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnX" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/storage/box/cups, +/turf/open/floor/plating, +/area/maintenance/aft) +"coa" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cob" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coc" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cog" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cok" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"col" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Telecoms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"com" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/atmos) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"coq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cou" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cox" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/atmos) +"coy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coD" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/atmos) +"coE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coF" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/atmos) +"coG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coK" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coM" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"coO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coP" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"coQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall, +/area/toxins/xenobiology) +"coS" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coT" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coV" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coW" = ( +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"coX" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coZ" = ( +/obj/machinery/camera{ + c_tag = "Testing Firing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpa" = ( +/obj/structure/target_stake, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpb" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/maintenance/aft) +"cpc" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpd" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cpg" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cph" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cpk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/atmos) +"cpp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/atmos) +"cps" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/atmos) +"cpt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/atmos) +"cpu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cpw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpx" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/atmos) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cpA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cpB" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cpJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpK" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpM" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cpP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/misc_lab) +"cpQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpR" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cpS" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cpT" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cpU" = ( +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cpV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cpW" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cpX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cpY" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cpZ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqa" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqb" = ( +/obj/machinery/computer/message_monitor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cqc" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqe" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cqg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqj" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cqk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cql" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 8; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqo" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cqp" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqr" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqs" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"cqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqv" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqx" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqy" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqC" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqE" = ( +/obj/structure/rack, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Test"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet, +/obj/item/pipe{ + dir = 4; + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cqJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/weapon/paper/range, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHEAST)"; + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/misc_lab) +"cqK" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHWEST)"; + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/misc_lab) +"cqL" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cqM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqO" = ( +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/aft) +"cqP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/pill/mannitol, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqR" = ( +/turf/closed/wall, +/area/maintenance/strangeroom) +"cqS" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cqT" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqW" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cqY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqZ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cra" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"crf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"crg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/atmos) +"crh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"cri" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"crj" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"crk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crl" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"crm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"crn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"cro" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/atmos) +"crq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"crr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Plasma Tank" + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"crs" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"crt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cru" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"crv" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + anchored = 1; + density = 0; + pixel_x = -30 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cry" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"crA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"crD" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crE" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crF" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crL" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"crP" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crQ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crT" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"crU" = ( +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crV" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crW" = ( +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"crX" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"crY" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"crZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"csa" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csd" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csn" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"cso" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/atmos) +"csp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"csq" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Toxin Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/atmos) +"csr" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor"; + output = 11 + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"css" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"csu" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csv" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"csx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology South"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"csD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"csE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"csH" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csK" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"csP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"csR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"csS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"csT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csV" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/tcommsat/computer) +"csW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csX" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"ctc" = ( +/turf/closed/wall, +/area/engine/break_room) +"ctd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cte" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cth" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cti" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"ctj" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ctk" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"ctl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/item/weapon/wrench, +/turf/open/floor/plasteel, +/area/atmos) +"cto" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"ctp" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"ctr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"cts" = ( +/turf/open/floor/engine{ + carbon_dioxide = 0; + name = "plasma floor"; + nitrogen = 0; + oxygen = 0; + toxins = 70000 + }, +/area/atmos) +"ctt" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"ctu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"ctx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/weapon/wrench, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/maintenance/asmaint) +"cty" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ctz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint) +"ctA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctD" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ctE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctF" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ctG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"ctH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/misc_lab) +"ctI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctK" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctM" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/r_arm, +/obj/item/weapon/shard, +/obj/item/weapon/hatchet, +/obj/item/weapon/staplegun, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctO" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/l_leg, +/obj/item/bodypart/l_arm, +/obj/item/weapon/restraints/handcuffs, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"ctR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"ctS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ctU" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"ctV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"ctW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"ctX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/bluegrid{ + dir = 8; + icon_state = "vault"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"ctY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"ctZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cua" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cub" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cuc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cud" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/tcommsat/computer) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cuf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Telecoms Monitoring"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cui" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cuj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuk" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cul" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cum" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"cun" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cuo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cup" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cuq" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"cur" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/engineering) +"cus" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"cut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cuu" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuv" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/atmos) +"cux" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/maintenance/asmaint) +"cuG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cuH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/asmaint) +"cuI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuN" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuS" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cuU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cuV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cuW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cuX" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuY" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuZ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel{ + tag = "icon-damaged5"; + icon_state = "damaged5" + }, +/area/maintenance/strangeroom) +"cva" = ( +/obj/machinery/camera{ + c_tag = "Telecoms Server Room"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cvb" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvc" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/tcommsat/computer) +"cve" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cvi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cvk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cvp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/plasteel, +/area/atmos) +"cvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/atmos) +"cvr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"cvs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvt" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/weapon/cigbutt, +/turf/open/floor/plasteel, +/area/atmos) +"cvu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/atmos) +"cvw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cvx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank" + }, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cvy" = ( +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvG" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cvI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cvJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvK" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("Test","RD"); + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cvL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"cvM" = ( +/obj/machinery/camera{ + c_tag = "Testing Lab South"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvN" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvO" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cvQ" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cvS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvT" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/strangeroom) +"cvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/strangeroom) +"cvW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cvX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cvY" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/chem_pile, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cvZ" = ( +/obj/machinery/message_server, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cwa" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cwb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cwc" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwe" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cwg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"cwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwt" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwu" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cwv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cwy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwz" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/atmos) +"cwA" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor"; + output = 35 + }, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cwB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cwC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cwD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwF" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwP" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cwR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cwU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cwX" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/spirit_board, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cxd" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/restraints/handcuffs, +/obj/item/weapon/pen, +/obj/item/weapon/paper{ + info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; + name = "Strange Paper" + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/strangeroom) +"cxe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"cxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gibber, +/turf/open/floor/plasteel, +/area/maintenance/strangeroom) +"cxg" = ( +/obj/machinery/vending/cart{ + desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; + icon_state = "cart-broken"; + name = "Old Machine"; + product_slogans = "Bzzzt..-6-4-!"; + products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cxh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cxi" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cxj" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cxk" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cxl" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cxm" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxx" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxC" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxD" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cxF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cxG" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 3; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/atmos) +"cxK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + carbon_dioxide = 50000; + name = "co2 floor"; + nitrogen = 0; + oxygen = 0 + }, +/area/atmos) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cxY" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxZ" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyc" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cye" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cyi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cyj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cyk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cyl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/server) +"cym" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cyn" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"cyo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyr" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyt" = ( +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyv" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/break_room) +"cyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyB" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cyI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/atmos) +"cyK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cyL" = ( +/obj/structure/sign/fire{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cyN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyP" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyX" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyZ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cza" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czc" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czd" = ( +/obj/item/clothing/under/rank/vice, +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"czi" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czj" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/chiefs_office) +"czl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/engine/break_room) +"czm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/break_room) +"czn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/engine/break_room) +"czo" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"czp" = ( +/turf/closed/wall, +/area/maintenance/incinerator) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/incinerator) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"czs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/minimeteor, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czt" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/snacks/donkpocket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/c_tube, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/caution, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"czB" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/maintenance/portsolar) +"czE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"czF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"czG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czN" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/engine/chiefs_office) +"czO" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czQ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czS" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"czV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/engineering) +"czW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/atmos) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/atmos) +"czY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAa" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAd" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAe" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/kitchenspike_frame, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAh" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAi" = ( +/obj/structure/table/wood, +/obj/item/weapon/retractor/alien, +/obj/item/weapon/reagent_containers/glass/bowl, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAj" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"cAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cAE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAF" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAG" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"cAI" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAP" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAT" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAW" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/atmos) +"cAY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/atmos) +"cAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/atmos) +"cBa" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/atmos) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/atmos) +"cBc" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/atmos) +"cBd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/atmos) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 10 + }, +/area/atmos) +"cBf" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + pressure_setting = 2000; + sensors = list("air_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "arrival" + }, +/area/atmos) +"cBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 6 + }, +/area/atmos) +"cBh" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cBi" = ( +/turf/open/floor/plating, +/area/atmos) +"cBj" = ( +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBk" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/incinerator) +"cBl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/incinerator) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/lighter/greyscale, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBq" = ( +/obj/structure/chair, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBr" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cBv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBE" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cBH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBZ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCd" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCg" = ( +/turf/closed/wall, +/area/engine/engineering) +"cCh" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCi" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCk" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/coin/plasma, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCn" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCq" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCr" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCy" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCC" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical, +/obj/item/pizzabox/mushroom, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCE" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCH" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cCJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCN" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCO" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/switchblade{ + force = 12 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCQ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCS" = ( +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCY" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cCZ" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cDa" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cDb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDd" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDi" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/computer/card/minor/ce, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDj" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDl" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space) +"cDq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space, +/area/space) +"cDr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space) +"cDs" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/maintenance/incinerator) +"cDt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/tie/black, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDx" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/shard, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDB" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDC" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDD" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cDH" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDI" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cDJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDU" = ( +/obj/item/weapon/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/item/weapon/cartridge/atmos, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDV" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cEa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEb" = ( +/obj/item/clothing/head/cone, +/obj/item/weapon/restraints/handcuffs/cable/orange, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Biohazard Disposals"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEf" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEk" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEl" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEm" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEn" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEA" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/weapon/circuitboard/computer/solar_control, +/obj/item/weapon/electronics/tracker, +/obj/item/weapon/paper/solar, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEB" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cED" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEF" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cEG" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"cEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cEM" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cEN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cEO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cEP" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cEQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cER" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cES" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + output = 7 + }, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1443; + icon_state = "vent_map"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cEU" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEV" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/incinerator) +"cEW" = ( +/obj/item/clothing/suit/toggle/labcoat/mad, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEX" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cEY" = ( +/obj/structure/table/wood, +/obj/item/organ/internal/butt/xeno, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFa" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (NORTH)"; + icon_state = "manifold"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFf" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFl" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFr" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFs" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cFv" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cFw" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cFx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engine/engineering) +"cFz" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cFC" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/wrench, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cFJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFK" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cFL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cFM" = ( +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cFN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics O2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cFO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cFP" = ( +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cFQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Air-mix Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cFR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cFS" = ( +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cFT" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFU" = ( +/obj/item/weapon/kitchen/knife, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFV" = ( +/obj/structure/table/wood, +/obj/item/weapon/scalpel, +/obj/item/weapon/wirecutters, +/obj/item/organ/brain/alien, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFW" = ( +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFX" = ( +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGe" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGh" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cGn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGo" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGp" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGq" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/engine/engineering) +"cGs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cGt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGE" = ( +/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/open/floor/plasteel, +/area/engine/engineering) +"cGF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGI" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "n2 floor"; + nitrogen = 100000; + oxygen = 0 + }, +/area/atmos) +"cGJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "o2 floor"; + nitrogen = 0; + oxygen = 100000 + }, +/area/atmos) +"cGK" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "air floor"; + nitrogen = 10580; + oxygen = 2644 + }, +/area/atmos) +"cGL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hatchet, +/obj/item/weapon/lighter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cGM" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGN" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/crowbar, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGO" = ( +/obj/item/weapon/bedsheet/cult, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGP" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGT" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGU" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGW" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGX" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGY" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGZ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHa" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cHd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHe" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cHf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cHg" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cHh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "SMES Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHi" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/engine/engineering) +"cHk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Middle"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cHl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHp" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cHr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Waste Out"; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHt" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cHv" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cHz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHC" = ( +/obj/machinery/door/window{ + name = "SMES Chamber"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHD" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cHG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "SMES Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/engine/engineering) +"cHJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHY" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/airlock_painter, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cIa" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cIb" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIc" = ( +/turf/open/floor/plating, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cId" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donkpockets, +/turf/open/floor/plating, +/area/space) +"cIf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIh" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIn" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIq" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engineering) +"cIs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"cIC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIF" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIG" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cII" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engineering) +"cIM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cIN" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIO" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIP" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cIQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space, +/area/space) +"cIR" = ( +/obj/structure/table_frame, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint2) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space) +"cIT" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIV" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIW" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cIZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"cJa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cJb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cJc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJj" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"cJk" = ( +/obj/structure/window, +/turf/open/floor/plating, +/area/toxins/mixing) +"cJl" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "0"; + req_one_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cJm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/engine/engineering) +"cJt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"cJu" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cJv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJz" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engineering) +"cJA" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cJB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod4"; + shuttleId = "pod4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"cJF" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "asteroid_pod4" + }, +/turf/open/space, +/area/space) +"cJG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJI" = ( +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJK" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/engine/engineering) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJN" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJO" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cJR" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJS" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJT" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJV" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJW" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/engineering) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/engine/engineering) +"cJZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engine/engineering) +"cKa" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKd" = ( +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cKe" = ( +/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_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKf" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cKh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKj" = ( +/obj/structure/sign/pods{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engineering) +"cKk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Escape Pod"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cKl" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKm" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKn" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKs" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/camera{ + c_tag = "Engineering Materials"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKt" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKu" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cKw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKz" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKM" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "32" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering) +"cKU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKZ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLa" = ( +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLb" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Port Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering North" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLe" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLf" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLh" = ( +/obj/structure/transit_tube{ + tag = "icon-Block"; + icon_state = "Block" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLi" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/sign/securearea{ + name = "EXTERNAL AIRLOCK"; + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cLk" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/item/weapon/lighter{ + lit = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Entrance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLo" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLr" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/weapon/storage/backpack/industrial, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLt" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLz" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLF" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLH" = ( +/obj/structure/transit_tube/station{ + dir = 8; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/obj/structure/transit_tube_pod, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cLJ" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLM" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLO" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLP" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Supermatter Control Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cLS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLX" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMa" = ( +/obj/structure/table, +/obj/item/weapon/pocketknife, +/obj/item/weapon/reagent_containers/food/snacks/beans{ + bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); + desc = "Smells kind of funny." + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMb" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMd" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMg" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMh" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMn" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/reagent_containers/pill/charcoal, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"cMp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMq" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cMr" = ( +/obj/structure/chair/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMv" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/engine/supermatter) +"cMw" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMx" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMz" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/engine/supermatter) +"cMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/engine/engineering) +"cMD" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/turf/open/space, +/area/space) +"cME" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/open/space, +/area/space) +"cMF" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/weapon/paper/gravity_gen{ + layer = 3 + }, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMM" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMQ" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cMR" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/turf/open/space, +/area/space) +"cMS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMT" = ( +/obj/structure/transit_tube, +/turf/open/space, +/area/space) +"cMU" = ( +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/open/space, +/area/space) +"cMV" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/open/space, +/area/space) +"cMW" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMX" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMZ" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNa" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNc" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNd" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNe" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNf" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNg" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNh" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNk" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNl" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNp" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNs" = ( +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/space) +"cNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNu" = ( +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/space) +"cNv" = ( +/obj/item/weapon/crowbar, +/turf/open/space, +/area/space) +"cNw" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNx" = ( +/turf/closed/wall/r_wall, +/area/aisat) +"cNy" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cNz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cNA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/engine/engine_smes) +"cNC" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cND" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cNE" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cNF" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/aisat) +"cNG" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/aisat) +"cNH" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/aisat) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNJ" = ( +/obj/item/weapon/weldingtool, +/turf/open/space, +/area/space) +"cNK" = ( +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/space) +"cNM" = ( +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/space) +"cNN" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNO" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/open/space, +/area/space) +"cNP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNQ" = ( +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNS" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNT" = ( +/obj/structure/transit_tube{ + tag = "icon-S-NW"; + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNU" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNV" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNW" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNZ" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cOd" = ( +/turf/closed/wall, +/area/aisat) +"cOe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/aisat) +"cOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Teleporter Room"; + req_access_txt = "17;65" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cOk" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cOl" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOr" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOs" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cOt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOv" = ( +/obj/structure/transit_tube/station{ + dir = 4; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOy" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/aisat) +"cOz" = ( +/turf/open/floor/plating, +/area/aisat) +"cOA" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cOB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cOF" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block"; + tag = "icon-Block (NORTH)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOI" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cOM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cON" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "MiniSat Entrance"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat External Power APC"; + pixel_x = -27; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOW" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOY" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOZ" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/aisat) +"cPc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cPd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/aisat) +"cPe" = ( +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/closed/wall, +/area/aisat) +"cPj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cPm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPo" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPw" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cPx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cPz" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cPA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cPB" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPC" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPI" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPN" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/aisat) +"cPP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPR" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPT" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPU" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + cell_type = 2500; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space, +/area/space) +"cPW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cPY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cPZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQb" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cQc" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQd" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Antechamber"; + dir = 1; + network = list("MiniSat") + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cQh" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQj" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQk" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_locked"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQp" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQq" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + dir = 2; + network = list("MiniSat","RD"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQr" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQw" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQy" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQA" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQC" = ( +/turf/closed/wall, +/area/turret_protected/ai) +"cQD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQE" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQF" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQH" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQI" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQJ" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber South"; + dir = 2; + network = list("RD","MiniSat") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQN" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQV" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cQW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQY" = ( +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cQZ" = ( +/obj/structure/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/secure) +"cRc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRd" = ( +/obj/structure/rack, +/obj/item/weapon/crowbar/red, +/obj/item/weapon/wrench, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cRf" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cRg" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat Maint APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air Out"; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/ai_monitored/storage/secure) +"cRj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/ai_monitored/storage/secure) +"cRk" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/ai_monitored/storage/secure) +"cRl" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRm" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cRn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/aisat) +"cRo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/aisat) +"cRy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRB" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cRF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cRG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cRH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRI" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRJ" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRK" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cRP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRS" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRU" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 2; + name = "SMES room APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRV" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cRW" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRX" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cRZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cSa" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSb" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Supermatter Control Room"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cSc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSf" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSg" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSi" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera{ + c_tag = "Port Engineering North-East"; + dir = 5; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSo" = ( +/obj/machinery/vending/tool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSp" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cSB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSC" = ( +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cSE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/engine/supermatter) +"cSG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSH" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "smblast"; + name = "Control Room Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/engine/supermatter) +"cSJ" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSK" = ( +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSL" = ( +/obj/item/device/radio/off, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSM" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSN" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSO" = ( +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSP" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSQ" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSS" = ( +/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 = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cST" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTe" = ( +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cTg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cTi" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTo" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smblast" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTr" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTB" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTD" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTF" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTG" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTI" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTJ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTK" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTL" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + layer = 3 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Center" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTQ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Supermatter APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTS" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTY" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/port_engineering) +"cTZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUa" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cUe" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUh" = ( +/obj/machinery/atmospherics/components/binary/volume_pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/power/emitter, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUs" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUx" = ( +/turf/closed/wall, +/area/engine/port_engineering) +"cUA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUF" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUG" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space) +"cUJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cUL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUN" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Filtering Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUO" = ( +/obj/machinery/camera{ + c_tag = "Filtering Room" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters"; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVb" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVc" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cVf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVg" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space) +"cVl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVn" = ( +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVp" = ( +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVv" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVw" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "superinput" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVC" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/port_engineering) +"cVG" = ( +/obj/item/weapon/wirecutters, +/turf/open/space, +/area/space) +"cVH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVL" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVM" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVN" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVO" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVP" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVQ" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVR" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Filtering Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVT" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVU" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/supermatter) +"cVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVY" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/supermatter) +"cVZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cWe" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWj" = ( +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWl" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWo" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWp" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWq" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWu" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWv" = ( +/obj/machinery/mass_driver{ + id = "engicannon" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + tag = "smin"; + volume_rate = 700 + }, +/obj/machinery/power/supermatter_shard{ + anchored = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWx" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWz" = ( +/turf/open/floor/plating, +/area/engine/supermatter) +"cWA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space) +"cWE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWF" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWG" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWI" = ( +/obj/machinery/particle_accelerator/control_box{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 0; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWK" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWL" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage1"; + name = "secure storage" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/port_engineering) +"cWM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWQ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWV" = ( +/obj/structure/sign/securearea{ + color = ""; + desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; + name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWX" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space) +"cWY" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space) +"cXc" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXd" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXe" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXf" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXg" = ( +/obj/machinery/camera{ + c_tag = "Engineering PA"; + dir = 9; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 2; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXi" = ( +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXj" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/camera{ + c_tag = "Port Engineering Secure Storage"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cXl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXn" = ( +/obj/machinery/door/poddoor{ + id = "engicannon" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cXo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXq" = ( +/obj/structure/window{ + color = "red"; + desc = "A window, break in case of emergency."; + dir = 1; + icon_state = "window"; + tag = "icon-window (NORTH)" + }, +/obj/machinery/button/massdriver{ + id = "engicannon"; + name = "\improper JETTISON ENGINE"; + pixel_y = -22; + req_access_txt = "32" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/supermatter) +"cXr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXt" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXw" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage1"; + name = "Secure Storage"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "10" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering Middle"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXx" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + volume_rate = 5000 + }, +/turf/open/floor/plating/airless, +/area/space) +"cXz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/space) +"cXA" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXE" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXI" = ( +/obj/machinery/field/generator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXM" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Port Engineering South" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXY" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYb" = ( +/obj/item/device/multitool, +/turf/open/space, +/area/space) +"cYd" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYe" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYf" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYh" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYi" = ( +/obj/structure/grille, +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYk" = ( +/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 = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYq" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYr" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYD" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/space, +/area/space) -(1,1,1) = {" +( +1, +1, +1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -6940,6 +72365,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -6950,198 +72376,12 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaeaaeaaeaaeaaeaadaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaahaaiaajaakaalaalaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaamaahaahaanaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaoaahaahaahaapaahaaqaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraadaadaadaasaadaadaadaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaadaavaahaawaadaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaahaahaaxaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaadaadaadaadaahaahaaxaayaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaaAaadaahaahaaxaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaaCaaDaadaahaahaaxaadaadaaEaaFaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaaGaadaaHaaIaaHaadaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaahaaKaahaahaahaaLaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaahaaMaahaahaahaaHaahaahaahaadaaNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaadaadaadaadaadaaOaahaahaadaadaadaadaadaadaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaPaaQaaRaaSaaTaadaahaahaahaadaaUaaVaaWaaXaaYaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaZaaQaaQaaQaaQabaaahaahaahaadaahaahaahaaCabbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaPaaQaaQaaQaaQabcaahaahaahabdaahaahaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaQaaQaaQaaQaaQabeaahaahaahabfaahaahaahaahabgaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabjabkablabmabnaadaahaahaahaadaboabpaahaahabgaayaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqabqabqabqabqabqabqabqabqaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabraaQabsaadaadaadaaHabtaaHaadabuaadaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabvabhaaaabhaaaabhaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabwabxabyaadaaaaadabzabzabzaadaadaadabAabBabCaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabDabEabFabGabFabGabFabHabDabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabzabzabzaadaaaaarabIabJabKaataaaaadabzabzabzaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabLabMabNabOabPabQabRabSabTabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarabIabJabKabUaaaaaaaaaaaaaaaaaaaaaabVabIabJabKaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabDabWabXabYabXabXabXabZabSacaabDabhabhaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabDacbaccacdaceacfabQabQabSacgabDabhabhabhabhabhabhabhabhabhabhabhaaaaaaaaaabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachabDaciabQabQabQabQacjabQabQackaclabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDabDacmacjabQabQacnacoacjabQacpacqabDabhacrabhabhabhabhabhabhabhabhabhabhabhabhabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDactabQabQabQacuacvacwabQabQacxacyabDabDaczabhabhabhabhabhabhabhabhaaaaaaaaaaaaabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBacCacDacEacFacGabQacHabQabQabQabQabQabQabSabQacIacJaczacKacKacLacKacKacLacLacKacMacNacOacNacOacNacPacPacQacQacQacPacPaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhacRabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSacTacUacVacWacXabQabQacYacZadaabQadbadcaddabQadeadfaczabhaaaaaaaaaaaaaaaaaaabhacOadgadhadhadhadiacPadjadkadladmadnacPaaaaaaaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhadoabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacLacLacLacLabhabhaaaadpaaaabhabhacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSadqadradsacWadtaduadtadtadtadvadtadtadtadwadtadtadxaczaczaczaczaczaczaczaczaczaczadyadhadzadAadgacPadBadCadDadEadFacPaaaabhadGabqabqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsabhabhaaaadHaaaadIabhacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaadpaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSadJadKadLacWadMabQadNadtadOadPadQadtadRadSadTadtadUaczadVadWadXadYadZaeaaebaecaczaedadhadzaeeadgacQaefaegaehadDaeiacPaaaabhacNaejacNabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaaaaaabhaaaabhaaaaaaadHaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaelaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBaemaenaeoacWaepabQaeqadtaeraesaetadtaeuaevaeqadtaewaczaexaeyaezaezaezaezaezaeAaczaeBadhadzaeeadgacQaeCaeDaeEadDaeFacPabhabhacNaeGacNabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaaeIaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeQacBacBacBaeRaeSaeTacWaeUaeVaeWadtaeUaeXadtadtadtaeYaeWadtadtaczaeZafaafbafcafdafeaffafgafhadhadhadzaeeadgacPafiafjafkaflafmacPacOacOacMaejacNacNacMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBafvafwafxafyafzafAafBafCafDafEafFafGafHafIafJafKafLafMafNaczafOafPafQafRafSafTafUafVafWadhadhafXafYacNacPafZacPagaacPagbacPagcagdacNageacNagfaggaggaggaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaaeMaaaaaaaaaabhaaaaaaaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBagiagjagkaglagmagnagoagpagpagqagragpagpagpagsagtaguagvagwaczafOafOagxagyagzagAagBagCaczagDagEagFagGacNagHagIagJagKagLagMagJagNagOagPagQagRagSagTagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaafqaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaeMaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagXagYagZahaahbahcahdaheahfahgahgahhahiahjahkahkahkadtahlahmaczaczaczahnahoahpahqahrahsaczahtacOahuahvacNahwahxahyahzahAahBahCahDahEacNahFacNagfaggaggaggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaafqaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBacBacBahGahHahIahdabDadtahJadtadtadtahKahKahKahKahKahLahMahNahOahPahQahRahSahTahUahVahNahWagJahXahYahZaiaaibahyaicahAaidahCaieacNacMacNacNacNacMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsadIafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaacBacBacBacBahdabDaifaigaihaiiaijahKaikailaimainaioaipaiqairaisaitaiuahSaivahSaiwaixaiyaizaiAaiBahyaizaiCaiDaiEaiFaiGaiHaiIaiJaiKaiLaiMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaaeMaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhabDaijaiNaiOaiPaijahKaiQaiRaiSaiTaioaipahNaiUaiVaiWaiXaiYaiZajaajbajcajdajeajfajgajhajhajgajiajjajkajlajmajnacNajoajpaiMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaafqaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaeMaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDaijaiNajqaiPajrahKajsajtaiSajuaioaipaiqajvajwajxajyajzajAajBajCajDajEajFajGajHajIajJajKajLajMajNajOajPajQajRajSajTajUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaafqaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabDajVajWajWajXajYahKajZakaakbakcaioaipahNakdakeakfakgakhakiakjahNahNacMakkaklacMacMacNacNacNacNacNacNacNacNacNakmaknajUabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAakoafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhakpakpakqakqabDabDadtadtaeUakrahKahKahKahKahKaksaktakuakvakuakuakuakuakuakuakwakxakyakzakAakBakCakDakEakFakGakHakIakJakKakLakmaknajUabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghakoacAaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaakMaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhakpakNakOakPakQakRakSakTakUakVakWakXakYakZalaalbalcaldalealdaldaldaldaldaldalfaldaldalgalealhalialjalkallalmalnaloalpalqakLakmaknaiMabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaafqaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhabhabhabhalralsalrabhabhabhabhacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltalualualualtaaaabhalvalwalxalyalzalAalBalCalDalEalFalGalHalIalJalGalKalLalJalGalHalMalNalNalNalOalPalQalRalSalTalUalValWalValValValXalYalYakLakmaknajUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhabhabhabhabhafqabhabhabhabhabhacsacsacsabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhaaaalralZalraaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltamaambamcaltakqakqamdameamfamgamhakCahKamiahKahKamjamkamlammamnamoamlammamnampamqammamramsammamtamuammamvamwamxakCamyamzalYamAalYamBamCalYakLakmaknajUabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaabhaaaaaaamDaaaaaaabhaaaaaaabhaaaabhabhabhaaaaaaaaaaaaaaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhalralramEalralraaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJamFamFamFamFamFaaaaluamGamHamIamJamKamLamMameamNamOamPakCamQakuamRahKamSamTamUahKamVamTamUahKamVamWamUahKamXamYamZanaakBahKamTanbancakCandaneanfanganfanhanialYakLakmaknajUabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaabhaaaaaaanjaaaaaaabhaaaaaaabhaaaaaaaaaabhabhaaaaaaaaaaaaaaaankanlankabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhanmannanoanpanmanqanqanqanqanqanqanqanqanqaaaaaaaaaaaaamFanransantamFaaaaltanualtanvaltakqakqakqanwanxanyanzakCanAanBanCahKanDamTanEahKanFamTanGahKanHamTanIahKanJanKanLanaanMahKanNanOanPakCanQanRanQanSanQanTanQanQakLakmaknaiMaiMabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaabhaaaanUanVanUaaaabhaaaaaaabhaaaaaaaaaaaaabhabhaaaaaaaaaaaaankanWankabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanmanXanYanZanmaoaaoaanqaobaocaodanqaoeanqaaaaaaaaaabhanqaofaocaoganqaaaaltaohaohaoialtaaaaaaaojakpakqaokaolakCaomaonaooakCaopaoqaoqaoraoqaoqaoqaoraoqaoqaoqaoraosaotaouaovaowakCakCakCakCakCaoxaoyaoxakKaoxaozaoxakKakLaoAaoBaoCaiMaiMaiMabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaabhaaaanUaoDanUaaaabhabhabhabhaaaabhaaaaaaaaaabhabhaaaaaaaaaankaoEankabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanmaoGaoHaoIanmaoJaoKaoLaoMaocaoNanqanqanqamFanqamFamFanqaoOaoPaoOanqaaaaluaohaohaoQaltakqakqakqaoRaoSaoTaoUalvakCakCakCakCaoVaoVaoVaoWaoVaoVaoVaoXaoVaoVaoVaoWaoVaoVaoVaoYaoYaoZapaapaapaapbaoxaoyaoxakKaoxaozaoxakKakLakmapcapdapeapfapeabqaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaabhanUanUapganUanUabhaaaaaaabhaaaabhaaaaaaaaaaaaabhabhaaaaaaankaoEankabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFaphapiapiapiapiapiapiapiapjaoFabhaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaanmanmapkaplanmapmaocanqaocaocaocaoLaocaocapnaocansaocaocaocaocapoamFaaaaltappaohaohapqapramLapsameamNamOamNaptaoYapuaoYapvaoYaoYapwaoYaoYaoYaoYaoYaoYaoYapxaoYaoYaoYapyaoYaoYaoYaoYaoYaoYapzakKapAapBapCapDapEapBakKapFapGapHapIapIapJaiMabqaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaabhapKapLapMapNapKabhaaaaaaabhaaaabhaaaabhaaaaaaaaaabhankankankaoEankankankankankankaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFapOapPapPapPapPapPapPapPapQaoFabhaaaaaaaaaabhaaaaaaaaaaaaanqanqanqanqanqabhabhanqapRapSapTapUaoKanqanqamFamFanqanqanqanqamFanqamFamFanqapVaocapWanqaaaaltapXapXapXaltakqakqapYapZaqaaqbaqcakpaqdaqdaqdaqdaqdaqeaqfaqdaqdaqdaqdaqdaqdaqdaqgaqhaqhaqhaqiaqjaqhaqkaqlaqmaqnapbaqoaqpakLakLakLakLakLakLakLakmaqqaiMaqraqsaiMaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaabhapKaqtaquaqvapKabhaaaaaaabhaaaabhaaaabhankanlankanlankaqwaoEaoEaoEaoEaoEaoEaqxankabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapOapPapPapPapPapPapPapPapQaoFaoFaqyaoFaoFabhabqabqanqanqanqaqzaqAaqBanqaaaaaaanqaocapSapmaocaqCanqaqDaqDaqEaqDaqDaqEaqEachachaqFaqFanqaqGaocaqHanqaaaaltaqIaqIaqIaltaaaabhalvakpaqJakpaqKaqLaqLaqLaqMaqLaqLaqLaqNaqOaqOaqOaqPaqOaqOaqQaqRaqSaqTapIaqUapIapIapIapIaqVapIapIapIapIapIaqWaqXaqYaqZaraaraarbarcardarearfaiMaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaabqabqabqaaaabhapKargarhariapKarjarjarjarjarjanlanlanlankarkaoEaqxankankaoEankankankankarlankankabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaoFapOapPapPapParmapPapPapPapQaqyarnaroarpaoFabhanqarqanqarrarsaocartaocanqamFamFanqaruapSapmaruanqanqanqamFamFamFanqanqacharvaqEaqEachanqanqaoLanqanqaaaaaaaaaaaaaaaaaaaaaabhakparwamLakparxaqLaryarzarAarBarAaqLarCaqOarDarEarFarGaqOaoVaoYarHarIarJarKarKarKarKarKarLarMarKarKarKarKarKarNarOarParQarRarSarTaiMarUarVaiMabharWarXarXarYarXarXarZabhabhaaaaaaaaaabhanlasaanlaaaarjapKapKasbascapKasdaoEaoEaoEankaseaoEasfankasgaoEaoEashankaoEankasiasjankaoEaskankaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapOapPapPaslasmapPapPapPapQasnasoaspasqaoFabhanqaocanqasrassapUastasuanqaqHaocasvaocapSaswaocaocaocaocaocaocaocaocanqanqanqaqEachaqEachasxasyasxaaaaaaaaaaaaaaaaaaaaaaaaabhakpaszasAakpasBaqLasCasDasEarAarAaqLarCaqOasFarFasGasHasIaoVaoYapaarIakmasJasJasJasJasJasKasLasJasJasJasJasJasJasJasJasMasNaiMasOasMasMasMasMasMasPasQasQasQasQasQasPasMabhaaaaaaaaaabhasRaoEanlaaaarjasSasTasUasVaoEaoEaoEankaoEankasWaoEaoEankaoEasXasYasZarlaoEankataatbankaoEatcankaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapOapPapPapPatdapPapPapPapQaqyateaspatfaoFanqanqarqanqanqanqaoLatgathathatiatjatkatjatlatmatnatoanqaocanqanqanqaocanqatpanqachaqEaqDaqEasxasyasxaaaaaaaaaaaaaaaatqatqatqatqatqatqatqatqatraqLatsattatuarAatvaqLarCatwatxatyatzatAasIaoVaoYatBarIakmasJatCatDatEatFatGatHasJatIatJatKasJatLatJatMasMatNatOatPatQatRatSatTasMasPasQasQasQasQasQasPasMabhabhabhabhanlanlatUanlanlarjatVaoEatWaoEaqwaoEankankatXankankatYankankasZatZauaaoEankaoEaubaubaubaubaubaubaubaubaubaucaucaucaucachaucaucaqEaqEaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapOapPapPapPapPapPapPapPapQaqyaudaspaueaoFaufaugauhauiauiauiauiauiauiaujaukaulanqanqanqanqaocanqanqaocaumanqatnaocanqanqanqanqaqDaqDaqDasxaunasxaaaaaaaaaabhabhatqauoaupatqauqaurausatqatraqLarBautarBauuarAaqLauvauwauxarFauyarFasIaoVaoYauzarIakmasJauAauBauCauDauEauFasJauGauHauIasJauJauKauLasMauMauNauOauOauOauOauPauQauRasQasQasQasQasQasPasMasMasMaaaaaaanlaoEaoEaoEasdarjauSasZatWaoEauTauUauVarlaoEaoEaoEaoEauWaoEaoEatZauXaoEauYaoEaubauZavaavbaubavcavdaveaubaqEaqDaqDaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaoFapOapPapPapPapPapPapPapPapQaqyaudavfavgaoFaocaocavhaviavjavjavjavjavjavjavkavlavmachavnanqaocavoaruatnavpanqavqaocaocaocavramFaqDaqDaqEasxasyasxaaaaaaaaaatqatqatqasyasyatqasyasyasyatqavsaqLarBavtavuavvarBaqLarCavwaqOavxavyavzaqOavAaoYapaarIakmasJasJasJasJasJavBavCasJasJavDavEasJasJavFavEasMavGavHavIavJavJavKavLavMavNasQasQasQasQasQavOavPavQavRaaaaaaanlaoEaoEavSaoEarjavTaoEavUavVavVavVavVavWavVavXaoEaoEaoEaoEaoEaoEaoEaoEankauUaubavYavZavZaubawaawbawcaubaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaoFawdaweaweaweaweaweaweaweawfaqyawgawhawiaoFawjawkawlawmapVawnawoawpawqanqawravlachawsavmamFaocaumanqanqanqanqanqanqanqawtavramFaqEaqDaqEasxasyasxabqabqabqawuawvawwasyasyatqatqawxatqatqavsaqLaqLawyaqLawzaqLaqLawAawBaqOaqOaqOaqOaqOawCaoYawDarIakmasJatCatDawEatFawFawGawHawIawJawKawLawMawNawOawPawQavHawRawSawSawTawUavMavRasQasQasQasQasQavRawVawWavRabhabhankaoEaoEankankarjarjarjarjarjarjarjarjarjankawXawYankankankankankankankankaoEawZaubavZavZaxaaxbavYaxcaubaqDaqDaqDaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxdaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaxeaxfaoFaoFaxganqavhaxhaocaxiaxjaocaocanqawravlaxkaqEaxkanqaocaxlanqaxmaxnanqavqasuaxoaxpaxpaxpaxqaxqaxqaxraxsaxtaxqaxqaxqaxraxtaxraxraxsaxraxuaxsaxvaxwaxxaxyaxyaxyaxzaxAaxyaxyaxBaxCaxyaxyaxyaxyaxDaxEaxFaxFaxGaxHasJauAauCauCaxIauEaxJaxKaxLaxMaxNaxOaxPaxQaxRaxSaxTaxUawRaxVawSawTawUaxWavRasQasQasQasQasQavRaxXawWasMaaaaaaankaxYasgaoEaxZankayaaqxaybaycaqwankavTaqwankaydaoEankayeaoEankayfaygayhayiayiayiayjaykaylaymaynayoaypaubaucaucachachaucaucaucaucaqEaqEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayqayqayqayraysaytayuayvaywaywaywaywaywaywaywayxayyayzayAayBayCanqayDaxhayEayFayGaocayHanqawrayIaxpaxpaxpaxpayJaxpaulaocayGayKaocaocayLayMayNayOayPayPayPayQayPayRayPayPaySayTayUayVayVayVayVayVayVayWayXayYayZayZayZayZazaayZayZazaayZazbazbazbazbazbazcazdazeazfazgasJasJasJasJasJavBazhaziazjazkazlazmaznazoazpazqazrazsaztazuazuazvawUazwavNasQasQasQasQasQazxazyazzasMaaaaaaankaoEaoEaoEaoEaoEaoEazAavVavVavVavVavVavVavVazBaoEaoEaoEaoEauYaoEaoEazCazDazEazFazGazHazIavZavZavZazJaubaqEaqDaqDaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazKazLazMazNazOazPazQazPazRazSazRazTazUazUazVazWazUazXazYazUazUazZaxpaAaaxhaAbaocaocaAcaAdanqaAeaAfaAgaAgaAgaAgaAgaAhavlaAiaocanqaufaufavlaAjanqaAkaAlaAmaAmaAnaAmaAoaAmaAmaApaAqaAraAsaAsaAsaAsaAsaAsaAsaAtaAuaAvaAwaAxaAyaAzaAAaABaACaADaAEaAFaAGaAHaAIaAJaoYaAKaiMapdasJatCatDaALatFaAMaANaziaziaziazjaAOaAPaAQaARawPaASaATaAUaAVaAWaAXaAYaAZaBaasQasQasQasQasQaBbasMasMasMankankankaqwankankarlankankatWankankaBcankankarlankatWaxYankankarlankaoEaxYazCaBdatZaubaBeaBfaBgaBhaBiaBfaBjaubaqEaqDaqDaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayqayqayqayraysaBkaysaBlaBmaBlaBnazSazSaBoaBlaBmaBlaBpaBqaBraBsanqayDaxhanqanqanqanqaBtaBtaBuaBvaBtaBtaBtaBtaBtawrayIaxpaxpaxpaxpaxpaBwaAjaqHaAkaaaabhaaaaBxaaaaByaaaabhaaaaAqaAraAsaBzaBAaBBaBCaBDaAsaAtaBEaBFaBGaBGaBHaBIaBJaBJaBJaBKaBLaBLaBMaBNaAIaBOaoYaBPaiMapdasJauAauCauCaBQauEaBRaBSaBTaBUaBVaBWaBXaBXaBYaBXasMaBZaCaaCbaCcaCdaCeasMaBbasQasQasQasQasQaBbankatcaoEaCfaCgankankankatcaoEankatcatWankaChaoEankaCiaoEankaCjaCkankaClaoEankarlarlazCaCmarlaubaCnaBfaCoaCpaCoaBfaCqaubaqEaqEaqEaqDaqDaqDaqDaqDaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxdaCraxdaCsazQaBlaCtaCuaCvaCwaBlazQaCsaBlaxdaCxaCyanqaCzaCAaCBaCBaCCaCDaBtaCEaCFaCGaCHaCIaCJaCEaBtaCKaCLaCMaCNaCNaCNaCNaCNaCOaufaAkabhaCPaCPaCQaCPaCRaCPaCPabhaAqaAraAsaCSaCTaCUaCVaCSaAsaCWaCXaCYaCZaDaaDbaDcaDdaDeaDfaDgaDhaAGaAGaAGaDiaBOaoYaDjaiMapdasJasJasJasJasJaDkavCaBXaBXaBXaBXaBXaBXaDlaDmaDnaBXasMasMasMasMaDoaDpasMaBbasQasQasQasQasQaBbankankaoEaDqaCgankaDrankaoEaoEankaoEatWankaoEaoEankaoEaoEankatWauUankaoEaoEankaDsaoEazCaBdasZaubaubaubaubaubaubaubaubaubaucaucaucaucaucaqEaqDaqDaqDaqDaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBlaBmaBlaBlaBlaBlaBlaBlaBmaBlaaaaxdaDtaBsaDuaDvaDwaDuaDuaDuaDxaBtaCEaDyaDzaDAaDBaDCaCEaBtanqaDDaDEaDEaDEaDEaDEaDEaDFaDEaDGaaaaCPaDHaDIaDJaDKaDLaCPaaaaAqaAraAsaCSaDMaDNaDOaCSaAsasyaDPaAvaDQaDRaDSaDTaDUaDhaDVaDWaAGaAGaDXaAGaDiaBOaoYaBPaiMapdasJatCatDaDYatFaAMavCaBXaDZaEaaEbaEbaBXaDlaEcaDnaBXaEdaEeaEfaEgaEhaDpabhaEiaEjaEjaEjaEjaEjaEkaaaankaoEaElaEmankankankankankankaEnaEoankankankankankankaEpaEqaEraEsaEsaEsaEtaEuaEvaEwaExaEyaEzaEAaEBaEsaECaEDaEEaEFaEFaEFabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaEGaEGaEHaEGaEIaEIaEIaEIaEGaEHaEGaEGaxdaBnaEJaDuaEKaELaEMaENaEOaEPaBtaCEaEQaERaESaERaERaCEaBtaETaEUaEVaEWaEXaEYaEZaFaaFbaFcaDGabhaCPaFdaFeaFfaFgaFhaCPabhaAqaAraAsaFiaFjaFkaFlaFmaAsasyaFnaAvaFoaFpaFqaAGaFraFsaFtaFuaFvaDiaAIaFwaAIaBOaoYaBPaiMapdasJauAauBauCaFxauEaFyaFzaFAaFBaFCaFCaFDaFEaFFaFGaBXaFHaFIaFJaFKaFLaDpaaaabhaaaabhaaaabhaaaabhaaaankaxYaFMaFNaFOaFPankauTaoEaxYatWaoEankaaaankaCfaFNaFNaFQaFRaFSaFSaFSaFSaFSaFTaFUaFVaFWaFXaFXaFXaFYaFZaGaaGbaGcaGdaGeaGfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaEGaEGaEGaGgaGhaGiaGjaGkaGlaGmaGnaGhaGoaGpaBlaBnaGqaDuaGraGsaGtaGuaGvaGwaBtaGxaERaERaERaERaERaERaGyaGzaEUaGzaGAaGzaGzaGzaGzaFbaGzaDGaaaaCPaGBaGCaGCaGDaGEaCPaaaaAqaAraAsaGFaGGaGHaGIaGJaAsasyaGKaAvaAvaFuaGLaGMaGNaGOaAvaAvaAGaAGaAIaGPaAIaBOaoYaBPaiMapdasJasJasJasJasJaGQaGRaGSaGTaGUaGVaGVaGVaGVaGVaGWaBXaGXaGYaGZaEgaEhaDpankankankankankankankankankankankankankaHaankankankankaCfaHbaHcaHdaHeaHdaHfaHgaHhaHiaHjaHkaHkaHkaHkaHlaHmaHnaHlaHlaHlaHlaHlaHlaHlaHoaHpaHqaEFaEFaEFabhabhabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEIaHraHraEGaGhaHsaGhaHsaGhaHsaGhaHsaGhaGoaHtaBlaBnaHuaDuaHvaHwaHxaHyaHzaHAaBtaHBaERaERaERaERaERaHCaBtaHDaHEaHFaHGaGzaGzaGzaHHaHIaHJaDGabhaCPaHKaHLaHMaHNaHOaCPabhaAqaHPaAsaHQaHRaGHaHSaHTaAsasyaHUaAIaHVaAGaHWaHXaHYaAGaHZaAIaIaaIbaAIaHXaAIaIcaqRaIdaiMapdapdapdapdapdapFavBavCaBXaIeaIfaBXaIgaBXaIhaBXaIiaBXaIjaIkaIlaImaInaIoaIpaIqaIraIsaItaIuaIuaIuaIuaIvaIwaIuaIuaIxaIyaIzaIAaEsaIBaICaIDaIEaIFaIEaIGaIHaHkaIIaIJaHkaIKaILaIMaHlaINaIOaHlaIPaIQaIRaISaITaIUaIVaIWaIXaIYaIZaJaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaJbaJcaJcaJcaJcaJcaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEIaGhaGhaJeaGhaHsaGhaHsaJfaHsaGhaHsaGhaGoaHtaBlaBnaJgaDuaDuaJhaJiaJjaJiaDuaBtaBtaBtaBtaJkaERaJlaJmaBtaJnaEUaGzaGzaGzaJoaGzaGzaFbaJpaDGaaaaCPaCPaJqaJraJqaCPaCPaaaaAqaAraAsaJsaJtaJuaJvaJwaAsasyaJxaAIaJyaAGaJzaHXaJAaAGaJBaAIaDiaDiaAIaJCaAIaJDaJEaJFaiMapFaiMaiMaiMaiMaiMaJGaJHaBXaJIaJJaBXaJKaBXaJLaBXaJMaBXaJNaJOaJPaEgaJQaJRaJSaJTaJUaJUaJVaJWaJUaJXaJYaJZaKaaKbazEazEazEaKcaKdaKeaKfaKgaoEaKhaKhaKhaKiaKjaHkaKkaKlaKmaKnaKoaKpaHlaKqaKraHlaKsaKtaKuaKvaITaKwaHoaHpaGcaKxaKyaJaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaJbaKzaKAaKBaKCaKBaKDaKzaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEIaKEaKEaEGaGhaHsaGhaHsaGhaHsaGhaHsaGhaGoaHtaBlaBnazSaKFaKGaKHaKGaKIazSaKJaKKaKLaKMaBtaKNaERaERaKOaBtaKPaEUaGzaKQaKRaKSaKTaKUaKVaKWaDGaaaabhaaaaKXaKYaKXaaaabhaaaaAqaAraAsaKZaLaaLbaHSaLcaAsasyarCaAIaLdaAGaHXaHXaHXaLeaLfaAIaaaaaaaLgaLhaLiaLjaLkaLlaLmaLnaLgaaaaaaaLoaLpaLqaLraBXaLsaJJaJJaJJaLtaJJaJJaJJaBXaEgaLuaEgaEgaEgaDpaLvaLwaLwaLxaLyaLzaLwaLAaLBaLBaLCaLDaLEaLBaLFaKhaKhaLGaKiaKhaKhaKhaLHaLIaKiaKjaHkaLJaLKaLLaLMaLNaLOaHlaLPaLQaLRaLSaLTaLUaLVaLWaKwaHoaHpaGcaIYaLXaJaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaJbaLYaLZaMaaMaaMaaMbaMcaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaEGaEGaEGaMdaGhaGhaGhaGhaGhaGhaMeaGhaGoaMfaBlaBnazSaMgaMhaMiaMhaMjaMhaMhaMhaMkazSaBtaMlaMmaMlaBtaBtaMnaMoaMnaDEaDEaDEaDEaMnaMpaMqaDGaMraMsaMsaMtaMuaMvaMsaMsaMwaAqaMxaAsaMyaAsaMzaMAaMBaAsatqaqNaAIaAIaAIaDiaGMaDiaAIaAIaAIaLgaLgaLgaMCaLkaLkaLkaLkaLkaMDaLgaLgaLgaLoaMEaLqaMFaBXaBXaBXaBXaBXaBXaBXaBXaBXaBXaMGaMHaMIaMJaMKaMLaMMaMNaLwaMOaLyaMPaMQaMRaLBaMSaMTaLDaMUaLBaMVaMWaMXaMYaMZaNaaNaaNbaNcaNdaKiaKjaHkaNeaNfaNgaNhaLNaNiaHlaNjaNkaNlaNmaNnaNoaNpaHlaHlaNqaHpaGcaKxaKyaJaaaaabhabhabhabhabhabhabhaaaaaaaaaaaaaJbaNraNsaNtaNuaMaaMbaNvaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaEGaNwaEGaEIaEIaEIaEIaEGaEHaEGaEGaxdaNxazSaNyaNzaNAaNBaNCaNDaysaNEaNFazSaNGaNHaNIaNIaNJaNIaNIaNKaNIaNIaNIaNIaNIaNIaNLaNMaNNaNOaNPaNQaNQaNRaNQaNQaNQaNQaNSaNTaNUaNVaNQaNWaNQaNXaJEaNYaNZaOaaObaOcaLmaLmaLmaLjaLkaLkaOdaLkaLkaOeaOfaOgaOhaOiaOjaOkaLkaLkaOdaOlaOmaOnaOoaOpaOqaOraOsaLkaOtaLkaEgaOuaOvaMHaMHaMHaOwaOxaOyaOzaOAaLwaOBaOCaMRaODaOEaLBaOFaMTaOGaOHaLBaLBaOIaOJaOKaOLaOMaONaOOaOPaOQaKiaKjaHkaORaORaOSaOTaORaORaHlaOUaOVaHlaOWaNpaNpaNpaHlaOXaOYaOZaGcaEFaEFaEFaPaaPaaPaaPbaPbaPbabhabhaaaaaaaaaaJbaJbaJbaJbaJbaJbaPcaPdaJbaJbaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBlaBmaBlaBlaBlaBlaBlaBlaBmaBlaaaaxdaDtaPeaNyaPfaPgaPhaPiaPjaysaPkaNFaPlaKFaNHaPmaPnaPoaPpaPqaPraNIaNIaNIaNIaNIaNIaNIaNMaNIaNHaPsaNIaNIaPtaPuaPvaPvaPvaPwaPxaPvaPyaPvaPzaPvaPAaPBaPCaPDaPEaLkaLkaLkaLkaLkaLkaLkaLkaOdaLkaLkaPFaPGaPHaPIaPJaPKaPLaLkaLkaOdaLkaPMaLkaLkaLkaLkaLkaLkaLkaPNaLkaEgaPOaMHaMHaPPaPQaPRaPSaPTaPUaPVaLwaPWaPXaPYaLwaLwaLBaPZaMTaQaaQbaQcaLBaKhaKhaQdaKhaKhaKhaQeaQfaQeaKiaKjaHkaQgaORaORaQhaORaQiaHlaHlaHlaHlaHlaHlaHlaQjaHlaHoaHoaHpaGcaQkaQlaEFaQmaQnaQoaQpaQqaPbabhaaaaaaaaaaaaaJbaQraQraQraJcaQsaMaaQtaQuaQvaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxdaCraxdaBlazQaBlaQwaQxaQyaQzaBlazQaBlaBlaxdaBnazSaNyaQAaQBaPhaPiaPjaysaQCaNFazSaKFaNHaNIaQDaQEaQEaQEaQFaQGaQHaQEaQIaQEaQEaQEaQJaQEaQKaQEaQEaQEaQLaQMaQNaQOaQOaQPaQQaQRaQSaQTaQUaQVaQWaQXaQYaQZaLkaRaaRaaRaaRbaRaaRaaRaaRaaRcaRaaRaaRaaRaaRaaRaaRaaRaaRaaRaaRaaRdaRaaRaaRaaRaaRaaRaaRaaRaaLkaLkaLkaEgaReaRfaRfaRfaRfaRfaRgaMLaRhaOAaLwaLwaRiaLwaLwaRjaLBaRkaRlaRmaQbaRnaLBaKhaRoaRpaRqaRraRqaRqaRsaRtaKiaKjaHkaRuaRuaRvaRwaRxaRxaRyaHkaRzaRAaRBaEFaRCaIYaRDaHoaHoaREaRFaEFaRGaEFaRHaRIaRJaRKaRLaPbaPbaPbaPbaPbaPbaJbaRMaRNaRNaROaMaaMaaMaaMaaQtaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRPaRPaRPaRQaysaytaysaBlaBmaBlaBnazSazSaBoaBlaBmaBlaRRaRSaRTazSaNyaRUaRVaNBaRWaNDaysaRXaNFazSaRYaRYaRYaRZaSaaSaaSaaSaaSaaSaaSbaScaSaaSdaSaaSaaSaaSeaSfaSgaSfaShaSiaSjaNIaNIaSkaSlaSmaNIaSnaSoaNIaSpaSpaLkaSqaOcaLgaLgaLgaLgaLgaLgaLgaLgaSraSsaStaSuaStaStaStaSvaStaSwaStaSxaSraLgaLgaLgaLgaLgaLgaLgaLgaLjaLkaLkaLwaSyaSzaSAaSAaSAaSAaSAaMLaSBaSCaLwaSDaSEaSFaLBaLBaLBaLBaSGaLDaLBaLBaLBaLBaRqaSHaSIaSIaSIaSIaSJaRqaKiaKjaHkaSKaORaRvaRwaORaORaSLaHkaSMaSNaSOaEFaHoaKxaSPaSQaSQaSRaSSaSTaSUaEFaSVaSWaSXaSYaSYaSZaTaaTaaTbaTaaTcaTdaRNaTeaTeaJcaTfaTgaThaMaaQtaJcaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTiaTjaTkaTlaTmazPazQazPaTnazSaToaRTazSazSaTpaToazSaTnaRTazSazSazSaTqaTraTsaTtaTuaTvaTvaTwaTxazSaRYaTyaRYaTzaSaaTAaTBaTCaTDaTEaTBaTFaTGaTHaTIaTJaTKaSeaTLaTMaTNaShaTOaSjaSjaTPaSjaSjaSpaSpaTQaTRaSpaSpaSpaTSaLkaOcaLgaaaaaaaaaaaaaaaaaaaaaaSraTTaTUaTVaTWaTXaTYaTZaUaaUbaUcaUdaSraaaaaaaaaaaaaaaaaaaaaaLgaLjaLkaUeaUfaUgaSAaUhaSAaSAaSAaSzaMLaSBaUiaUjaSAaUkaUlaLBaUmaUnaUoaUpaUqaUraUsaUtaLBaRqaUuaUvaUvaUvaUvaUwaRqaKiaUxaHkaUyaUyaRvaRwaUzaUzaUAaHkaHkaUBaHkaEFaUCaIYaRDaUDaUEaREaRFaEFaEFaEFaPbaUFaUGaPbaPbaPbaPbaPbaPbaPbaUHaJbaJbaJbaJbaUIaThaThaThaMaaQtaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaRPaRPaRPaRQaysaUJayuaUKaULaULaULaULaULaULaULaULaUKaULaUMazSazSaKFazSaUNaUOazSaUPazSaUQaURaUSaRYaUTaRYaTzaSaaUUaTBaTBaTBaTBaTBaTFaUVaTBaTBaTBaTKaSeaUWaTMaTMaShaTOaSjaUXaUYaUYaUZaSpaVaaVbaVcaVdaVeaVfaLkaLkaOcaLgaaaaaaaaaaaaaSraSraSraSraVgaVhaViaVjaVkaVlaVmaVnaVoaVpaVqaSraSraSraSraaaaaaaaaaaaaLgaLjaLkaLkaVraSAaVsaVtaVuaVvaVwaVxaVyaSBaUiaVzaSAaVAaSAaVBaVCaVDaVEaVFaVGaVHaVIaVCaVJaVKaVLaUvaVMaVNaUvaVOaRqaKiaKjaHkaORaORaRvaRwaORaORaORaVPaVQaORaVRaEFaNqaVSaVTaUDaUDaVUaVVaVWaEFaVXaVYaSWaSXaSYaSYaVZaTaaTaaTaaTaaWaaWbaMaaWcaMaaMaaMaaMaaMaaMaaWdaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxdaxdaxdaxdaBlaBlaBlaBlaBlaBlaBlaBlaxdaxdaysaKFaWeaWfaWfaWgaWfaWfaWfaWfaWhaWfaWiaRYaUTaWjaWkaSaaWlaTBaWmaWnaWoaWpaWqaWraWsaTBaTBaWtaSeaWuaWvaWwaShaTOaSjaWxaWyaWzaWAaSpaWBaWCaVcaWDaWEaVfaLkaLkaOcaLgaLgaLoaWFaSraSraWGaWHaWIaWJaWKaWLaWMaWNaWLaWOaWLaWPaWQaWRaWSaWTaWUaSraSraWFaLoaLgaLgaLjaLkaLkaLwaWVaSAaWWaSAaWXaSAaSzaSAaSBaUiaWYaWZaSAaXaaLBaVCaVCaXbaXcaXdaXeaXfaVCaXgaXhaXiaUvaXjaXkaUvaXlaXmaKiaKjaHkaXnaXnaRvaRwaXoaORaORaXpaORaXqaXraEFaXsaXtaXuaUDaUDaXvaXwaHoaEFaXxaSYaSWaSXaSYaRLaPbaPbaPbaPbaPbaPbaJbaTgaMaaXyaXzaMaaXyaXzaMaaXAaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXBaXCaXCaXDaXCaXCaXCaXEaXCaXCaXCaaaaBlaCtaBraXFaWfaXGaXHaXIaXJaXIaXKaXLaXIaWiaUTaUTaXMaXNaSaaXOaXPaXQaXRaXSaXTaXUaXVaXWaXXaXYaTKaSeaSeaSeaSeaShaTOaSjaSjaSjaSjaSjaSpaXZaYaaYbaWDaYcaVfaLkaLkaOcaLmaLmaYdaYeaYfaSraYgaYhaYiaYjaYkaYjaYlaYmaYnaYoaYpaYqaYraYpaYsaYtaYuaSraYvaYeaYwaYxaLmaLjaLkaLkaVraSAaSAaSzaSAaYyaSAaYzaSAaSBaUiaVzaSAaSAaSAaYAaVCaVCaYBaYCaYDaXcaXfaYEaLBaYFaXiaYGaUvaUvaUvaXlaYHaKiaYIaHkaHkaHkaRvaRwaYJaYKaORaYLaYMaNgaYNaEFaHoaVSaVTaUDaUDaYOaVVaYPaEFaYQaSYaSWaSXaSYaRLaPbaaaabhabhabhaaaaJcaTgaMaaXyaXzaMaaXyaXzaMaaXAaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXBaYRaYSaYTaYUaYUaYUaYUaYUaYUaYUaXDaYVaBlaBlaBnazSaWfaYWaYXaYYaXGaYZaZaaXLaXIaWiaZbaZcaZdaRYaSaaZeaZfaZgaZhaZiaZiaZjaZiaZiaZiaZkaZlaSaaZmaZnaZoaZpaZqaZraZsaZtaZuaZvaZvaZvaZvaZvaZvaZvaZvaLkaLkaLkaLkaLkaZwaZxaZyaZzaZAaZBaZCaZDaZEaZFaZGaZHaZIaZJaZKaZLaZMaZNaZCaZOaZPaZQaZRaZSaZTaZUaZVaZWaLkaLkaLwaZXaSzaZYaSzaSAaVsaZZaVuaSBaUiaVzaVzbaababaLBaVCaVCaVCbacaVCaVCaXfbadaLBaRqaXiaUvaUvaUvaUvaXlaRqaKibaebafbagbahbaibajbakbakbalaRvaRvaRvaRvbamaUDaUDaUDaUDaUDbanbaobapbaqbarbasbatbauaRKbavaPbabhabhaaaabhabhaJcaTgaMaaXyaXzaMaaXyaXzaMaaXAaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabawaYSaYSaYSaYSaYSaYSaYSaYSaYSaYSbaxbayazQbazazSazSaWfbaAbaBbaCbaDbaDbaEbaFbaGaWibaHaUTaZdbaIbaIbaIbaJbaKbaIbaLbaMbaNbaObaPbaPbaQbaRaSabaSbaTbaUbaVbaWbaXbaUbaYbaZbaZbbabbbbbcbbdbbebbfaZvaLkaLkbbgbbhbbibbjbbkbblaSrbbmbbnbbobbpbbqbbrbbrbbsbbtbbubbvbbwbbxbbybbobbzbbmaSrbblbbkbbAbbBbbhbbCaLkaLkaVraSAaSAaSzaSAaSAaSAbbDaSAbbEaSAbbFbbGaSAaSAbbHbbIbbJaVCaVCbbKaVCbbLbbMaLBbbNbbOaUvbbPbbPbbQbbObbRbbSbbTbbUbbUbbVbbWbbXaRvaRvbbYaRvaRvaRvaRvbambbZbcabcabcabcabcabcbbccbcdbcebcfbcgbchaSYbciaPbaaaabhabhabhaaaaJcaTgaMaaXyaXzaMaaXyaXzaMaaXAaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXBaYRbcjbcjbckbckbckbckbckbckbckaXDaBlaBlaBlaBnbclbcmbcnbcobcpbcpbcpbcpbcqaXGaWibcrbcsaZdbaIbctbcubcvbcwbaIbcxbcybczaSabcAbcBbcCbcDaSabcEbcFbcGbcHbcGbcIbcJbcKaZvbcLbcMbcMbcNbcObcPbcQaZvaOdaOdbcRbcSbcSbcSbcSbcSbcSbcTbcUbcVbbqbbsbcWbcXbcXbcYbcXbcXbcZbbubbxbdabdbbdcbdabdabdabdabdabdabddaOdaOdaLwbdebdfbdgbdhaSAaSAaSAbdibdjbdkbdlbdmbdnaSAaLBaLBaLBbdobdpbdpbdpaLBaLBaLBbdqaUvaUvbdrbdsbdtbdubdsaKibdvbdwbdxaHkbdybdzbdAaYKaORbdBaXpaYKbdCaEFbdDaHobdEaUDaUDbdEaHobdFaEFbdGbdHbdIaSXaSYaRLaPbaPbaPbaPbaPbaPbaJbaTgaMaaXyaXzaMaaXyaXzaMaaXAaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXBaXCaXCaXDaXCaXCaXCaXEaXCaXCaXCaaaaBlbdJaRTbdKaWfaXIaYXaXIaXGbdLaXIbdMaXIaWibdNbdObdPbaIbaIbaIbdQbdRbaIbcybdSbcyaSabcAbcBbcCbcDaSabcEbcFbdTbdUbcGbdVbcJbcKaZvbdWbcMbcMbdXbdYbcMbdZbeaaLkaLkbbgbcSbebbecbedbeebefbegbehbeibejbekbcXbcXbelbembelbcXbcXbenbeobepbeqberbesbetbeubevbewbdabbCaLkaLkaLwaLwaLwaLwaLwbexaSCbexbeyaLwaLwaLwaLwaLwaLwaLBbezbezbezbezbezbezbeAbezaLBbdsbeBbeBbdsbdwbdwbdwbdwaKibdvbdwbdxaHkaHkaHkbeCaHkbeCaHkbeCaHkaHkaEFaEFbeDbeDbeDbeDbeDbeDaEFaEFbeEaSYbeFaSXaSYaSYbeGaTaaTaaTaaTaaWabeHaMabeIaMaaMaaMaaMaaMaaMaaWdaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhaxdaxdaBlaBlaBlaBlaBlaBlaBlaBlaxdaxdaysazSazSaWfaWfaWgaWfaWfaWfaWfaWhaWfaWibeJbeKbeLbaIbctbeMbdQbeNbaIbeObePbeOaSabcAbcBbcCbcDaSabcEbcFbcGbeQbeRbeSbcJbcKbeTbcPbeUbeVbeWbeXbcMbdZbeYaLkaLkbbgbeZbfabefbfbbfcbfcbfdbfebffbejbfgbcXbcXbelbfhbelbcXbcXbfibeobfjbfkbflbfmbfnbfobewbfpbdabbCbfqbfraJEbfsbdwbdwbdwbdwbdwbdwbdwbdwbftbdwbdwbdwbdwbfubdwbdwbdwbdwbdwbdwbdwbdwbfsbdwbdwbdwbdwbdwbdwbdwbfvbfwbfxbfybdwbfzbdwbdwbdwbdwbdwbdwbdwbdwbdwbfubfAbdwbdwbdwbdwbdwbdwbfsbfBaVYaSYbfCbfDbfEbfFaPbaPbaPbaPbaPbaUHaJbaJbaJbbfGaJbaPdaJcbfHaJcaJcaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBlayvaywaywaywaywaywaywaywaywayvaywbfIazUazUbfJbfKbfLbfMbfMbfMbfNbfObfPaRYbfQbfRbfSbaIbaIbaIbfTbfUbaIaSaaSaaSaaSabcAbcBbfVbfWaSabcEbcFbcGbfXbfYbfZbgabgbbgcbgdbgdbgdbgebgfbcPbggaZvbghaPMbbgbgibgjbefbgkbglbgmbgnbgobgpbejbgqbelbcXbgrbgsbgrbcXbelbcZbeobgtbfkbflbfmbgubfobewbewbdabgvaLkaLkaJEbfsbdwbdwbdwbdwbdwbdwbdwbdwbdwbgwbdwbdwbdwbdwbdwbgxbbUbbUbbUbbUbgybdwbfsbdwbdwbdwbdwbdwbdwbgzbgAbgBbgCbgDbgDbgDbgEbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgFbgGbgHbgIbgIbgJaSXbgKaSYbgLaTaaTabgMaTabgNbeHbgObgObgObgPaJbaQuaQtaQtbgQaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaBlazRazSazRaBrazSazSbgRazRazSazRaBrazSazSazSbgSbgTbgSbgSbgSbgSbgUbgVaRYaRYaRYbgWaZdbaIbctbgXbgYbeNbaIbgZbhabgZaSaaSaaSabhbbhcaSabcEbcFbhdbhebhfbhgbcJaRYaZvaZvaZvaZvaZvaZvaZvbhhaZvbhiaLkbbgbgibhjbefbgkbhkbhlbgnbgobefbejbhmbhnbcXbhobhpbhqbcXbhrbhsbeobhtbhubhvbhwbhxbhybewbhzbdabhAbhBbhCaJEbfsbdwbdwbhDbdwbhEbhFbhFbhFbhFbhGbhFbhFbhHbdwbdwbdwbdwbdwbhIbhJbhKbhLbfsbdwbdwbdwbdwbdwbhMbhNbhObhPbhQbdwbdwbdwbdwbdwbhRbhSbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbfsbhTbhUbhVbhWaSXaSYaRLaPbaPbaPbaPbaPbaPbaJbbgObgObgObgOaJbaQtaQtaQtbhXaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaysaBlbhYaBlaBnazSazSaBoaBlbhZaBlaBpbiabibbibbgSbicbidbiebifbigbgUbihbiibijbijbikbilbaIbaIbaIbimbinbaIaRYaRYaRYaRYbiobipbiqbirbipbisbcFbitbiubcGbcIbcJbivbcJbiwbixbixbixbixbiybizbiAbiBaLkbbgbcSbefbiCbiDbiEbiFbiGbgobiHbiIbbrbiJbiKbiLbiLbiLbiMbiNbbwbiObiPbiQbiRbiSbiTbiUbewbiVbdabbCaLkaLkbiWbiWbiWbiWbiWbiWbiWbiXbiYbiYbiYbiZbjabiXbjbbjbbjbbjbbjbbjcbjcbjcbjdbjcbjcbjcbjcbjebdwbhRbjfbjgbjhbjibdwbdwbdwbjjbjjbjkbjkbjkbjkbjkbjlbjmbjmbjmbjnbjmbjobjpbjmbjmbjqbjrbjrbjrbjrbjsbjtbjubjvaPbabhaaaaaaaaaaaaaJbbjwbjwbjxbjxaJbaQuaQtaQtbgQaJcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaCraxdaCsazQaBlaCtaCubjybjzaBlazQaCsaBlaxdaCraysbgSbjAbjBbjBbjBbjCbjDbjEbjFbipbipbjGbjHbaIbctbjIbimbjJbaIbjKbjKaUTbjLbjMbjNbjObjPbjPbjQbjRbjSbcHbjTbjUbcJaUTbjVbjWbiAbjXbjYbjZbkabkbbkcbkdbkebkfbcSbkgbcVbkhbkibkjbkkbgobklbcSabhbkmbknbknbknbknbknbkoabhbdabkpbkqbkrbksbewbktbewbkubdabbCaLkbkvbiWbkwbkxbkybkzbkAbiWbkBbkCbkCbkCbkDbkEbkEbkFbkGbkHbkIbjbbkJbkKbkLbkMbkKbkNbkObjcbjgbkPbjgbjgbjgbkQbjibkRbkSbkRbkTbkTbjkbkUbkVbkWbjkbkXbkYbkXbjkbkZblabkZbjrblbblcblbbjrbldblebjrblfblgaPbaPbaPbabhabhaaaaaaaaaaJbaJbblhblhblhblhblhblhblhaJbaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaabhabhabhabhaBlbliaBlaBlaBlaBlaBlaBlbljaBlabhabhabhaaabgSblkbgSbllbjBblmblnbgSaUTaWjbloblpblqblrblrblrblrblrblrblsbltblublvblwbcJbcJbcJbcJbcJbcJbcJblxblybcJbcJbcJblzblAblBblCblDblEblDblFblGbiBaLkblHbcSblIbcVbcVbcVbcVbkkbgoblJbcSabhbkmbknblKblLblMbknbkoabhbdablNbfkblOblPbewbiUbewbewbdabbCaLkaLkbiWblQblRblSblSblTblUbkEblVbkEbkEbkDbkEbkEbkFblWblXblYbjbblZbkKblZbmablZbmbbkKbjcbmcbmcbmdbmebjgbmfbjibmgbmhbmibmjbmjbjkbmkbmlbmmbmnbmobmpbmqbjkbmrbmsbmtbjrbmubmvbmubmwbmxbmxbjrbmyblgaaaabhaaaabhaaaaaaaaaabhaaaaJbbmzbmzbmzbmzbmzbmzbmzaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAaaaaaaaaaaaaaaaaaabmAbmBbmAbmAbmAbmAbmAbmAbmCbmAaaaabhabhaaabgSbmDbmEbmFbmGbmGbmHbmIbmJbmKaRYbmLbmMbmNbmNbmNbmObmObmObmObmObmObmPbmQbcJbmRbmSbmTbmUbmVbmWbmXbmYbcJbmZbnabnbbiAbiAbncbndbnebnfbngbnhbnibnjbbgbnkbnlbnmbnnbnobcVbnpbgobcSbcSabhbkmbknblLbknblLbknbkoabhbdabdabnqbflbnrbewbnsbntbnubdabbCaLkaLkbiWbnvblRbnwbnxbnybnzbkEbnAbnBbnCbnDbnEbnFbkFbnGbnHbnIbjbblZbkKblZbmablZbmbbnJbjcbnKbnLbnMbnNbjgbkQbjibnObnPbnPbnQbnRbnSbnTbnUbnVbmmbmmbmmbnWbjkbnXbnYbnZbjrboabmxbmxbobbocbodbjrbmyblgboeboeboeboeabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabofbmAbmAaaaaaaaaaaaabmAbmAbogbogbohboibogbogbogbogbmAaaaabhabhaaabgSbojbgSbokbolbolbombgSbonbonaRYboobopboobooboobopbooaRYaRYbcJbcJblyboqbcJbmVbmVbmVbmVbmVbmVborbosbotboubovbowboxboybozboyboAboBboCblGbiBboDboEboFboGboHboIboJbcVbkkbgobcSabhabhboKboLblMboMblKboNboOabhabhbdaboPboQbdabdabdabdaboRbdaboSaLkaLkbiWboTboUboVblSblTboWbkEboXboYboZbpabpbbpcbjbbpdbpebpfbjbblZbkKblZbmablZbmbbkKbjcbjgbjgbjgbjgbjgbkQbjibpgbphbpibpjbpkbplbpmbpnbpobpobppbmmbpqbjkbprbnYbpsbjrbptbpubpvbpwbpxbpybjrbmybpzbpAbpBbpCbpDaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbpGbmAaaaaaabmAbmAbmAbogbogbogbogbogbogbogbpHbmAbmAbmAabhaaabgSbpIbmEbpJbolbpKbpLbgSaaaaaaaaabpMbpMbpMbpMbpMbpMbpMaaaaaabpNbpObpPbpQbpRbpSbmVbmVbmVbmVbmVbmVbpTbpUbpVbndbpWbpXbpYbpZblGbqabiAbiAbiAbqbbqcaOdbnkbqdbqebqebqebqebqfbqgbqhabhaaabkmbqibknbknbknbqjbkoaaaabhbqkbqlbqmbqnbqobqpbqkbqqbqkbqraLkbqsbiWbqtbqubqvbqwbqxbiWbqyboXboYbqzbqAbkEbqBbjbbqCbqDbqEbjbbqFbqGbqHbqIbqJbqKbqJbqLbqMbqNbqMbqMbqMbqObjibqPbmhbqQbqRbqSbqTbqUbqVbqWbqWbqXbqYbqZbjkbrabrbbrcbjrbrdbrebrfbrgbmxbrhbjrbribrjbrkbrlbrlbrlbrlbrlbrlbrmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbrnbpGbmAbmAbmAbrobmAbrpbogbogbogbogbogbogbogbrqbrrbrsabhaaabgSbrtbmEbmEbmEbgSbgSbgSaaaaaaaaabpMbrubrubrubrubrubpMaaaaaabpNbrvbrwbrxbrybrybrybrybrybrybrybrybrybrzbrAbrBbrCbrDbrEblGbrFblDbrGblDbrHbiBbrIbrJbnkbnkbqhbrKbrLbrMbrNbrObqhaaaaaabkmbrPbrQbrRbrQbrSbkoaaaaaabqkbrTbrUbrVbqkbrWbqkbqqbqkbqraLkbrXbiWbrYbqubrZblSbsabiWbsbbscbsdbsebsfbkEbsgbjbbkFbshbsibjbbjcbsjbjcbskbslbsmbsnbsnbsnbsnbsnbsnbsnbsobspbsqbphbpibsrbssbstbsubsvbsvbsvbppbmmbswbsxbsybszbsAbsBbsCbsDbsEbsFbsGbsHbjrbsIbsJbsKbsLbsLbsLbsLbsLbsMblgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbrnbrnbmAbmAbrobogbmAbrpbogbogbogbogbogbrobmAbmAbmAbmAbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubpMbsNbpNbpNbsObrwbmXbmVbsPbsPbsPbsPbmVbmVbmVbmVbsQbsRbsSbsTbsUbsVbsWbsXbsYblDblDbrHbsZbtabtbbtcbtdbtebtfbtgbthbtibtjbqhabhaaabkmbtkbtlbtlbtlbtmbkoaaaabhbqkbtnbtobtpbqkbtqbqkbqqbqkbtraLkbrXbiWbtsbqubttbtubtvbiWbtwboXbkDbsebtxbtybsbbsbbtzbtAbtBbtCbtDbtEbtFbtGbtHbtIbtJbtKbtLbtMbtNbtObtPbkQbtQbtRbtSbtTbtUbtVbjkbtWbsvbsvbtXbppbmmbtYbtZbuabubbucbsBbudbuebufbugbmxbuhbuibujbjrbukbukbukbukbukbukbmyblgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabulbmAbpGbrnbumbogbunbogbmAbrobuobogbogbogbrobmAbrobupbupbrobmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubuqburbusburbutbuubuvbuwbuxbmVbmVbmVbmVbmVbuybcJbcJbuzblDbuAbuBbuCblGbuDblDbuEblDbuFbqrbrIbuGbuHbuIbuJbuKbuLbuMbtibuNbqhaaaaaabkmbuObuPbuQbuPbuRbkoaaaaaabuSbuTbuUbuSbuSbuSbuSbuVbuSbuWaOdbuXbiWbiWbuYbuZbvabiWbiWbvbbvcbvdbkEbkEbkEbkEbkEbvebvfbvgbvgbvgbvhbvgbvibtHbtIbvjbvkbvlbvmbvnbvobtPbvpbvqbvrbvsbvsbvtbvubjkbvvbmmbmmbvwbppbmmbvxbvybvzbnYbvAbsBbsBbvBbvCbvDbvBbsBbjrbjrbjrbvEbvFbvGbvHbvIbukbvJblgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbmAbogbogbogbrobmAbmAbmAbmCbmAbmAbrobogbvKbvKbvLbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubvMbvNbvObvPbvQbmVbmXbmVbsPbsPbvRbsPbmVbmVbvSbvTbcJbvUblDbuAbuBblDbvVblDblDbvWblDbuFbqrbvXaLkbuHbvYbvZbwabwbbwbbwcbwdbqhabhabhbwebwfbwgbwhbwibwjbwkabhabhbwlbwmbwnbwobwpbwqbwrbwsbuSbwtaLkbwubwvbwwbwxbwybwzbwAbwBbwCbwDbwEbwFbwFbwFbwFbwFbwGbwHbwFbwFbwFbwIbnFbwJbwKbtIbwLbwMbwNbwNbwObtObtPbkQbjibwPbwQbwRbwSbwSbjkbwTbwUbwVbsxbwWbmmbwXbsxbwYbwZbxabxbbxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxmbxmbxnbxobxpblgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbrobogbmAbogbogbogbogbogbogbogbogbrobmAbogbogbogbogbogbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubxrbpMbsNbpNbpNbxsbmVbmXbmVbmVbmVbmVbmVbmVbmVbvSbxtbcJbxubxvbozbxwboybxxboybxyblDbxzbrHbxAbvXaLkbuHbuIbqhbxBbxCbxDbxEbxFbqhaaaaaaabhbkmbxGbxHbxGbkoabhaaaaaabwlbxIbxJbxKbxLbxMbxMbxNbxObxPbxQaPCbxRbxSbxTbxUbxVbxWbxXbxWbxWbxYbxZbyabybbybbybbycbkEbkEbkEbydbyebyebyfbtIbtIbtIbygbyhbyibvnbtObtPbjhbjibyjbyjbyjbyjbyjbjkbsxbsxbsxbsxbykbylbykbsxbymbynbyobypbypbypbyqbyrbysbytbyubyvbywbyxbyybyzbyAbyBbyCbyDbyEboebyFbyFboeabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbmAbmAbmAbmAbmAbmAbmAbmAaaabmAbmAbrobogbogbogbmAbogbogbmAbmAbmAbyGbmAbogbogbmAbogbogbogbogbogbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubyHbvNbvObvPbrvbyIborbyJbpSbmVbyIbmVbmVbmVbvSbyKbcJbyLblDbuAbyMbuDbyNbyOblDblDbyPbrHbxAbvXbbgbuHbyQbqhbyRbySbyTbyUbrObqhaaaaaaabhbyVbyWbtlbyXbyYabhaaaaaabwlbyZbzabzbbzcbzdbzebzfbuSbzgaLkaLkbsbbsbbzhbzibvebzjbzkbzlbzmbzmbzlbzkbzlbzkbzlbzkbzlbzkbjabjabyebznbwNbzobzpbtIbygbzqbzrbzsbztbtPbzubzvbzwbzxbzybypbypbzzbypbypbzAbzBbzCbzDbzEbypbzFbzGbzHbzIbzIbzIbzJbzJbzJbzJbzJbzKbzLbzMbzNbzMbzObzMbukbzPbzQbzRbzSbzTboeabhaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbrobogbogbogbogbogbogbogbrobmAbmAbmAbrobogbogbogbogbxqbogbogbmAbzUbzVbogbmAbogbogbxqbogbogbogbzWbzXbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubzYbzZbAabzZbAbbAcbAbbAbbAbbAbbAbbAdbAebmVbvSbAfbcJbAgbAhbAibAjbAkbAlbAmbAmbAmbAlbAlbAnbvXaMDbAobuIbqhbApbAqbArbAsbAtbqhaaaaaaabhbAubAvbwhbAwbAxabhaaaaaabwlbAybAzbAAbABbzdbzebzfbuSbACaLkaLkbADbAEbAFbzibAGbAHbzkbAIbAJbAKbALbAMbANbAObAPbAObAQbzkbkEbkEbyebARbwNbASbATbAUbAVbAWbAXbAXbAYbAZbBabBbbBcbBdbBebBfbBgbBfbBfbBhbBfbBfbBibBjbBfbBfbBkbBlbBmbzIbBnbBobBpbBqbBrbBsbzJbBtbBubBvbBwbBxbBubBybukbzPblgbBzbBAbBBboeaaaaaaaaaaaaaaaaaaaaaabhbBCabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmCbogbogbogbogbogbogbogbogbogbmCbogbmCbogbogbogbogbogbBDbogbogbmAbogbogbogbmAbogbogbBEbogbogbogbBFbBGbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbrubrubrubrubrubpMbsNbpNbpNbpNbcJbpNbpNbpNbBHbBHbBHbBHbBIbBJbBJbBHbBHbBKbBLbBMbBKbAlbBNbBObBPbBQbAlbxAbvXaOcaLoaLobqhbqhbqhbqhbqhbBRbqhaLgaLgaLgbBSbBTbxHbBUbBVaLgaLgaLgbuSbuSbuSbuSbuSbuSbuSbuSbuSbACaLkbBWbzkbzkbBXbBYbzkbzkbzkbBZbAJbCabAJbCbbCcbCdbCebCfbCgbCbbkEbkEbyebChbCibCjbCkbClbCmbCnbCkbCkbCobCpbCqbCrbCsbCsbCsbCsbCtbCsbCsbCsbCubCubCvbCwbCxbCxbvzbCybvAbzIbCzbCAbCBbCCbCDbCEbCFbukbukbCGbCGbCGbukbCHbukbzPblgbCIbBAbCJboeabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbrobogbogbogbogbogbogbCKbrobmAbmAbmAbrobogbogbogbogbxqbogbogbmAbogbCLbogbmAbogbogbxqbogbogbogbzWbzWbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbCMbrubrubrubCMbpMaaaaaaaaaaaaabhaaaaaaaaaaaabBHbCNbCObCPbCQbCRbCSbBJbCTbCUbCVbCWbAmbCXbCYbCZbDabAlbxAbvXaLkaLkaLkbDbaOsaOraOdbDcbDdbDeaZVaZVaZVbDfbDgbDhbDibDjaLkaLkaLkaLkaOsaLkaOdaLkaLkaLkbDbaLkbACaLkbDkbzkbDlbDmbDnbDobDpbzkbDqbAJbDrbAJbCbbCcbCcbDsbDtbDubCbbkEbDvbyebwNbDwbDxbDybDzbDAbDBbDCbDDbtPbtPbjhbDEbCsbDFbDGbDHbDIbDJbDKbCsbDLbDMbDNbDObDPbCxbvzbCybDQbDRbDSbDTbDUbDVbDWbDXbCFbDYbDYbDYbDYbDYbDYbDYbukbzPblgbDZbzTbzTboeabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbmAbmAbmAbmAbmAbmAbmAbmAaaabmAbmAbrobogbogbogbmAbogbogbmAbogbEabEbbmAbogbogbmAbogbogbogbogbogbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpMbpMbEcbEcbEcbpMbpMaaaaaaaaaaaaabhaaaaaaaaaaaabBJbEdbEebEfbEgbEhbEibEjbEkbElbEmbEnbEobEpbCZbEqbErbAlbxAbEsaLkaLkaLkaLkaLkaLkbEtaLkbvXaLkaLkaLkaLkaLkbEubEvbEwaLkaLkaLkaLkaLkaLkaLkaOdaLkaLkaLkaLkaPMbACbExaLkbzkbEybEzbEAbEBbDpbzkbECbAJbAKbEDbzkbEEbEFbEGbEHbEIbzkbkEbkEbyebyebyebyebyebtPbtPbtPbtPbtPbtPbEJbkQbEKbCsbELbEMbENbEObEPbEQbCsbERbESbETbEUbEVbCxbvzbEWbEXbEYbEZbFabFabFbbFcbFdbCFbDYbDYbFebFfbDYbDYbDYbukbzPblgbCIbBAbFgboeabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbrobFhbmAbogbogbmAbyGbmAbmAbmAbogbogbmAbzWbogbogbogbogbxqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFibFjbFjbFjbFkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBHbFlbFmbFnbFobFpbFqbFrbFsbFtbFubFsbFvbFwbFxbFybFzbAlbFAbFBboEboEboEbFCboEboEbFDboEbFEaLkbFFbFGaLkaOlbFHbFIbFJbFKbFLbFMaZVaZVbFNaZVbFObFPaZVbFQbFRbFSbFTaLkaLkbzkbFUbFVbFWbzlbzlbzkbzlbFXbzlbzkbzkbzkbzkbzkbzkbzkbzkbkEbkEbkEbFYbFZbzjbGabGbbGcbGdbGebGfbGbbGgbsobGhbCsbGibGjbGkbGlbGmbGnbCsbGobGpbGqbGrbGsbCxbvzbGtbGubzJbGvbGwbGxbGybGzbGAbCFbDYbDYbDYbGBbDYbDYbDYbukbzPbzQbGCbBAbBBboeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbmAbogbogbogbogbogbogbogbogbogbmAbzWbogbogbogbogbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBHbBHbBJbBJbBJbBJbBHbBHbGDbCUbCVbGEbAlbAlbAlbAlbAlbAlbGFbGGaLoaLoaLoaLobGHbGHbGHbGHbGHbGHbGHbGHbGHbGHbGIaJEbGJbGKbGKbGKbGKbGKbGLbGKbGKbGKbGKbGMbGNbGMaLpaMEbGObzkbGPbGQbGRbGSbGTbzkbGUbAJbGVbGWbGXbGYbGZbHabHbbHcbGWbHdbkEbkEbkEbkEbkEbvebHebHfbHgbHfbHhbGbbHibkQbHjbHjbHjbHjbHjbHjbHjbHjbHjbHkbHkbHkbHkbHkbHkbHlbHmbHnbzJbzJbzJbzJbzJbzJbzJbCFbukbukbukbukbukbukbukbukbzPblgbHobHpboeboeabhabhabhabqabqabqabqabqabqabqabqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabofbmAbpGbrnbumbogbogbogbogbogbogbunbogbHqbmAbzWbogbHrbogbrobmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHsaaaaaaaaaabhaaaaaabBKbHtbHubHvbHwbHwbHxbHybHzbHAbHBbHCbGGaaaaaaabhaaabGHbHDbHEbHFbHGbHHbHIbHJbHKbGHbHLbHMbHNbGKbHObHPbHQbHRbHSbHTbHUbHVbHWbHXbHYbGMbGMbGMbGMbzkbHZbIabIbbIcbIdbIebIfbIgbIhbIibIgbIgbIgbIjbAJbIkbIlbImbybbybbInbIobIpbIqbHebIrbIsbItbIubGbbHibkQbHjbIvbIvbIvbIwbIvbIvbIvbHjbIxbIxbIybIxbIxbHkbIzbIAbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMbINbIObIPbIQbIQbIRbISbIDbIDboeabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbrnbrnbmAbmAbmAbmAbmCbmAbmAbxqbxqbxqbmAbmAbrobITbrobmAbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltaltalualtaltaaaabhaaabBKbBKbIUbIVbIWbFsbIXbIYbIZbIZbJabJbbJcbJdabhbJebJfbJgbJhbJibHKbJjbHKbJkbHKbHKbHKbGHbJlbJmbJnbGKbHUbJobJpbJqbJrbJsbJtbGKbGKbJubJvbJwbJxbJybJzbJAbJBbJCbJDbJEbJFbJGbJHbJIbJJbJKbJLbJMbAJbAJbAJbJNbsbbsbbsbbsbbsbbJObJPbzibHebJQbJRbHfbJSbGbbHibkQbHjbIvbIvbIvbIvbIvbIvbIvbHjbJTbJUbJVbJWbJXbJYbJZbKabIBbKbbKcbKdbKdbKdbKdbKdbKdbKebKfbKgbINboebKhbKibKjbKjbKkbKlbKcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKmbKnbKmabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbrnbpGbmAbmAbmAbmAbogbogbogbKobogbogbogbogbrobmAbmAbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltbKpbKqbKpaltbKrbKrbKrbBKbKsbKtbCUbKubKtbKvbBKbGGbKwbGGbGGbKxbKyaaabKzbKAbKBbKCbHKbHKbKDbHKbKEbKFbKGbHKbGHbJlbJmbKHbGKbKIbKJbKKbKLbKMbKNbKObGKbEJbKPbKQbKRbKQbKSbKTbJKbKUbKVbKWbAJbAKbzkbKXbKYbKZbzkbLabAJbAJbAJbAJbLbbsbbLcbLdbLebLfbLgbLhbLibLjbLkbHfbLlbLmbLnbLobLpbHjbIvbIvbLqbIvbIvbIvbIvbHjbLrbLsbLtbLubLvbLwbLxbLybIBbLzbLAbKdbKdbKdbKdbLBbLCbLCbLCbLCbLDbLEbLFbLGbLHbLIbLJbLKbKcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKnbKmbLLbKmbKnabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpEbpFbpGbmAaaaaaabmAbmAbrobLMbogbogbogbogbogbogbupbmAbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaluaohbLNaohalubKrbLObLPbBKbLQbKtbLRbKtbLSbKvbBKbLTbLUbLVbGGbKxbKyabhbKzbLWbLXbLYbLZbMabLZbLZbMbbMcbMdbMdbMebMfbMgbMhbGKbGKbGKbGKbGKbMibMjbGKbGKbMkbMlbMmbMnbMobMpbMqbzkbMrbMsbMtbMubMvbzkbMwbMxbMybzkbMzbMAbMBbMCbMDbMEbsbbMFbMGbvgbMHbvgbMIbMJbMKbMLbMMbMNbMObGbbHibkQbHjbHjbMPbIvbIvbMQbMPbHjbHjbMRbMSbMTbMTbJUbHkbMUbMVbIBbMWbKcbKdbKdbMXbMYbMZbKdbKdbNabNbbNcbNdbNebNfbNgbNhbNibNjbKcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbNkbKnbNlbNmbNnbKnbNkabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabulbmAbmAaaaaaaaaaaaabmAbmAbmAbrobogbNobogbogbrobmAbmAaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltaohaohaohbNpbNqbKtbKtbNrbLQbKtbNsbKtbKtbKvbBKbNtbLVbNubGGbKxbKyaaabKzbNvbNwbNxbHKbHKbNybHKbNzbNAbNBbNCbGHbNDbNEbNFbNGbNHbNHbNHbNHbNIbNJbNHbNHbNKbNLbNMbNNbNObNPbNQbIebIebIebIebIebIebIebIebIebIebNRbNRbNRbNRbNRbNRbNSbNTbsbbsbbsbbsbbNUbNVboXbGbbGbbGbbGbbGbbGbbHibkQbHjbNWbNXbNYbNZbOabObbNWbOcbMRbMSbMTbMTbOdbHkbOebOfbIBbOgbIDbOhbOibOjbOkbOlbOmbKdbOnbOobINbOpbOqbOrbIDbOsbOtbOtbIDabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhbKnbKnbOubOvbOvbOvbOwbKnbKnabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmAbmAaaaaaaaaaaaaaaaaaaaaabmAbmAbmAbmAbmAbmAbmAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalubLNbLNbLNalubKrbOxbOybOzbOAbKtbOBbOCbODbOEbBKbGGbGGbGGbGGbKxbOFabhbOGbJfbOHbJhbOIbHKbOJbHKbHKbHKbOKbOLbOMbONbOObOPbOQbORbORbORbORbOSbORbOTbOUbOVbOWbOXbOYbOZbPabPbbqMbPcbqMbqMbqMbqMbqMbqMbqMbqMbqMbqMbqMbqMbqMbPdbPebsbbMFbPfbLgbPgbLgbLhbPhbPibPjbPjbPkbPlbOWbPmbPnbHjbPobPpbPqbPrbPsbPtbPubOcbOcbOcbOcbOcbOcbPvbPwbPxbPybPzbIDbINbINbINbINbINbINbPAbKdbKdbINboebKhblgbIDbPBbPCbPDbPEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPFbPGbPFbOvbPHbOvbPIbPJbKmabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltappbPKbPLaltbKrbKrbKrbBKbBKbKrbKrbKrbBKbBKbBKbPMbGGaaabPNbPObKyaaaaaaabhaaabGHbPPbPQbPRbHKbPSbPTbPUbPVbGHbPWbPXbPYbPZbQabQbbQcbQdbQebQabQabQabQabQabQfbQgbQabQabQhbQabQibQabQabQabQabQabGMbGMbGMbGMbGMbGMbGMbGMbQjbHibsbbQkbQlbQmbQnbvgbQobQpbQqbQrbQrbQsbQrbQrbQtbQubHjbQvbQwbQxbQwbQwbQwbQybQzbQAbQBbQCbQDbQEbQFbQGbMVbIBbQHabhbQIbQJbQKbQLbQMbQLbQNbQObQPbINbQQbzPbQRbIDbIDbIDbIDbIDabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhbKnbKnbQSbOvbOvbOvbQTbKnbKnabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaltaltbQUaltaltaqDaqDaqDaqEachaqEaqDaqEachaqEbPNbLVbPNabhbPNbKxbKyabhabhabhabhbGHbGHbGHbGHbGHbGHbGHbGHbGHbGHbQVbPXbQWbQXbQabQbbQcbQdbQebQYbQYbQZbRabRbbRcbRdbRebRfbRgbRhbRibRjbRkbRlbRmbRnbRobRpbRpbRpbRpbRpbRqbGMbQjbRrbRsbRsbRsbRsbRsbRtbRubRvbRsbRsbRsbRsbRsbRsbRrbRwbRxbRybRzbRAbRzbRBbRzbRCbRDbREbRDbRDbRDbRDbRFbRGbRHbIBbQHabhbQIbRIbRJbRKbRLbRMbRNbRObRPbINbRQbzPbpzboebRRbRSboeabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaabhabhbNkbKnbRTbRUbRVbRWbNkabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaqDaqDaqDaqEachaqEaqDaqEachaqEbPNbLVbPNbPNbPNbKxbKyaaaaaaaaaabhbRXbRYbRYbRZbSabSbbSbbScbScbRXbJlbPXbQWbSdbQabSebSfbSgbShbSibQYbSjbSkbSlbSmbSnbSobSpbSqbSrbSlbSsbSlbStbSubSvaqEbSwbSwbSwbSwbSwbSxbGMbQjbSybSzbSAbSBbSCbRsbSDbSEbSFbRsbSGbSHbSIbSHbSGbSybSJbSKbSLbSMbSLbSNbSObSLbSPbSLbSQbSLbSRbSLbSLbSSbSTbSUbSVbQHabhbQIbRIbSWbQLbSXbQLbSYbSZbTabINbzTbzPbpzboebzTbzTboeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKnbKmbTbbKmbRWabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhbGGbGGbGGbPNbGGbPNbGGbGGbGGbGGbGGbGGbPNbPNbPNbGGbGGbGGbLVbLVbLVbTcbKxbKyaaaaaaaaaabhbRXbTdbRZbRZbRZbTebSbbSbbTfbRXbTgbPXbThbTibTjbTkbTlbTmbTnbTobTpbTlbTlbTlbTqbTrbTsbTtbTubTvbRmbTwbTxbTybTzbTAbRobTBbTCbTDbTEbSwbSxbTFbQjbRrbTGbSGbSGbTHbRsbTIbTJbTKbRsbSHbSGbSHbTLbTMbTNbkQbHjbTObTPbTQbTPbTRbTSbTTbQwbTUbTVbTWbTXbTYbOcbTZbUabTZbUbbUbbINbINbINbINbINbINbIDbIDbIDbINbzTbzPbUcbzTbzTbUdboeabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKmbKnbKmabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGGbUebUfbUgbUfbUhbUibUjbUkbLVbUlbUmbUnbUobLVbLVbTcbLVbLVbPNbPNbPNbPObKyaaaabhbUpbUqbUrbUsbUsbUtbUsbUubUvbUwbUwbUxbUybPXbJmbUzbUAbUBbUCbUDbUEbUFbUGbUDbUHbUDbUIbUJbUKbRfbULbUMbUNbUObUPbUQbURbUSaqEbUTbUUbTEbUVbSwbSxbTFbQjbRrbUWbUXbSGbUYbRsbUZbVabVbbRsbSGbSGbVcbSGbSGbRrbQjbHjbOcbOcbOcbOcbPvbVdbVebVfbPvbOcbOcbOcbOcbOcbVgbVhbVibVjbVkbVlbVmbVnbVmbVobUbbVpbVibVqbVrbVsbzPbpzboeboeboeboeaucabhabhabhabqabqabqabqabqabqabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGGbGGbVtbVubVvbVwbGGbLVbGGbLVarlbVxbLVbLVbLVbVybGGbPNbPNbGGaaabPNbKxbKyaaaabhbVzbVAbVBbVCbVDbVDbVDbVDbVDbVDbVEbVFbVGbVHbJmbQXbVIbVJbVKbSlbVLbVMbVNbVObVPbVQbVRbVSbVSbVTbVUbRmbVVbVWbVXbVYbVZbWabWbbTBbWcbTEbTEbSwbSxbTFbQjbRrbWdbWebWfbRtbRsbRsbWgbRsbRsbWhbWhbWibWhbWhbRrbQjbHjbWjbWkbWkbWlbWmbQwbWnbWobWpbWqbIvbIvbIvbOcbWrbVibVhbWsbWtbVlbWubWvbWwbWxbTZbVibWybVibVrbHobWzbWAboeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqabqabqabqabqabqabqabqabqabqbPNbWBbUfbWCbWCbWCbGGbWDbGGbWEbGGbVxbLVbLVbWFbWGbGGaaaabhaaaaaabPNbKxbOFbGGbGGbOFbWHbRXbWIbRZbRZbRZbWJbWKbWLbWMbRXbWNbWObJmbQXbWPbWQbWRbSlbSlbWSbQYbWTbWUbWVbWWbSlbSlbRfbWXbWYbWZbXabXbbXcbXbbXdaqEbSwbSwbSwbSwbSwbSxbGMbQjbRrbSGbXebXfbXgbXhbXibXjbXkbXlbSGbSGbSGbSGbXmbRrbQjbHjbIvbXnbIvbXobXpbQwbXqbQwbXrbXsbIvbXnbIvbOcbXtbVibVibVhbXubXvbXwbXxbXybXzbUbbXAbVibXBbVrbUbbXCbXDboeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGGbGGbUfbXEbXFbXGbXHbXIbXJbXKbGGbGGbGGbXLbGGbGGbGGbPNbPNbPNbXMbXNbXObXPbXQbIZbXRbWHbRXbRXbRXbRXbRXbRXbRXbRXbRXbRXbXSbXTbJmbXUbQabXVbXWbVNbXXbVNbQYbSlbSlbSlbWWbXYbXZbXZbYabYbbYcbTwbYdbYebYfbTAbRobTBbYgbYhbYhbSwbSxbGMbQjbYibYjbYjbYjbYkbYlbSGbYmbXfbYnbXfbXfbXfbXfbYobRrbQjbHjbIvbIvbIvbYpbYqbWobYrbQwbYsbYtbWkbWkbYubOcbYvbYwbVibVhbYxbVlbWwbYybXvbYzbUbbYAbYAbYAbVrbYBbXCbXDboeabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqDbYCaqEaqEbYDaqDbGGbGGbGGbGGbGGbGGbGGbGGbGGbGGbLVbLVbLVbLVbLVbLVbLVbYEbYFbYGbYHbYIbYJbYJbYJbYJbYKbYLbYLbYLbYMbYLbYNbYObYObYPbGGbWNbYQbJmbYRbYSbYTbYUbXZbXZbYVbYWbXZbXZbYXbYYbYZbSlbZabZbbZcbZdbSlbZebZfbZgbUSaqEbUTbZhbZibZjbSwbSxbTFbZkbZlbZlbZlbZmbRrbZnbSGbZobZpbZqbZrbZsbZsbZsbZtbRrbQjbHjbOcbOcbOcbOcbZubZvbXqbZwbZubOcbOcbOcbOcbOcbZxbZybVhbVibZzbZAbZAbZAbZAbZBbTZbYAbYAbZCbVrbZDbXCbXDboeboeboeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabZEbZFbZFbZFbZFbZGbZHbZHbZIbZJbZKbZLbZMbZNbZObZPbGGbZQbPNbPNbPNbPNbPNbPNbPNbPNbOFbZRbZSbZSbZSbZSbZSbZSbZSbZSbZTbZTbZTbZTbZTbZUbZVbGGbWNbYQbJmbYRbZWbZXbZYbZZbVScaacabbVSbVScaccadcaecafcagcahcaicajbSlbZecakcalbWabWbbTBcambYhbYhbSwbSxbTFcanbGMbGMbGMbkQbRrcaobSGbSGcapcaqcarcasbZscascatbRrbQjbHjbWjbWkbWkcaubWmbQwcavbWocawcaxbIvbIvbIvbOccaycazcaAbVhcaBbVhbVibVicaCcaDbUbbYAbYAbYAbVrbZDbXCbXDbzTbzTboeabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqEbYCaqDaqEaqDaqDbPNbPNbPNbLVcaEcaFcaGcaHcaIbGGbLVbPNaqDaqDaqEaqDaqDaqEaqDbOFbZRbZScaJcaKcaLcaMcaNcaOcaJcaPcaQcaRcaSbZTbZTbZVbGGcaTbYQbJmcaUcaVcaWcaWcaXcaYcaYcaYcaYcaYcaZcbabQYbQYbQYcbbbSlbZcbSlbZebZfcbcbUSaqEbSwbSwbSwbSwbSwbSxbTFcancbdbEJbEJbkQbSycbecbfcbgcbhcbicbjcbkbZscbkcblbRrbQjbHjbIvcbmbIvcbnbXpbQwbXqbQwbXrcbobIvcbmbIvbOccbpcbqcbrcbscbtcbucbvcbvcbwcbxbTZcbybZAcbzbVrbYAbXCcbAboebzTboeboeboeabqabqabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqEbYCbYCbYCbYCbYCcbBbLVcbCbLVcbDcbEcaFcbFbLVbGGbLVbPNaqDaqDaqEaqDaqDaqEaqDbOFbZRbZScaJcbGcbHcbIcbJcbKcaJcbLcbMcbNcbOcbPbZTbZVbGGbWNbYQbJmcbQcbRbQacbScbTcaYcbUcbVcbWcaYcbXbWWcbYbQYcbZcajbSlcahccaccbbYecccbTAbRobTBccdcceccfbSwbSxbGMcanbGMccgcchbkQbRrcciccjcckcclccmccjccnbZsccnbTLbTNbQjbHjbIvbIvbIvccoccpbWobYrbQwbYsccqbWkbWkbYubHjbVrccrccscctbVrbVrccuccvccwccxccycczccAccBbYAbYAbXCbXDboeccCboeccDboeabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqDaqDaqDaqDaqEaqEbPNbPNbPNccEccFccGccHccIbLVccJbLVbPNaqDaqDaqDaqDaqDaqDaqDbOFbZRbZSccKccLccMcbIccNccKccKcbLccOccPccQccRbZTbZVbGGbWNbYQccSccTccTccUccVccWccXccYccZcdacaYbSlbWWcdbcdccbZcddbSlcahccabZebZfcdebUSaqEbUTcdfcdgcdhbSwbSxbGMcanbGMbMobMobkQbRrbRscdicdjbRscdkbRsbRsbRsbRsbRsbRrbQjbHjbOcbOcbOcbOcbZucdlbXqcdmbZubOcbOcbOcbOcbHjbXvcdnbXvcdobXvbVrccuccvcdpcdqcdrcdsbVhcdtbVrbYAbXCbXDboebzTbzTbzTbyFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaabhabhabhbPNcdubXIbXIcdvcaIbPMbGGbPNbPNaqDcdwaqDaqDaqDaqDaqDbKybZRbZSccKccKcdxcdycdzccKcdAcdBcdCcdDcdEcdFbZTbZVbGGcdGcdHcdIccTcdJcdKcdLcdMcdNcdOcdPcdQcaYcdRcdScbYbQYcbZcdTbSlcdUccabZecdVcdWbWabWbbTBcdXcceccebSwbSxbTFcancdYbGMcdZbkQceabYjbYjcebbRsceccedceebGMcefcegbHibQjbHjbWjbWkbWkcehbWmbQwcavbWoceicejbIvbIvbIvbHjcekbXvbXvbXvbXvbVrcelcelcemcenbUbbUbbVhbUbbVrbUbbXCbXDboeceocepceqbyFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacAacsacsacsacsacsaaaaaabGGbGGbGGbGGbGGbGGccJbGGbGGbGGbGGaqEaqDaqDaqEachceraqDaqDaqDbKybZRbZScescetceucevcewcexceycezceAceBceCceDbZTceEceFceGceHceIccTceJceKceLceMceNceOcePceQceRbTvceSbQYbQYbQYceTbSlceUceVbZebZfbSlbUSaqEbSwbSwbSwbSwbSwceWceXceYceZbGMcfacfbcfcbZlcfdcfebGMcffcfgcfhbGMcfibQrbQtcfjbHjbIvbXnbIvcfkbXpbQwbXqbQwbXrcflbIvbXnbIvbHjcfmbXvcfncfocfpcfqcfrcfscftcfubUbbVhbVhcfvbVrbHocfwcfxboecfycfzbzTbyFaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaabhaaaabhaaaadIaaaabhaaaabhaaaacsabhabhbGGcfAcfBbLVbXLbLVbLVbLVbLVbPMbPNaqDaqDaqDachcfCcfDachachaqEbKybZRbZScfEccKcaJcaJcaJccKcfFcfGcfHcfIcfJcfKbZTbGGbGGcfLcfMcfNccTccTcfOcfPcfQcfRcfRcfRcfRcaYbSlcfScfTcfUcfVcfWcfXcfYcfZccbbYecgabTAbRobTBcgbcgccgcbSwaqEbTFbEJcgdbGMbGMcgebDEbGMcgfcggbGMbGMcghbGMbGMcggcgibLocgjbHjbIvbIvbLqcgkcglbWocgmbQwbYscgnbWkbWkbYubHjbXvbXvcgobXvbXvbVrcelcelcgpcgqbUbcgrcgscgsbVrbzScfwbXDboeboeboebzTboeabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgtcgucgvaaacgtcgucgvaaacgtcgucgvaaaacsaaaaaabGGcgwbLVcgxbGGbGGbXLbGGbGGbGGbGGaqDaqDaqDcgyachachaqEaqDaqDbKybZRbZSccKcgzcgAcaJcgBccKccKcbLcgCcbOcgDcgEcgFcgGcgHcgIcgJcgKcgLcgMcgNcgOcgPcgQcgRcgScgTcgUcgVcgWcgXbVSbVScgYbXYcgZbYdbVVbZfchabUSaqEbUTchbchcchdbSwaqEbGMbGMchechfchgcgechhbGMcgfchichjchkchlchmchjchnchoblgchpbHjbHjbHjbHjbHjbHjbQwchqchrbHjbHjbHjbHjbHjbHjbVrbVrbVrbVrbVrbVrchschschtchubVrbVrbVrbVrbVrboechvbXDboechwchxbzTboeabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcgtchycgvaaacgtchycgvaaacgtchycgvabhabhaaaaaabGGchzbLVchAbGGbWEbLVchBbUnchCbGGaqDaqDaqDaqDaqEaqDaqDaqDaqDbOFbZRbZScaJchDchEcaJchFchGcaJcbLchHchIchJchKchLchMchNchOchPchQchRchSchTchUchVchWchXcfPchYcgUchZbSlcfSbXYbXZciacibciccidbRlciecifbWabWbbTBcigcgccgcbSwaqEbGMbEJcihciicijcikcilbGMcimcinciochocipchocgiciqcirblgcisbHjcitciuciucivciwbQwchqcixbHjabhabhabhabhboeciybRScizciAciAbVrciBciBchtciCbVrciDbzTbzTbzTbHochvcbAboeciEbzTbzTboeboeboeabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgtchycgvabhcgtchycgvabhcgtchycgvaaaabhabhabhbGGciFchAciGbGGciHciIciJciKbWFbGGaqDaqDaqDaqDaqEaqDaqDaqEaqDbOFbZRbZScaJciLciMciNciOciPcaJciQciRciSciTciUbZTciVciWciXciYciZcjacjbcjccjdcjecjfcjgcjhcjicjjcjkbSlcfScjlbSlbSlbSlcjlcjlcjlbZfcjmcjnaqEbSwbSwbSwbSwbSwaqEbGMcfacjocjpcjqcjrcjsbGMbGMcjtcjucjvbHicjwcjxbGMbGMblgcisbHjcjycjzcjzcjAcjBcjCcjDcjEbHjabhaaaaaaabhboebzTcjFbBAcjGcjHbVrcjIcjIcjJciCbVrboeboecjKcjLbHochvbXDbzTbzTbzTcjMbpBcjNbpDabqabqabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcgtchycgvaaacgtchycgvaaacgtchycgvabhabhaaaaaabGGcjOcjPcjQbGGcjRcjSbGGcjTbGGbGGaqDaqEaqDaqDaqEaqDaqDaqEaqDbOFbZRbZSbZSbZSbZSbZSbZSbZSbZSbZTbZTbZTbZTbZTbZTbGGcjUbGGcgUcjVcjVcjVcjWcjXcjYcjVcjZckackbcgUbSlbUOckccjlbSlbSlbSlbStbYZcjlbZfcjlbQaaqEaqEaqEaqEaqEaqEaqEckdckdckeckfckgckdckdckdckhckickjcjvckkcjvcjvbGMcklbDEcisbHjbHjckmckmbHjbHjckmcknckmbHjaaaaaaaaaaaaboeboechvckoboeboebVrbVrbVrckpckqbVrbHoboeceqbzTckrchvcfxboeboecksboeboeboeboeabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhaaacgtchycgvaaacgtchycgvaaacgtchycgvaaaabhaaaaaacktckuckuckuckubGGbGGckvckwbGGbPNbPNbPNbPNbPNbPNbPNbPNbPNbGGckxckybXNckzckAckBckBckBckBckBckBckBckBckBckCckCckBckDcjRcgUckEckFckGckHckIckJcjVckKckLckMcgUckNckObVXckPckQckRckQckPckSckPckTcjlbQabQabQaaqDaqDaqEaqEckdckdckUckVckWckXckYckZckdclabEJclbclccldcleclfbPlbPlclgclhboeaaaaaaaaaaaaaaaabhcliabhaaaaaaaaaaaaaaaboecljclkcllcllclmclncloclpclqclrboeboeboeboeclsboechvbXDboecltclubzTboeaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaaaaaaaclvaaaaaaaaaclvaaaaaaaaaclvaaaaaaabhcktcktcktclwclxclyclzclAbLVclBclCclDclEclEclEclEclEclEclEclEclEclEclEclFbYOclGclHcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcgUcjVclIckHclJclKclLclMclNclOclPcgUckNclQclRclSclTclUclVclWbSlclXclYclZcmacmbcmcaqDaqDaqEcmdcmecmfcmgcmhcmicmjcmkcmlckdbEJbEJcjvcjvbDEcjvchobEJbEJbDEcmmboeboebyFbyFboeboebyFcmnbyFboeboebyFbyFbyFboecmocmpbrlcmqcmrcmscmscmscmtcmucmvcmwcmxcmycmycmycmzcmAboechxbzTcmBboeaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcmCcmDcmDcmEcmFcmFcmFcmFcmFcmFcmFcmFcmFcmFcmFcmGcmHcmIcmJcmKcmLcmMcmNclEcmOcmPbUnbGGbPNbPNbPNbPNbPNbPNbPNbPNbPNbGGbGGcmQcmRcmScmTcgUcmUcmUcmVcgUcmWcmXcmYcmZcnacnbcnccndcnecnfcjVcngcnhcnicnjcnkcnlcnmcnncnocgUbQacnpbRfcnqbRfcnrbRfcnqbRfcnsbRfcntbQabQabQaaqEaqEaqEbSxckdcnucnvcnwcnxcnycnzcnAckdcnBbEJchochocnCcjvchobEJcnDbDEcnEbYJbYJbYJbYJbYJcnFbYJcnGcnHcnHcnHcnHcnHcnHcnIcnJbpzboecnKcnLboeboebyFbyFboeboecnMcfwcnNbrlcnOcnPcnQboeboeboeboeboeaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaaaaaaacnRaaaaaaaaacnRaaaaaaaaacnRaaaaaaabhcktcktcktcnScnTcnUckubLVbLVbLVbLVbGGaaaaaaabhaaaaaaabhaaaaaaabhaaabGGcnVbGGcnWcnXcgUcnYcnZcoacobcoccodcoecofcoecogcohcoicojcodcjVcokckHcolcomconcjVcoocopcoqcgUaqEcoraqEbSxaqEcoraqEbSxaqEcosaqEcosaqEaqEaqDaqDaqDaqEbSxckdcotcoucmhcovcowcoxcoycozcoAcoBcoCchobHichocoDcgiciqcoEcoFcoFcoFcoFcoFcoFcoFcoGcoHcoFcoFcoFcoFcoFcoFcoIcoJcoKboecoLcfwboeaaaaaaaaaaaaboebzTcfwcoMcoNcoNcoOcoPcoNaaaabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhaaacgtcoQcgvaaacgtcoQcgvaaacgtcoQcgvaaaabhaaaaaacktckuckuckuckucoRbPMbLVbLVbGGbGGbPNcoScoTcoTcoTcoTcoTcoTabhbGGbGGbGGcoUcoVcgUcoWcoacoacobcoXcoecoYcoZcpacpbcoecoecoecoecjVcpccpdcpdcpecpfcjVcpgcphcpicgUbSwcpjbUTcpjbSwcpjbUTcpjbSwcpkbUTcplbSwaqDaqDaqDaqDaqDbSxcpmcpncmjcpocmjcppcpqcprckdcpscjvcjvcjvcptcjvcjvcjvbGMbGGbGGbGGbPNbPNbPNbGGbGGbPNbPNbPNbGGbGGbPNcpubPNbGGcpvboeboecpwcfwboeboebyFbyFboeboebzTcfwcpxcoNcpycpzcpAcoNaaaaaaabhabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcgtcoQcgvaaacgtcoQcgvaaacgtcoQcgvabhabhabhaaaaaaaaaaaaabqbGGbGGbGGcpBbLVbGGcpBbNucoTcpCcpDcpEcpDcpFcoTaaabGGbWFbLVcpGcoVcgUcpHcpHcpIcgUcpJcpKcpLcoecpMcpbcpNcpOcpPcpPcjVcpQcpRcpRcpScpTcpUcpVcpWcpXcgUbSwcpYcpZcqabSwcqbcqccqdbSwcqecqfcqgbSwaqDaqDaqDaqDaqDbSxckdcqhcqicqjcqkcqlcqmcqnckdcqocqpcqqcqrcqscqtchochobEJcqubLVbPNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaboecqvbHoboecqwcqxcqyclncqycqycqycqycqzcqAcqBcoNcqCcqDcqEcoNabhaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJdaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgtcoQcgvabhcgtcoQcgvabhcgtcoQcgvaaaabhabhabhaaaaaaaaaabqcbBcqFcbCbLVbLVbXLbLVcqGcoTcqHcqIcqJcqKcqLcoTaaabGGcjSbLVcpGcoVcgUcpHcpHcpIcgUcqMcndcqNcqOcqPcqQcqNcndcqNcqNcndcqRcqScqTcoXcqUcqVcqWcqXcqYcgUbSwcqZcracqZbSwcrbcrccrbbSwcrdcrecrfbSwaqEaqEaqEaqEaqEbSxckdckdckdcrgcrhcricrjcrkcrhcqocrlchocrmcrncrocirchocrpbGGbLVbPNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaboecrqcluboecrrcrscrscrtcrsbrlbrlbrlcrucrucrvcoNcrwcrxcrycoNabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcgtcoQcgvaaacgtcoQcgvaaacgtcoQcgvabhabhaaaabhabhaaaaaaabqbGGbGGbGGbGGbLVbGGbGGbGGcoTcrzcrAcrBcrCcrzcoTabhbGGcgUcrDcrEcrFcgUcpHcpIcpIcgUcrGcrHcrIcrJcpMcrKcrLcrMcrLcrLcrNcrOcrPcrPcrQcrPcrPcrRcrScrTcgUbSwcqZcrUcqZbSwcrbcrVcrbbSwcrfcrWcrfbSwaqEaqEaqDaqDaqDceWbRqaqDaqDcrXcrhcrYcrZcsacrhbEJcsbcscbLocsdcsecgicsfcsgbGGcqubPNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaboecshbzTboeboeboeboeboebzTboeabhaaaaaaaaaabhcsicsicsjcsicsiabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaacgtcskcgvaaacgtcskcgvaaacgtcskcgvaaaacsaaaaaaabhabhaaaaaaaaaaaaaaabPNbLVbPNaaaaaacoTcslcsmcsncsocspcoTcoTcoTcgUcsqcrEcsrcgUcgUcgUcgUcgUcsscstcoecoecpMcqXcoecofcsucsvcswcoecoecoecoecsxcoecpMcpbcsycgUbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwaqEaqDaqDaqDaqDaqDbSxaqDaqDcszcrhcricsAcrkcrhbGMcsBciqcsCcsDciqcsEbGMbGMbGGabqabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhboecsFbzTbzTbzTbzTbzTbzTbzTboeabhaaaaaaaaaabhaaacsicsGcsiaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaabhaaaabhaaaabhaaaabhaaaabhaaaacsaaaaaaaaaabhabhaaaaaaaaaaaabPNbLVbPNaaaaaacoTcsHcsIcsJcsKcsLcsMcsNcsOcsMcsPcsQcsRcsScsTcsUcsVcsWcsXcsYcsZctactbctccpicgUctdcgUctdcgUcpictecoecoectfcpMcpbctgcgUcgUcgUcgUcgUcndcndcndcndcgUaaaaaaaaaaaaaqDaqDaqDaqDaqDaqDbSxaqDaqDcszcrhcthctictjctkaqEbGMcjtctlbTFbTFbGMbGMaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhboectmctnctociDctpbQQbRQboeboeabhaaaaaaaaaabhaaacsictqcsiaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacAacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaabhabhaaaaaaabhbPNbLVbPNabhabhcoTctrctscttctuctvctwctxctyctzctActBctCctDctDctDctEctDctFctGctHctIctJctKcgUctLctMctNctMctOcgUctPcoectQctRcpMctSctJctJctJctTctUcgUctVcndctWctXctXctXaaaaaaaaaaqDaqDaqDaqDaqDaqDbSxaqDaqDcszcrhcrhctYcrhcrhaaaaqEaaactZaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboeboeboeccCboecpvboebyFbyFboeboeaaaabhaaaaaaaaaabhaaaaaacuaaaaaaaabhaaaabhaaaaaaabhaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaabPNbLVbPNaaaaaacoTcubcuccudcuecufcoTcugcuhcoTcuicujcukcofcoeculcqNcumcoXcuncuocupcupcupcuqcurcuscutcuucuvcuqcuwcuwcswcoYcuxcuycoZcoZcpacqXcuzcuAcoacuBcuCcuDcuEcuFcuGaaaaaaaqDaqDaqDaqDaqDaqDbSxaqDaqDcszbYCcrhcuHcrhcuIaqEaqEaaacuJaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaboecuKcuLcuLboecuMabhaaaaaaabhaaaaaaabhaaaaaaaaaabhaaaaaacuaaaaaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbGGbGGcuNbGGbGGaaacoTcuOcuPcuQcoTcoTcoTcoTcoTcgUcuRcoecukcoecoecuScqNcuTcoXcuUcuVcuWcuXcuYcgUcuZcvacvbcvccvdcgUcvecvfcvfcuVcuUcoXcvgcvhcpMcqXcvicgUcvjcndctWctXctXctXaaaaaaaaaaqDaqDaqDaqDcvkaqDbSxaqDaqDcvlbYCcvmcvncvmbYCaqEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyFbyFbyFcuLcuLcvoboeaaaabhaaaaaaabqabqabqabqabqabqabqabqabqabqcuaabhabhabhabhabhacAacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhbGGcnVbLVcvpbGGabhcoTcoTcoTcoTcoTabhaaaaaaabhcgUcvqcoecvrcvscvscvtcndcndcvucgUcvvcvwcvwcvwcgUcvxcvycvzcvAcvBcgUcvwcvwcvwcvvcgUcvucndcndcpMcqXcgUcgUcndcndcndcndcgUaaaaaaaaaaaaaqDaqDaqDaqDaqDaqDbSxaqDaqDaqEbYCaaaaaaaaabYCaqEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyFbzTcvCcuLcuLcvDboeaaaabhaaaaaaabqaaaacsaaaaaaabhaaaabhaaaaaacvEaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPNcvFcvGcvHbGGabhaaaaaaabhaaaaaaabhaaaaaaabhcgUcvIcvJcoXcvKcvLcvMcndcvNcvOcgUcvPcvQcvRcvQcvScvTcvUcvVcvWcvBcvScvQcvQcvQcvXcgUcvYcvZcgUcpMcwacwbcwccwdcwecvSaaaabhabhabhabhabhaqDaqDaqDaqDaqDaqDbSxaqDaqDaqDbYCbYCbYCbYCbYCabqabqabqabqabqabqabqabqabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyFcvCbyFbyFbyFbyFboeaaaabhaaaaaaabqaaaacsabhcwfcwfcwfcwfcwfaaacwgaaacwfcwfcwfcwfcwfabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPNcwhcwibNtbGGcndcwjcwjcwjcwjcwjcwjcwjcwjcndcgUcwkcwlcwmcwncwkcgUcgUcgUcwocgUcgUcvScvScvScvScwpcwqcwrcwscwtcvScvScvScvScgUcgUcwocgUcgUcwucwvcwwcwxcoecwycvSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqaaaaaaaaaaaaaaaaaaaaaaaaabqaaaacsaaacwAcwBcwBcwBcwBcwCcwgcwDcwEcwEcwEcwEcwFaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPNbPNbPNbPNbGGabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcwGcwHcwIaqDachcwJcvScvScvScvScwKcvScvScvScvScwJachaqDcwLcwMcwNcgUcwOcgUcgUcwPcwQcwRcvSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaacsadIcwScwScwScwScwSaaacwgaaacwScwScwScwScwSabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcwTcwUcwUaqDcwVcwWcwWcwWcwWcwWcwXcwWcwWcwWcwWcwWcwYaqDcwUcwZcwTcgUcxacxbcgUcndcndcxccndabhabhabhabhabhabhabhabhabhabhabhabhcwzabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqaaaacsaaaaaaaaaabhaaaaaaaaacwgaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcxdcxecxfaqEcxgachcxhaqDaqDaqDaqDcxhaqDaqDcxhachcxgaqDcxicxjcxkcgUcxlcxmcndabhaaacxncxoabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaacwzaaaaaaaaacxpcxpcxpcxpcxpaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcwfcwfcwfcwfcwfaaacwgaaacwfcwfcwfcwfcwfabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcwTcwUcxqaqDcxrcxsaqDaqDaqDaqDaqDcxtaqDaqDaqDcxucxvaqDcwUcwUcwTcgUabqabqabqabhaaacxwcxxcxycxzcxAcxzcxycxzcxAcxzcxycxzcxAcxzcxBcxzcxzcxzcxCcxDcxEcxFcxpaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacwAcwBcwBcwBcwBcwCcwgcwDcwEcwEcwEcwEcwFaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcxGcxHcwUaqDcxgachaqDaqDaqEaqEaqEaqEaqEaqDaqDachcxgcxIcwUcxJcxKcgUaaaaaaabqabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaacwzabqcxpcxpcxpcxLcxMcxLcxpaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcwScwScwScwScwSaaacwgaaacwScwScwScwScwSabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcgUcxNcwUaqDcxgachcxhaqEaqEcxOcxPcxQaqEcxRaqDachcxgaqDcwUcxNcgUcgUaaaaaaabqabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhcwzabqcxScxTcxUcxVcxWcxVcxpaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaaaaaaaaabhaaaaaaaaacxXaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcpicgUcxYcwUaqDcxrcxsaqDaqDaqEcxZcyacybaqEaqDaqDcxucxvaqDcwUcyccgUcpiaaaaaaabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqcydabqcxpcyecyfcygcxWcyhcyfaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcwfcwfcwfcwfcwfaaacuaaaacwfcwfcwfcwfcwfabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcgUcxNcwUaqDcxgachaqDcyiaqEcyjcykcylaqEaqEcxhachcxgaqDcwUcxNcgUcgUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaacwzabqcymcymcymcymcyncyocypcyqabhabhabhabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacwAcwBcwBcwBcwBcyrcyscyrcwEcwEcwEcwEcwFaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcxJcxKcwUaqDcxgachaqDaqDaqEaqEaqEaqEaqEaqDaqDachcxgaqDcwUcxGcxHcgUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaacwzaaaaaacymcymcytcyucyvcymcymcymcymcymabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcwScwScwScwScwSaaacuaaaacwScwScwScwScwSabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcwTcwUcywaqDcxrcxsaqDaqDaqDaqEaqDaqDaqDaqDaqDcxucxvaqDcwUcwUcwTcgUaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaacwzaaaaaacymcyxcyycyzcyAcyBcyCcyDcyEcymabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaacuaaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaacgUcyFcxecxfaqEcxgachcxhaqDaqDcxhaqDaqDaqDaqDcxhachcxgaqDcxicxjcyGcgUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaacwzaaaaaacymcyHcyIcyJcyKcyLcyMcyNcyOcymabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaacsacsacsacsacsabhabhaaacuaaaaabhabhacsacsacsacAacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcyPcwUcwUaqDcxgachachcyQachachcyQachachcyQachachcxgaqDcwUcwUcyPcgUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaabhcyRcySabhcymcyTcyUcyVcyWcyXcyYcyZczacymabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhczbabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacgUcyPcwUczcaqDczdcwWcwWczecwWcwWczecwWcwWczecwWcwWczfaqDczgcwUcyPcgUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaabhczhcziczhczhczjczkczlczmcznczoczoczoczoabhaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaczpcgUcgUcgUcwUaqEaqEaqEaqEaqDaqDaqDaqDaqDaqEaqEaqEaqEcwUcgUcgUcgUczpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaczhczhczqczrczhczsczscztczuczsczoczvczvczoczoaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaacyPcgUcgUcndcndcndcndcndcndcndcndcndcndcndcndcndcgUcgUcyPabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaczhczwczxczyczzczsczAczBczCczsczDczEczEczFczoaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaacyPcyPcyPcyPckMcyPcyPcyPcyPcyPcyPcyPckMcyPcyPcyPcyPaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaczhczGczHczIczJczKczLczMczNczKczOczPczQczRczoaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhaaaaaaaaaaaaabhabhabhabhaaaaaaaaaaaaaaaabhaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaczhczSczTczUczVczWczXczYczZcAacAbcAccAdcAeczoaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaczhczhcAfczHcAgczscAhcAicAjczscAkcAlcAmczoczoaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqacKacKacKacKczhcAncAocAnczsczscApczuczscAqcAqcAqczoacKacKacKacKabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqcAscAtcAtcAtcAucAucAvcAwcAxcAycAzcAAcABcACcymcAucAucAtcAtcAtcAsabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqcADcAEcAFcAGcAHcAHcAIcAJcAKcALcAMcANcyLcAOcAPcAQcAQcARcAScAEcADabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacATcAUcAVcAWcAXcAXcymcAYcyLcAycAZcBacBbcBccymcAXcBdcBecBfcBgcATaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBiabhabhcymcBjcBkcBlcBlcBmcBkcBncymaaaabhcBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaaabhcBpcBqcBpcBpcBrcBpcBpcBscBpabhabhcBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBtcBucBvcBwcBwcBpcBxcBycBzcBAcBBcBCcBDcBpcBwcBwcBEcBFcBiacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBGcBHcBIcBIcBIcBHcBJcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBKcBIcBIcBLcBIcBIcBKcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBHcBIcBMcBMcBMcBIcBHcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBtcBNcBvcBOcBpcBPcBHcBQcBMcBRcBMcBQcBHcBScBpcBOcBEcBTcBiacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBHcBIcBUcBVcBWcBIcBHcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBKcBIcBXcBQcBIcBIcBKcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaacBpcBpcBYcBIcBZcCacCbcBIcBYcBpcBpaaacBhcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBtcCdcBvcBwcBwcBpcBpcBpcCecCfcCgcBpcBpcBpcBwcBwcBEcChcBiacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBoaaaabhaaacCicCicCicCjcCkcCicCiaaaabhaaacBtcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcBiabhabhaaacClcCmcCncCocCpcCqcClaaaabhaaacBtcBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcAVcCrcCscCscAtcClcCtcCucCvcCwcCxcClcAtcCscCscCycBfcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKcBhcCzcCAcCBcCBcCBcCCcCDcCEcCFcCGcCHcCIcCJcCJcCJcCKcCLcBoacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKaaacBdcBdcAXcBdcAXcClcCNcCOcCPcCQcCRcClcAXcAXcBdcBdcAXaaaacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKacKacKacKacKacKacKcClcCScCTcCUcCVcCWcClacKacKacKacKacKacKacKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacClcClcCXcCXcCXcClcClaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7150,11 +72390,196 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -7170,3 +72595,4 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} + diff --git a/_maps/tgstation2.dm b/_maps/tgstation2.dm index 9f027f8..022e3cd 100644 --- a/_maps/tgstation2.dm +++ b/_maps/tgstation2.dm @@ -4,7 +4,7 @@ #define MINETYPE "lavaland" - #include "map_files\TgStation\tgstation.2.1.3.dmm" + #include "map_files\TgStation2\tgstation.2.1.3.dmm" #include "map_files\generic\z2.dmm" #include "map_files\generic\z3.dmm" #include "map_files\generic\z4.dmm" @@ -16,7 +16,7 @@ #include "map_files\generic\z10.dmm" #include "map_files\generic\z11.dmm" - #define MAP_PATH "map_files/TgStation" + #define MAP_PATH "map_files/TgStation2" #define MAP_FILE "tgstation.2.1.3.dmm" #define MAP_NAME "Box Station" From e52b4065410f73348297901026202838e7221581 Mon Sep 17 00:00:00 2001 From: tortellinitony Date: Wed, 5 Oct 2016 15:28:56 -0400 Subject: [PATCH 13/55] Duct tape and inflatables (#30) --- code/game/objects/structures/inflatable.dm | 279 +++++++++++++++++++++ code/modules/ducttape/ducttape.dm | 81 ++++++ icons/obj/bureaucracy.dmi | Bin 21314 -> 21655 bytes icons/obj/inflatable.dmi | Bin 0 -> 18327 bytes icons/obj/storage.dmi | Bin 57318 -> 57538 bytes sound/items/ducttape1.ogg | Bin 0 -> 25209 bytes sound/items/ducttape2.ogg | Bin 0 -> 14322 bytes tgstation.dme | 2 + 8 files changed, 362 insertions(+) create mode 100644 code/game/objects/structures/inflatable.dm create mode 100644 code/modules/ducttape/ducttape.dm create mode 100644 icons/obj/inflatable.dmi create mode 100644 sound/items/ducttape1.ogg create mode 100644 sound/items/ducttape2.ogg diff --git a/code/game/objects/structures/inflatable.dm b/code/game/objects/structures/inflatable.dm new file mode 100644 index 0000000..cf974f8 --- /dev/null +++ b/code/game/objects/structures/inflatable.dm @@ -0,0 +1,279 @@ +/obj/item/inflatable + name = "inflatable wall" + desc = "A folded membrane which rapidly expands into a large cubical shape on activation." + icon = 'icons/obj/inflatable.dmi' + icon_state = "folded_wall" + w_class = 2 + var/structuretype = /obj/structure/inflatable + +/obj/item/inflatable/attack_self(mob/user) + if(locate(/obj/structure/inflatable) in user.loc) + user << "You cannot place inflatable walls upon eachother!" + return + playsound(loc, 'sound/items/zip.ogg', 75, 1) + user << "You inflate [src]." + if(do_mob(user, src, 10)) + var/obj/structure/inflatable/R = new structuretype(user.loc) + transfer_fingerprints_to(R) + R.add_fingerprint(user) + qdel(src) + +/obj/structure/inflatable + name = "inflatable wall" + desc = "An inflated membrane. Do not puncture." + density = 1 + anchored = 1 + opacity = 0 + icon = 'icons/obj/inflatable.dmi' + icon_state = "wall" + var/health = 20 + var/torntype = /obj/item/inflatable/torn + var/itemtype = /obj/item/inflatable + +/obj/structure/inflatable/New(location) + ..() + air_update_turf(1) + +/obj/structure/inflatable/Destroy() + air_update_turf(1) + return ..() + +/obj/structure/inflatable/CanPass(atom/movable/mover, turf/target, height=0, air_group=0) + return 0 + +/obj/structure/inflatable/CanAtmosPass(turf/T) + return !density + +/obj/structure/inflatable/bullet_act(var/obj/item/projectile/Proj) + ..() + hit(Proj.damage) + +/obj/structure/inflatable/ex_act(severity) + switch(severity) + if(1) + qdel(src) + return + if(2) + deflate(1) + return + if(3) + if(prob(50)) + deflate(1) + return + +/obj/structure/inflatable/blob_act() + deflate(1) + +/obj/structure/inflatable/attack_hand(mob/user) + add_fingerprint(user) + ..() + +/obj/structure/inflatable/proc/attack_generic(mob/user, damage as num) + health -= damage + if(health <= 0) + user.visible_message("[user] tears open [src]!") + deflate(1) + else + user.visible_message("[user] tears at [src]!") + +/obj/structure/inflatable/attack_alien(mob/user) + if(islarva(user)) + return + attack_generic(user, 15) + +/obj/structure/inflatable/attack_animal(mob/user) + if(!isanimal(user)) + return + var/mob/living/simple_animal/M = user + if(M.melee_damage_upper <= 0) + return + attack_generic(M, M.melee_damage_upper) + +/obj/structure/inflatable/attack_slime(mob/user) + attack_generic(user, rand(10, 15)) + +/obj/structure/inflatable/attackby(obj/item/weapon/W, mob/user, params) + user.changeNext_move(CLICK_CD_MELEE) + if(!istype(W)) + return + if(W.is_sharp()) + visible_message("[user] pierces [src] with [W]!") + deflate(1) + if(W.damtype == BRUTE || W.damtype == BURN) + hit(W.force) + ..() + +/obj/structure/inflatable/proc/hit(damage, sound_effect = TRUE) + health = max(0, health - damage) + if(sound_effect) + playsound(loc, 'sound/effects/Glasshit.ogg', 75, 1) + if(health <= 0) + deflate(1) + +/obj/structure/inflatable/AltClick() + if(usr.stat || usr.restrained()) + return + if(!Adjacent(usr)) + return + deflate() + +/obj/structure/inflatable/proc/deflate(violent) + playsound(loc, 'sound/machines/hiss.ogg', 75, 1) + var/obj/item/inflatable/R + if(violent) + visible_message("[src] rapidly deflates!") + R = new torntype(loc) + else + visible_message("[src] slowly deflates.") + sleep(50) + R = new itemtype(loc) + transfer_fingerprints_to(R) + density = 0 + qdel(src) + +/obj/structure/inflatable/verb/hand_deflate() + set name = "Deflate" + set category = "Object" + set src in oview(1) + + if(usr.stat || usr.restrained()) + return + deflate() + +/obj/item/inflatable/door + name = "inflatable door" + desc = "A folded membrane which rapidly expands into a simple door on activation." + icon = 'icons/obj/inflatable.dmi' + icon_state = "folded_door" + structuretype = /obj/structure/inflatable/door + +/obj/structure/inflatable/door //Based on mineral door code + name = "inflatable door" + density = 1 + anchored = 1 + opacity = 0 + icon = 'icons/obj/inflatable.dmi' + icon_state = "door_closed" + torntype = /obj/item/inflatable/torn/door + itemtype = /obj/item/inflatable/door + var/state = 0 //closed, 1 == open + var/isSwitchingStates = 0 + +/obj/structure/inflatable/door/attack_hand(mob/user) + return TryToSwitchState(user) + +/obj/structure/inflatable/door/CanPass(atom/movable/mover, turf/target, height=0, air_group=0) + if(air_group) + return state + if(istype(mover, /obj/effect/beam)) + return !opacity + return !density + +/obj/structure/inflatable/door/CanAtmosPass(turf/T) + return !density + +/obj/structure/inflatable/door/proc/TryToSwitchState(atom/user) + if(isSwitchingStates) + return + if(ismob(user)) + var/mob/M = user + if(M.client) + if(iscarbon(M)) + var/mob/living/carbon/C = M + if(!C.handcuffed) + SwitchState() + else + SwitchState() + else if(istype(user, /obj/mecha)) + SwitchState() + +/obj/structure/inflatable/door/proc/SwitchState() + if(state) + Close() + else + Open() + air_update_turf(1) + +/obj/structure/inflatable/door/proc/Open() + isSwitchingStates = 1 + flick("door_opening",src) + sleep(10) + density = 0 + opacity = 0 + state = 1 + update_icon() + isSwitchingStates = 0 + +/obj/structure/inflatable/door/proc/Close() + isSwitchingStates = 1 + flick("door_closing",src) + sleep(10) + density = 1 + opacity = 0 + state = 0 + update_icon() + isSwitchingStates = 0 + +/obj/structure/inflatable/door/update_icon() + if(state) + icon_state = "door_open" + else + icon_state = "door_closed" + +/obj/structure/inflatable/door/deflate(violent) + ..() + air_update_turf(1) + +/obj/item/inflatable/torn + name = "torn inflatable wall" + desc = "A folded membrane which rapidly expands into a large cubical shape on activation. It is too torn to be usable." + icon = 'icons/obj/inflatable.dmi' + icon_state = "folded_wall_torn" + var/fixedtype = /obj/item/inflatable + +/obj/item/inflatable/torn/attack_self(mob/user) + user << "The inflatable wall is too torn to be inflated, fix it with something!" + add_fingerprint(user) + +/obj/item/inflatable/torn/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/stack/ducttape)) + var/obj/item/stack/ducttape/T = I + if(T.amount < 2) + user << "There is not enough tape!" + return + user << "You begin fixing the [src]!" + playsound(user, 'sound/items/ducttape1.ogg', 50, 1) + if(do_mob(user, src, 20)) + user << "You fix the [src] using the ducttape!" + T.use(2) + new fixedtype(user.loc) + qdel(src) + +/obj/item/inflatable/torn/door + name = "torn inflatable door" + desc = "A folded membrane which rapidly expands into a simple door on activation. It is too torn to be usable." + icon = 'icons/obj/inflatable.dmi' + icon_state = "folded_door_torn" + fixedtype = /obj/item/inflatable/door + +/obj/item/weapon/storage/inflatable + name = "inflatable barrier box" + desc = "Contains inflatable walls and doors." + icon_state = "inf" + item_state = "syringe_kit" + max_combined_w_class = 21 + w_class = 3 + +/obj/item/weapon/storage/inflatable/New() + ..() + for(var/i = 0, i < 8, i++) + new /obj/item/inflatable/door(src) + for(var/i = 0, i < 16, i ++) + new /obj/item/inflatable(src) + +/obj/item/inflatable/suicide_act(mob/living/user) + visible_message(user, "[user] starts shoving the [src] up his ass! It looks like hes going to pull the cord, oh shit!") + playsound(user.loc, 'sound/machines/hiss.ogg', 75, 1) + new structuretype(user.loc) + user.gib() + return BRUTELOSS \ No newline at end of file diff --git a/code/modules/ducttape/ducttape.dm b/code/modules/ducttape/ducttape.dm new file mode 100644 index 0000000..eff6941 --- /dev/null +++ b/code/modules/ducttape/ducttape.dm @@ -0,0 +1,81 @@ +/* Misc. Stuff!! + * Contains: + * Duct Tape + */ + +/obj/item/clothing/mask/muzzle/tape + name = "tape" + desc = "Taking that off is going to hurt." + icon_state = "tape" + item_state = "tape" + strip_delay = 10 + var/used = 0 + +/obj/item/clothing/mask/muzzle/tape/attack_hand(mob/user as mob) + if (!user) return + if (istype(src.loc, /obj/item/weapon/storage)) + return ..() + var/mob/living/carbon/human/H = user + if(loc == user && H.wear_mask == src) + used = 1 + qdel(src) + else + ..() + +/obj/item/clothing/mask/muzzle/tape/dropped(mob/user as mob) + if (!user) return + if (istype(src.loc, /obj/item/weapon/storage) || used) + return ..() + var/mob/living/carbon/human/H = user + ..() + if(H.wear_mask == src && !src.used) + H << "Your tape was forcefully removed from your mouth. It's not pleasant." + playsound(user, 'sound/items/ducttape2.ogg', 50, 1) + H.apply_damage(2, BRUTE, "head") + user.drop_item() + qdel(src) + // H.wear_mask = null + // H.unEquip(src, 1) + // user.update_inv_wear_mask(0) + +/obj/item/stack/ducttape + desc = "It's duct tape. You can use it to tape something... or someone." + name = "duct tape" + icon = 'icons/obj/bureaucracy.dmi' + icon_state = "tape" + item_state = "tape" + amount = 15 + max_amount = 15 + throwforce = 0 + w_class = 2.0 + throw_speed = 3 + throw_range = 7 + +/obj/item/stack/ducttape/suicide_act(mob/user) + user.visible_message("[user] is taping \his entire face with the [src.name]! It looks like \he's trying to commit suicide.") + return(OXYLOSS) + +//I took out crafting recipies + +/obj/item/stack/ducttape/afterattack(atom/W, mob/user as mob, proximity_flag) + if(!proximity_flag) return //It should only work on adjacent target. + if(ishuman(W) && (user.zone_selected == "mouth")) + var/mob/living/carbon/human/H = W + if( \ + (H.head && H.head.flags & HEADCOVERSMOUTH) || \ + (H.wear_mask && H.wear_mask.flags & MASKCOVERSMOUTH) \ + ) + user << "You're going to need to remove that mask/helmet first." + return + playsound(loc, 'sound/items/ducttape1.ogg', 30, 1) + if(do_mob(user, H, 20) && !H.wear_mask) + // H.wear_mask = new/obj/item/clothing/mask/muzzle/tape(H) + H.equip_to_slot_or_del(new /obj/item/clothing/mask/muzzle/tape(H), slot_wear_mask) + user << "You tape [H]'s mouth." + playsound(loc, 'sound/items/ducttape1.ogg', 50, 1) + if(src.use(2) == 0) + user.drop_item() + qdel(src) + add_logs(user, H, "mouth-taped") + else + user << "You fail to tape [H]'s mouth." \ No newline at end of file diff --git a/icons/obj/bureaucracy.dmi b/icons/obj/bureaucracy.dmi index 3f0b5eb70c9f345e50870ed9e908afd98d59bedd..a2f647bc83101feddcbb8fe51bc2cdc6c4b16dcc 100644 GIT binary patch delta 19987 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≫{nGM^TRr@YiB)O@kN3uQ`}e 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 diff --git a/icons/obj/inflatable.dmi b/icons/obj/inflatable.dmi new file mode 100644 index 0000000000000000000000000000000000000000..549f90acffbfe1cf7a6dbe33c4a9c5aabe9b400d GIT binary patch literal 18327 zcmV)fK&8KlP)004jp1^@s6jALRO0002WdQ@0+L}hbh za%pgMX>V=-0C=3uQ^5*@FbqAnUs3cbqTLv~>@t+$Vg7=Ywc0{wq%D*E{pvibLnebA z3NPWkCNCi&Ip>$6B-ypV4`Hl=mYm2wPB7{fchUztijfqmk!}pEV@`M&Z~#-?G+4m{ zjJPt^XH$%7!|r0lQ?6>8dGf($g=S9=X`Dnqd>CnfZl*uzM7z$(!2DAuHE6!P5G29b z4u(~xG)j-rL|F|6H_9sqW^s}${^*(38|7cO@Tqo4@-lnh$_r`A*h2lnClUYvMuLu@hepA%IvEs2rY?sB9*I!7 zxu2*MK%$h&06^IHq%s$Hlbi$y`#RmKL1^1jBn2o1N(e|2`>MZ4XMupmzMoYj;%C2C zzxddTyY}tdx8>H#lr!b4jducc4Ji7wg74iRaXR1n!ffT(LI1U{yyfk4GVL;b z!;SJ04PB;tMhoD(KOZeqnDM=W4}9j~O_1iH%)&GYG_)H{Yq~<^3Jsi^N)?S#37@N4 z!`LE3V{fD{*A38|oNU;*&CbNu5`2_Mx(L#l7L}CN5LuCl=5$D!$0cjOc)lg@qrbWL z^}U-@_HAYc{m=*3amMP}N8tXuo+R-wz_)(>AkE6igt7{Nr+(1|w^XK_!Vb|`Up;i+ zTG*0Dcuyf8uhd_I`~Tuu5^K6fL;9cpQ0nQg9j0*c8in6y@&{B@ywLiM@)C)r?if&k z@ROfif-is1SwA}B1cyZ76Au(X%YX(|tS@eakHzR3?a^;`z`iXhO=!;aPd{4$^zJNUobbQU>WygI+*mcY zcc*%~MFY2&3m`ik%ACjJR5P51HD>VI_x|a;wsj3t{s-2A!&L%Q8Gr`nO)Kt-ivxtS z9TaX)6P@|d53GZyU+Ch$e~=kp&H9a?c)WbrOi!NR&+d%_UCF%)wCNFe>`Mjk45QyZ zgz~S0xqt?)GW~tD2mUoKH296F7N30Bcgt z<@WZE15Mi7!(DWa#Af>abYl1o&JST65a#}`YrW9hJq}e>Y4F`|e}sPiubzv!7sPiy z_4uFCj~++?T$}j1PPVzH5I~CX}q6W3)A{ zAeqU{W)|*&u`}GRUMO4bgAso-=kG>%vC>S<$b(#OBb;j*ht1`+;7;BSN9vAonhJYk zJM+LS1OrcE5BLMQus%!BCrYh8_mZgj2&G%Gp2E;jBY)rKvR!bxMP&o67N*CK^5+$g z3++jBvRTzhBr3J_^)ZK>V-n!Tx4|$z;f_yUq+x_>%2ufK0&&K1V4L%(PcIPvZce> zf&(1P09`mBFAlJ1Q>GdV0_5I_${y9DIkp#r%{orBgfp|fj8D5VC0RU9Jkp?viJDTa zXS||MN|MyA#rR_0-Lil9H8SCsC|7_i1XLV8P~4>eYHQpTpXi)~l64X^H0U0fxq%dC z9&|`4aixnM*OS7+9oGpE{iFhmi~0A}MFeJ4AOAkh>w}J~Q5m0ueK8jT9{qc4bL?vh z7gq*NG=hwbP3#NcaJ>q%lP5vuDhs|0#*7b~nhw775WV|W(T9iYHPc;H zu^0*I8GRk9^a#9Q-?`aW68mz7kaFl>GmNI2(VVu@bh-Li3@9jT7Psk4+5uZP(4Y^E zj*q3uifI+fy_|iaA~cNVr*WBn|L+seLv?jJs8b{JjB?SY$4|mH zeiA!AzVoe*&;!+3Vye|wpt~z&mD zp-IG`hB9Kw2TwvXQHxh!;BrJBmd4A7_Es}TKRiWS}4sM8;i;@lLHsxy@d=lRx#$+}DSiuBfc-v7b^G?N%o}3Mz z4p*|_?u1+435hf{->C8LELYedj~t)jZk47TH+Nz}J>PQqFzAZ3q@Av5fSIXcV#k>g zW4ii_8aEWo-%$_X?lFnR`1EJYEo@^&+&)w~g5%c72y8ACn>=Xj$ll->h17ImgRR{w zmj`Tazs@>XhSR433=iy0Tm$K4-nbhd#=42l<7PZh!lpYt7LMUSFpMcZqZBeSD7<>; zxcRrn4h=R}08V||>hFoX2xs4T+}5HVjc56NWSDDg!I z-_Ggkr{GFr@gEU-!91XdMfMCVXnY|CdMxCb4e8CRjQ8*m#>N$nR&x` z&3!)4_uFF&KNFJSqpe*U))o>r@--SE21Mq6cX)+zfUJX&9(Hu;hVT*m>Z$niAj*^$ z4u)gF3(6RpW5iYX30-H%hn0)@R>Vu?Bhq`UD`I6}m-o0!Wc$!d zY07*t-_%$H;e?c5Y?%g2yI_ zX@uy3k-jFCnjLLS6R~a>V@*#UkC@Uud0u5xusshK3tkK(Xdl=F0afEU$ldxX99v}} zvBjtzS0fwWQuzoP9}VUp%ke!|%xNE|U{#iggxhcU%Zd#$?&2DQk}~%hHb8~(9cSKe z0Pd{KhK9>EVZ=jofoy7~E+;RKA)eH|WNzY+l$}P%SU)vA-^^?)oH{iOJKy(ATvo?N zfAtW(V|Ovsx8aWa@p-)su1H@!buDImAl(C1nQ%_;CtU6N$Bx^khLaaGNX=M~m%Js? zylkauU3nhZv%_2nY$_0iqI%>tujh-lPeNt2(ltCE?!+MdncvYn6Sow*JNR}L@*JJF_?(Uq_}!N z^mrw{X6V)IKFEkct@*cDHY3?=vm;$F~fS0e6kUXG~kBkLPqZQ_y*ZX*fx!*u( z(BO~{YaTFCI%YX^F}}nYFqngs*rG&OrozjY324k9sMyyfs=4PP+$7da%3;PwBo;qV zxO1mv8O0vlRS^uRMOD7J+Cn}E<^T)x*g`;TM3B&cweCD)_V#!gAB8)1NAsk_pWXSs z*wNizW&hpI3N{5^5=zJNbuw>;cX_Udh(s4<9UKh4 z=WqiKIG*m~ix9dhSv*KdF8fsg>Mv?k)hc_i*oW}5Ak<=f7%md+^aV}D2^H(vBuT;? zBGi=PUav|F<2%HYj-?~S$pT5eGI8?;B5OgLB?hA@iR+*ZuCR9v#m)Qi>^$SQYp@)q z{KxpTU#BOc6$j=4Q~7jsrd0z;iY;C2C)^phG+4%BT>>)`$HJ1fSdW*UzDCajk{ja1 zN)tB+c-0LNc|dLi^(xj!0TyI7w(I%1nLOy4@_{O87UNqQACc%{B3jfV3gbh%#&}bb z63pZ==c2h&<9oK6rpdT%Ms0~`zE+vT%(-<$NfJ@FmB{!T6}Ryyk)&gdDxO^uB{M|A z^p3`!VH2MeU;?oqlLY$Ms3=YmF#jO`o%gah9X1>Xtquj0_r|y@^$`o^fO^Jl>?@elm^%4eJ5%J=>~o>!hMgkncBN z8RRL)06vKV7U%cq@k#u5=hmj3gNr=@TRL`ZvKxBa8v&fV<3<-#9m7NQT+ZUP3JYNb z4_J-7cgHT?!$uxZjS(Lry#lrzqr~DnStjQ02WrKUxE%rkmCa(fWp|E0S5dY%?0DsJ z=%P&w4K{!WSZpcR@{)Y4MCTRJ#v^^#G@^SmjaUo$!7ySr?M5)ZttBBlC5`GlIY4fB ztgGd@)|NL_JfevfXv9D()v#kGt_P<*fR(BIvnfPRxfsotF;AQpQ<}kdp=Z8^xat<8A~PZzilc4?lcb<1xzF zR$R$f*oxaj4JKBGkd|HvEuDu=gTU=5UsiC+!+r=YvR@7_p`XDRPF0N@<8f1e=h}r5 zYV_S0%5#AgjE}|N87*BS|7j#Rwrvy#)G-mEj80J5lCR+_jLIUJ4h@~nsXIFe)mt*~ z!+lan1d5*Tz)r|zqzgf5^y@?IZx*PfPdt5n$8wKVk=I<^BMk;gCHmF zmNw;MjetrG;`nd6&o(9No^L1Iwd*J|!hXm~KMZbfEeX#T5<1X(W-Z1O-qm;3JDpNM zk=d6b2lDc7XN#2!{MoA`ewaEtXVROT`6%7}{-oOWc>il*v`MaSokC@Z4CwV(Rw~Of!I}bwN(e#N`R-}tQH8i)0KG*Ht4VU^m zLD8@vRfpZkO*};WqZATScbde72c)%>vcM}l`}L>{8$!%Ejbl^gMy zrshMu8e6Z329lRW^qe&EAO%<~(v|Mh6lQ#qu{a4ezB4W6(Lyv()A;=3m-Htt!Qk}z z_N46XQz9Khv{V*rGUGGfQK`oa4)r=8?Z-~Vw-Ujj4YL>w15mpxNPlOA3*3q2Hxz&` z)KKB=mjf^}L%1QdwE#4)ph7ki)0cCDKhv*MjGL^f>o){Sk1x^fV0G#mm2Hg+KlyUYpHb z>zVpPnyS%RO{1#F34*+}825jvc{B=*j~ZENjY|H}V`O`&MEt>OA6j>wY99Bc0L*sJ zC3tS5nX4o^Is6*0g#PD$IS*r#EGTCK?8#qr!N)$h&NMz6$7SjCtO$S+7Y04hX%+)E zo$FyS?K&?EmY6kAEniAC<(^#Ps!}X6$q$ zycjfbE2}6I>+t%_zy0Okb%H|{2KSY}?|@G{kgppcg}KS&Iv;ddd_n zGW^@Kog!)d$lt$M{p`2yJ^jRwTV>qGXzA8)D+3oOXkqvcsiKg;g;P9z!;!miWus5G zm^zl8?e4(REYjH+N zrPJ*;>EccavkUn7Uu&7lzJ2?=cWqDInwf~@(G>DCr65im5zF#ZZTf0S$B8S=m%?!3 z{8J&gaQdnlU1-rd;dR_PE?i@W$^UfHZT`;p)Vd(SEpe+i_;AYVqIh+_Obz;{l&G-i z44O^{;UoQgC;zd9(I44eLf}BL`0RcbAD-)W{HOUcH8xXmc7g;IYv0)VS&t1dPdNv1C5n6i`Z8&6U0*^xS$ z>H&E8W9#{Ricc;FCoWoCI2=t|wz6rLjriNEyzPjDiS185Sp+FA=2mf^FiJk^+pa*m zXLZyx@mMk%pvNu4voEy6AO5Y&G`_n(T*g0fxM2uB_t_u4FCO0a>@Pn|E4LQHmf8S( z;~$$~cS$0ora3tj(P#d!7`!fy&nV&=_V0xO3fs8+!R@-OK7HxVy6x5atB{$I1*Mzk zmmh~Op7W{PM!4s3BJwDc|G8hZ!5@CzHF8g_6Hx!3{`iI^(Y^oAL-hZ`gLEmpJoU3n zY@y<9SG);K`HVPHa(nkc=OE(5%`O=yE)*9I+s^8pHe5I)?qZ9O+3UyPlOHL7Cm9p? zz~}#{2s{q9`cA%;bpURXt5Nas+*=xa_;x!@W1)n?x{`OAG%?n4ITi4DoZwXs!Jqs= z5q$UYi*R5gz)}9}sOB?vH855OUFDeSLHXTD;?R*He~NM#KJ&?9_}-6N0rmfx zPZaW?%agJ@YPym1AIi(ls@gF9BQG;7#{7c^*TYlKcXFq|r#g&)d&j#V5b&{YH7Lkz z5*T&sYl9ie1#sfRap4e}ONGHfkpl`SyZ8n*HpGXcGbaGg2P0~j+bIkt!PChE^g;VI z4YCqXGk)0T^tv>}@C)VRLkEt-PhaU}|K@U<81N!^t2aH5S9V}d%gBFe`rc}822KaJ z!Q|*0;#CedwJBccy>JXx=f4kjl{LU)fAhfH7ytY7j#wMuBVT)-y!orYq7Q% zY9Htf--eVGG7&E?NEDZ?UxM-r__8a0CO<4gex`7@N0)z!$=}4}mlu~m(W~o!0C+v1 z%M%0rbK{Gke?lz0Nbnknum~<)6@mH`^BS|W0X`biyk#av9A7y_i4$kVh2v3vZwdE& zybueGjD25}bsP}ML!6!m19BQJ^sLc=6IJLLu3)2IgX%*2`y=sT(43hS(K*(-32#ez z?H>ZER~AZoJfnes>`m7BdS|eh@MPl{R95a}Ke%w3(bytoI-a>mk4uBijGxYCU49U& z!wX#&`A3-iN|f@KO1%GOrgZrm#BK(b|8@<9%Rf2xmMOnY|5FzIr!xJgE<^u1FQ)$c zN;og3{?YklpI~x|1&PvqmGW<#DSKg#Etk+ztBULe6w%_uErbiF>SJ&3<^dSF793oL zle#*yR}3_L*DqQ=zWKS6&~oVtY%Dmz&l*IcSySRLyTs$}hVD@oAG$=e^4n7s?qv=~ zab$4f?$oW?SN^y^P(t7H1e5KPu{OTNFE|JwAP$nw+qjR2u` zANhD496WOs_H8}MrnYKP@Cl-}Pt{lOHKi8$6S|?Ri^=a4@*DbhvH0Jn|0w8|h3cP8 z$p?SK^uJfve*|9kRt>=L)u2OHjPG!C;6vMriCH&Rv1u37wM0IoGA~YC2re8p<4kB} zSuM=W?HyPUf)4x3AN@!u`P2Z=z_Fv1P1n>jWz z*0ymk+v#J!zXa5>PhL~bV!%tkg534Lht=UUz~a*H{L*`1*M0HvfK{cLY-K(UFCSB3 z4VxCPjxt3ggvg)9H#Ge1N?^V?N@G)vZOs zg$ueejU%g`suv|eV-r+dB!Y*MHO=H>cqrI8Sh2Dg9~_@B1lRyiVFk}3XmI{gfW?Up zaHZS|>Qp$uXS#P~p=z+}=aqkOY4RUp)2=5eME=c@<##9F0_yZ3Gaie%{u>t7KNdaI z>H5ctXpWFszApIEh0cZwuII;z3&n-QX5bSWpT+Gj9_#2?PL3GQlrT4^!A6}AWB+hL z$S|FcfB8j#t%Spk&!C;oR$GWg=TJn#*YKE09%cZ{`(g}u_Z{yypt^asi}9%Kij(2J zdPap5hY3gG0A3bVYSllZ-El2Cy37NH7$4LB z-Uajzy8iW;fKS2eea5*^L3Ft|aZ%yIozuX?sU*Q^2S?)i+@q6=D>)J$NYj;6%af-DO`{?0M8e(!wWb2H zn9TlB!7m!$&_ojSw*3ce-uioFXq;kkg)^?JVCN{$1HwY`vpCG9iZc}R$zRtjwz|-J zx{|i@7%p1*Cw2KF>OWK0zg)W@-7x*@ykJp*l^0Y0TDbldBLJNqKLQu}Yr@W_E(a&h zjtfV_!T_S@mDXfSaAlD44w)J|2nk+}PY7pPDO-fVlK6;3Qvh>=W#sdVa=?J54(-Hi zBb1*(WD67rtU$Z1T80xBK@5noHzCoxD=2^3GUTrak)Oq4CApF1H^CWoe3Yr{N1^3P zb?o$Cv9SJ$u78AQ<3HfpP)8EsOY$(h(eyl^e+-WS1oIHTIi|w4N?dkl7%^E~Jz(Z4J>t@I zjAldr5sUnKtQL*@)pmTwh2>A^hRHF?Q(uPs9euj~J(u|wUbJ*0wZ(XGx%;5BKvX{A zB2wwSrn_TZU~IS#9Ez75MkoSiNF-c1YaS3|K*Wt185CnfY?TR+wm!y3Qo7Cu`|X;v za}lwUL)$0rQ6ka|%|Qm=LjVuN%lZl$jqiW_wHJDOFT(14F;efUmE)F=aVoguBtcu3 zW~=l<`IFNv)6=Tx0b{^DY=Jm@ zO{iTW`nh1qa#x!;JiWNbSqvv`FHcF8u&q7Ni zVm1r!u4{{*^OHkYguXnPdH&_ej|zY7)N6;-vU0VRED_Y{g{b0lRuuuRmHGfzQW6(E7pg1Q|$@mbdfoS*$ zr5QAMk%PjtKvM_i0&|(?>C*RL_0Kkru_?HiPmMEUaW%d~r0RBRFgl?lrjF71<|nUn=SG~sQkooM^2FL^b{VGVEWI9j_!i`r@{ST!}zB8PRJE#>ZB$*7H^0X zXPvv3iW3(NE}YRCdTQ9;PU^=Z35SU=uF)(lu-@RcFdt3r{ZO_cCn}ma9k^WLjDb64 zFR1=QeCOl(nBn=*`0C+E(=b%t^=v$*VEN2T502eZy&e3dl*#>{rqQ7>ELHxgi4)8V ziBhb_o@(1(LnLowmEV)R7XnjO?T&eLiGRALo`}m8oH~QymjKbSp3DB zEMgluh+nc;4sJfn55J5~ZVXn$7`yyL^!c_B`O7Wx zTk#pWm!M@$7b7*s>mFsU3xJS2$4)l;xPc%(2~|Xu zbhJ2e^WnmYy}&XS2k5wPmOvZxQk{JO$q9nt>FG7RiWYNWswOZ}h`wnUi4R$(^U^ec z5P^z%L_^Th0x4Lip?pqF{){=Qy_D^!u*=``V17@Pc0K3M9zE%N&<@~gW1`uUh} z`9&F(tmyLVDEFrPMACDiB_+17X3Ts(?5-PzxYDDWMu04N9O}}{VN7D zh!ZCzP_c(gLM=afoVdks;gCW6Dr3)_J&Q-e?D0Ztk0wsRErE|{X;u~)SE7i6GMEc1 z&JiCmVxc&;IqT)1yV%t9)0PPGckA-g1>|oHk)K)8))LuLUZu+~QEqIwHOA#H4v~Kt zbCN;2vS(>@BkzJl$4e>GMg5uJH4PlA1FKXB@{Q=q zA_b<#30UBX!IQd=@ewe!VVvctDBEr3)aTXG_zyx;za4@p!F#J+e*G**MR|z)tr6reUO;|*U$?wem!DeXC*r-R ze@`;g|D3M>%n15#jZ*&+cqz=*_0Qs2EDEVCM*WLym~vGg`O-W$w;{93GCmy_E_9ma z#y579cj=s}CqUWP)#3U0FiIB4;>H(&ru97t$AO)BspBADc^ir7J^NQ;=U0Ti4mRZH z=7RkZCcm_R{H-@2KNW_AU!9$An(~|amln`}YmD^I-jBxT=NLGI-xR9Yf?*&!PFy*p zrHcUaY=pA_k#OSX!-eAsM}2R(+Txng7}?$dU~*IAQB%RJ|NFa z(`cB}T$L{C#wWv-At|i0F%MW({d+Jo-oVo_@rnTN(ic45^fFkLcmjU-gbLZKWiG!n zF+~0hCVz%S{#LrMx0z4=3?_d@1o7fa z6N}6LYMp)cI%Yr1?ZKHRD-tCx$66Bh{=4x2TeG~%zGs|1o(?PD&v-2}3k8hZmI&mO=l9B{Q{ zrJtHfB6!=KY&t*6jPMG3r=6xXfHv}p$r*R>&R1la2f{gdw=*hY)6Gh2e|09j@$!Ro za~zV<_|Ai`{57p9I>^t&8b*g-{&5x-xOYdEKZ`{0Hnnh|`WQ2YtB~$J0-mJWi1|Vz zpO~C!mw&bI0Hboz%*W+=5ioPd!uq$;{T0*y`z-or-{bE>d9lWmR{bZhx|Qj_O&H+X z937-^{0M)fvA5cW57*uoKE+1DiL>IuVa{o4Ivg9W{W9U`NVC@u>Yj<3X^||?TRb>T z@YdSsw_VmR8DUdLC?7w4RfPu*h`$^CzjuqcTgSM05}QL29gpuw^e}~wzG|AQ9Sd&^ zesff1#u6XzH-mef77Sid6(e$@nF)u$e;pt(Wrtn_fr!m&XFi_x1Y*JDGI-}INbOaN_8PFoW^rkz3d%p`1uZ`fPg@F9CDhCcAQaC z5;6W03J`oy-6UC{++W5#9~+~WsaZG~X%Gaxh)5xz@r@1|SCU?a(b=_-u&TzavPnr0 z#%DB4L=!d_?yq(LB=3RW{O-lLPQRMwXVb0>eS_5G9qmul<>~UX_^5M$$)Bamudh_L z%%=y-4hI_F$Tb~Ai!%8GO#ZYQv&shLN8>Y^Q4dJ;h0eJ)j7N3-vze!@Z)y5RUWNyH z_zJhWv=3Hg=J7KoR{c+L{S&T#1+SQS;<*lv)zZ#{btnY1sS{k7AYNT`IB`~7IAaPB z#?S*zecRc{b3kD75T6R3d!gNA_{Cp$aBw8UBQ!Q0V)2on9}ORT3L87dX^vVdIq)D( zf~N;Ou3jLX{g9S|rRbvbzyEI+VbU+2d+p^$xZ|EpaIO6{*t9+g-Z*(Jeg+s2D?`ME zLF0d`8Q?!&YUkiU#=_{_`NRC67~i=7Q8&1`kSXqZguw@*zy0IKd6mkDg>^)yN?_i| zgf^G!c6T3}Xurx~yhRe`= zxdsvw95ClU%=Q1%7ex4@eDAMj3jX{boSpye?>o$WpXK7jEsRHZ$;5@jl_m=JqyIL8 zJBO*C`54}F zj&S*pjigMxo{;|M|C{OmvGyg?{fDoH>wkV;I>Yt<)tO{v?4W;UZpr~0GJt2RO*}pb zV#*nKber=b3>VJYR;4H$Ck|J4RyR%beAlJ|qMra0+c`-C<&U{=k*t7DyCz<4OXb!$qa;*sq%o!WaB zl65J~ik&CxbbiMM6dK>YefzfDx+O)>#p98A;eFgQV1J)CNs16#hv*{N{>=3$J0E&0 zsv|F*{{6p*?slO2mnr|f^A#_k2mI1oseKM+c%NWX@N#hBLR+*ragTnZ1NLoAY5Lj` z0vE4Q_~`xlH$-=-d_4JlCw%$)&icKT3LlLReqh}V(_9KKPyhT9{QUd((Y=)^u$jf` z4}CD7(>>Kb4ENvhWL%PwRz8saEn8Af!Ae|BwNOe5_e=lqp$*W^apATv85b@r2NZ%6 z=V2?lt;NKK6L;+N5qO9h+%v2b+J~6(S?A9M5Ib)Bvgs~`kE!b?;NuVE^Fe^^!TZ+1 z_Vp#8xV<+-Ga6oGcPeNzqwwu7t%qk{xCC3*2;+CUi-9TwP|xDFiaX+?Y%3oReSq~p zqyKg{L}%rAbU1A$B=vybpKIoBh*E3r>CJ}=7uv#c;;4x=f@cg6v(BAV3sd@Sk(x%$ zG=$sJ3uW0p7@5@fFN=0YO?NRqa+4Z4M#|>$TJRurdOweBF?L2=&G^62V zW6m6tO%-SeY&O=|*Nl<`9hcAZ`n&3?)|k=lYz)ER!@wuOV}di2bz(Cf z*+GC#HVvdW@}NUbiEC#gFP@}QNOGU#KOaGCl@d0)bWDKa+ysitvm#1Qbo-$=UxtQ; zcYpyJ1JISkVx$dpS-5avu6_ZWIEV8xhxWq4gvNS7uBwPI#caP}y3z1~=TfKeK)M<% z%;fP=cS=lXM$5|~{k-g{i)<-c#uVWaXrK;9F{3*kGrFPezkKpTaOUjeu&sC%yc3$j z@i>_#wigRiG~zYuc>wGF;$paPq0KNp^K7WU2DX=8F;SZMP2S8K5&hDX;o-=bC`+Xq ziI3nJS&=ZslJP)*!l_mYrR&4-P;QiFq$bWs*vphk*W>+h$2jeH(Y3bXwRzBTX`Ign z?|It|5UU{8FMd~TG`Mi{8K1R@12fgk3!UPLSF<2a$H7~ldE;~!c+n!m>waPRhAaibgB{{4k9s4OGz3* zW-b>OF0@696KBSJ&Ee>#%b~j*K4MLCX}rjAv{AD`TFlP1!8c+^H?;lmiJw7DO&SEI zM&B6*XawSh@maCqqQ!-alwt_Qi3^?$-od9tW1_)*!a@splKniw(&#S6NAc9v9pzz9(<3Z!o|K?3z!~X7#yAfb*T!Q)zNewYkw0%e8l0b|bUQUy+*iT*RC zz5D35U-QAS3pp@3MfnkdWRD5~O@awOf=sE&a8s}`>9j#=sjYm3?bg~^$V4L+XPUX50I4#aIB4e z@83s{B)k!o5h{ik;t6491bschecNbp;TC%afpLr++?;+5)gBfDJ=1O&qHK1Dk%xqk zJY+O<7vp1Sun8QqvcDcGKeTn^p&_-G&4#9|hW=iv6}t59PV-Z_{6 zR4$Df&G{O}*wg+Kwj&J~lX+5dpoWDcvvct`Jd8QV{Ly<^yv?)X(*#a_PcWV8Vl&39 z#fWr$Vb^~BU#>090PVPduw-1g&=w6&9NuX*Jy8e8n>6!&U-Uw$S<9!p6h3a>wS&{2 zZ^5!$n$hxttNqEb;~`U{1T!JL*XVh`rO}Os4+0_&$UShqs(U}e7aR@;(oMY~n$hrbX|N2c%9*Sa!6`Vw<%dm0 z6>z%sN@U!Y81sR5koc#MMZD=CQtRsKf|3ne;LWCdINd(WWt~Y-4;}XpHXpzxtF9{{G(@;O_n9FgWIh*#IV?=ip+m z7ly|*a5|mP(Wk(~#00drpNCIBxPECK5Sufx1_E;`)Rf_t)j1uTZg14kT%j!#CvNCk z19+&2EoC%42jLabc-C|-K;f1hJGoknJfP~_9h1(s@?pGNLLT@PsljFV*!6Dcy~s2Y zBf9hPVqmotOK)hRMzOzop&chh^11p$kL_Q|Qz?KG!rak#&e2$8m_k;*s zI57z$HeL7dB3>;T&j&%AIBT6>Rf)K&3%_tX&X*OO1`(eaoJ*%04Iip%@E{D3r+^p_ zXP6OqlI(PsLo*s)(lRQcrR#`oK(usEGWyK(1}-oIiQix__((}!2Oif2_~A1vYy9&X zVEKB;v7f%x3vx+9Q~B65#* z+WVrSyBHq^=5nykaXaIq%bbQ{K{Fa&O4cTFKHSMDYgZU;yzo0#bR+R`@^@dLn~Lip z$*I00ivMj1o3~CJ<8Cl9r8WdJ&pv{8M={C`oH+kvZp3FA&mZP#0i1?0NsDx+#zkr( z676W{F2qM@ZWDJq3}jG_<`g5Ei}7NOLvaPpk0n@X(}|eU4dbJi!lq()$27hOF>vAd zm09}MNL$|~<_YWtYSDs~8!)EQ{q#81AAv#MUXD?lblq} zXfKoQJbb7bKIVbTP24?o zbbKojoG`>GmBaOi6!B}Md)V}C$2E#3RCzM^W5*D zx}%WbQQ(PZJNPaHra}-SiIW4xb>$43x5@3qroMH8g3cC`4lMKYjYC3xPlRTgSI= z8sN<)eg1Q0%;jk$F?GMh0%m4bn%qC8fy*0EG)?0xQ4G%tGeK01Fwcmox{fP-RMXn= z7gS%&(Lx{5OY5oXS+$3@bZOx6^8IJY;gG4@=}?o%o7!jpq?CUDpPIFs2KX*-7z;Zc zq7p-*-HJwYm4R_8xn>XN4EB#hV%C8XG`^y2OQ6I)bnyz>+-loNwP<`eRa417{3@B6;rEu%n+Eu94*(@zo*~US4+wW9 zNq9##Zb?Y_IULBw$jB4j_-spFVSJQlRPpE2Edi=u8bs#Uf<|M@>&jxqxW|f0^s+RJ zQ@m67(3=K$v(bquHWj<{tCB>dCwT%#R@I*whb`Og7)5Ks8=EA(h*#6Mt#sp)4CBKD zzQhbz78_`2$aHnW*;Qvwjl_@?c7^|w zvQ`m!$Zz;PfQvnryPWYi%vEk&CxSv|eB5!?w`pPZggXzio)E ziX}ynNaiX@njB{CR=PO_-!wpGNp3e$CWn3}C8pob@246ZwQtU&NfoWJd$o(*_GuRl zv7!)f^$V_u>)R;F(QlrRnek!eQ*I{5!8Wf+iP`|;g%5X={@Y7`RSM6(C{$c2Nyhzb zu4INX&%!heEGB{f`;Yt&+W`PfnV^HEBc^zqKgUq)^ zWq|R-hl>^cXJ1T(LN~w{-aq=b(0|+I|5YlS_+O(-rcXpB1gBv#J9C*Rk`IG4$^ktG z!uUKE2?PjT?=wy-(xCB)yS3RA%40fGyq4IKgXcR{9_v|K(Hi~>w#@G1KM##jOw&Z? z0YmZO((nI)d4l!ecOJeWe7IQ9N8{s)dTnWanBFn%5x8g;p6!p`T_jz|2!Ob z`3?Gi`|m>L&wXT+8{hMXzqu^>goy34xj^txATumU_P?1t!eYR+Id_feIQG;qJ|eDg zBSZscd?u_P|6ki>k&ZEzEg8;JNgR)-;Pz47h{?b(F1y7v9F+lv;=`fxQCMtu{MR4A zum9oUW#hx$DE%Kk8#KO^pkKv)zHlWRAFmQ%#pr+GJE`X1zV}=z{L%fRy5TI3J~KXQ zSrNd20q+Y5V&xl|66AH8K2v*#uZZqSm{6c0yDNBKWhFBjqmxR--PG? z=ff*P|MIsUhI=3Rfl04<0N{bI{2;FM4Sc?DJT(UJ)T1`zF z%47&)ghGOwh~x|iH`d)xO~?w}`$2xL#B+lrg7F!v=8gH*Tc0SfMG18{WORFyC-qh` zJN_ogP9xEIz+b<5&V~<%&593aG{lE1E0X#1k9;+D3NYw%<@W4*d z`RXcPTUNv8iaXNi3@{WQ4x52-jS6`A zAI0cLd^kj%Dk>_9sRuy%@<=b-cH0c6f7hS=fE(S1-#5y=AJYF<77N9bzE%Eje&JDg z^gF`qu9W;p|Gl@)!0QKHP|X6tQ2PJ+eCo3B`HbdJOfP5!$uMSRK1CPi$q;;oKu4cu zcYExq!aS?z3%-W%!+62~b2AC}1@udF1{jJDch{c#t zTbPI2efqLFS`QeC4|mI+A98%SsTr9CvGNV!!!4EmjH}>nr5|g2yrt3~8IU8=pPgL? z69Y@9kND0QNdeCXQZhNE5mnVlKxGa~6ZKibs}a-qaE~}7=A-NMYG8FW=Q_PJ{# z7z|Q1>R=&W_;5Grzy0)?Ax!$GG#4{utYDT@O_L?-xJ93Ywec zSnu|B-A@CmN+(oRO=L#mMyptpEzz-|qp1dB*LYyZ7&kwQ^@%-V16vFL&;J@|V`zBj zDG^hW*_e(+D$n%|l7OPfft1Vx0sqKrke*D`n+EtUZ)icP3Up%VwOLQG@c%g;- z@ux~;y{eD4w!DGfX-;G75>T>*FIen|I9!uZ%<|LLEbVSMuDBII4)e)?G8u`hnx@yL&V+=4;dbVr{? zbmU}yKphRVWF0{`N2BnMHg-@WC`6aYQ#9L4CDI%O8>A}@SWHPflt#xir mg;`uk;{#}XFP<3t?EeS!8_c?xHt%i#0000Agl5TuoEkPhkY?v5E?xa0Tt zu66Hy-?i@jYxX|-%sEf(y`Sgv*=M^At+N9yo(16a)-`lhv~qdx{K?VvlY>174oQ9;6=-%b}py;Q}uJ75~DAJ4=FN-;JUg^|M6`e5YTNYifR_qOb zgQ2j<`6j@Pef{o__8L5IuYWB%tCRXx@gDm(8}Yj9Y=1YTG_y~Q3N5rhKY%7bcd6o) zrLG3-G;1Gz87Gszsp8ciRHFE?F|%@FK3j?}VFAXvw<<0v7$4SRR?{Fa=VsM^`5a}F zsOSw_a(?bxv0V3L(gS0@5vE#w(l>1Fgk)hqrMkPBF3KV?&KllB6OII$mClWvXQNd5 z8#35U#ZH6TDfJk2a89k;Q!wpSUVINn>-0vcbMn&{t2@j~E%WJiL{$uG^9!+BL_;1#dTg<#6uYLChj=3?zpHWi} zz|=lMm*dLydFpX2dWF70Y3X~Kpx!UPcn_r~yQO&lBnHiPyN4&LVAoFCkUEleTzpim zz+jb{bEdUp$q8#2<7Ju77G0B>`)bXCkT)-kW7663GL=bam-gXC z^|^_TKVB13XiOc&-uouYT;S7$Q%-JX2E2}hB9b18DB8RK3Vzl7bXjP)sW>;&nf7|1 z)}qK+LdO<=isl$Dz3#c+H~e=QC4ZR4m;ho+`Q>vb0xK<8#B`Uem%_!7S~8@cg+rNO z%9~jVV%Wg1d$3o#fa$p|gZkIPBA+KYhLgex9y~B+Cpa$eu0R zT@$K`;IXH@;$MiapYRQ@pWsyK`*lxvVC29$kCLV-#oKS;=C0tB?OphAFxrb{0(CWf z!yQ(F%9~s<>-N;|xzHyThu7%E2LLLk6V>Dz2817+BUBrsoA9ZP_i%OTtAJ;L>id`( z(M5UlVfv_S+H2yv6e`BkgTZZQ*GFIXM(J$+qmSbDgcS_!nLXzCy_3Ps0pFQM2qdV) zHf3hxmd8GCW^ZBlF6(rIB$h)}<=Cqeyvb0B9TOTjVgUEc9p_z8 zQFuj%4NpIT9|J^;iR;kCF}KyRLA+IEi8k>5T6{>#of?~LR1}jzvPvFoAf(8biaYm^ zz9=R8bmiHM%F4b*ebKl4T@+O-q@?uy|(HYrb^fmuEo#h$+JAvas2+ zn&*^hEBfyt24EBE{Wfd;LaJ=P`|OqrMJzx_aM#%Z?Y`B63027&waS_HIcq^Tz<}OR z5Ycvvvg&end#@$!>+=?Y_ueIPe_G!(twt9eoDJlzqGCUh%zMTtghAH}6ClLp-KDGW z@R!^eb!s1@c53$6-Y-toXf{1w4V<(9b)dW&oPOr6{fg&R-Sa{`9+QuKPz5OoE ziPjSA5-&OYmMdnwSa&2e&m}a+Wud;%-=h_U1?vvcRwDU@A~^O|M%E%-l{O`%PP*%< z8$*C}s6}D>Hl-RL-$!+)992iNhZDE&sz zj~>b_hqb8AKK)*k1rQ%3e%17fM)*q)cQ?eLf$ohkW8}VWIMaKd;8deV(E6-vKm6VI zQRw3TVrIXhMOEWL?PE0&_XNF;vgRg4}Qvs z>}x5rOoE=1M{0hsj%1*Ib@hDa+5hwnxu2A1QcwSPccRt-TXh(bO;su;v(v5P6B-dG zQ!VD)2u=#0f4wzF^^jgJ(yG>c)xt@xqX3~xgYREpWEl`o9= zC5TQxeYs)}*U|_c^Zhy^Luc(N(oR4ldP@BoDjRdOP=^Ivz4{Jkeg}27`zIZjFt~GB zgU7HkM|KsU`6sr*1#@$=7%K-HWS9#(i1)TOiA`#%zFEmQjb))Xdj&ER~gVgLA+|LtE}_8HT>+7_4QzWnz_?9rd}ZrEgcX_ zFlYN`t{XWrI)Z~$M*X%^)Y{hTr>R%~D1SBdmvM_T#t{$CN869>Hen_wcB+m|bmN&0 ztvKyYYk&VlQP$w#;MDuVs@ts2aigVBx2N)3?HNW zUI9a(O-^BGXEjzyOIb5el5J^Cl8j;J`gctcSn}{{=k>QC1Pd1)#^_2gly^21=oaRw zA67=$dU3Mx(!5UwrTwwImBwMa;sTD~CD1CGsFJaJ;j#EyRaMT}SuimvsmggvO;k%8 z^q&}($BPZzpn@Wzhp_Xo=xBWXXq=F@X5&61Fp`YdzM&v8t$ zvq6wL+|E;=);~bx1Tl7SMq8 zw5k&tbw7h`N{)xLVvaGdirp*c!7%lL1_eukTVJg)a@{PSSmX{arQsg_zmHEd+n5FzJed3i z=m1AQ1w%trVcTPeAd8>%wnOc!t5pgGITXfd0N)30tA3 zVwSX9JKJc+ft8reO@&Oh%CZ!ES120;L3V|K%MfBT*6m)Uz$26heVIKeA_z`xYZrMq z<6ctVsJWVooeB52N?qRhFGBs#f>1)wqwDjiyPa&U>KF*Ic zciKWdz4}gm!r^bBNfTOc^+M(*iqJrZ^!m_}}yLb+0@H#s?L-uVa-Rj==Z+xmW{?uFV$vQqU5j1|Env@h|3$oi8y|{Qx z-sr{BV<=XBnB(+Em`&fdr<#$aqQo>(f2J>yw_Cyp`|L5y)wOxnGFy!%XN+0C>vwp4 z+KKdZGwcD8zko`LEYb82ZI?IIjGk1c(}8@v^(fK|Oo6otf`okTE^tnQBC6bH6=sUbIxQRxeO@cC%NIT~bO z{8=3;GF>eG3=$B%EqN5C+@y2FiFD)!YWo6O+8x;`|slEwn7&nMzV9 z6Y{WW(w?nb`{E2)Lig+F_!nqedfT%*6Z7)}UuG)<+{DiLq@-y2MnXGQ)9m>{4K){Z ze0pVNL7ykQ~7_0PGpD8?iMKD#8b^gmDBT3y&(fZj;>Dtb=;)~TXppV zWxvv|nn~~4&JpCB$D4VJzc)(G?CEaiMk7s*;vJ^TO~S`)1Huf}O2T2`xb0Q2L5da?5P{gwo{v{yh{KN&<8a3qqdOtzuyoV zl@3C#4db3ltoDDPhAxkE-*B51#qPi zWpI=+T4ERg;I-#tW?K)>i<`k1TpmWqdB5cdTHV2^25~>wm?uhNTVL*?NAq&58X$;G z4|aFkH~as~LBhuT`$l@QBwTKN?^*1f33C{^@IW({ZtLARlarH-Qc{@=&sDD;CVrc})h0AS9$iA5Via1>-Z?0RrAnP150wXg_y_B@EBJNp;9{4o~h> z^j$M(6_u6OODkGYLF!rJB*=Zv+~|qh)m3q61(6!VqUtmQZF6)b|Bc^{{%7+ddDoj# zr&?C}o5e-(5A!ehvAR7!AAcxY6h|K;VQd!x{7enQNAd8^`sRNVmoHcO-MNPf0}XF6 zfrD-wdpFP4^9AIB?)2d8Z^V;0Iz=l0T-GfateLiz#mun7P|G!E>jgOA_F#bhLCz2H z;xa;%@$CvlrM+jl9}d*XWavC2wCwDxfIJC)nj$6S4*RVxPS`mXITsxwS`^vW z0E=RzMdA3#f^>?77>cEMH#)|kmt9i@YLce7GH4F(q)V=P z`ePUwai9Z-!{(wF7n4}JzwS*hr_H(@UW@)b(}U`^{u}1zav7@kZ|Rj4ml!z7(VQM3 z*F}8$Cx5#i;@OoIUt8tjvr7|g6O-Z1&COFxsXw=0XYP>hT!Y>@o(o{~9&9pAF|ePW(}VoI&@R%cF`v zAPav+L;C^BU=olS&OBoZLqFDR=*WVno|qkh>%{4LS^B#dxtfCv^XEa z&;Hqis3zFjuPREOi1NWI4n_OQW{3TJXJx3e?o#F(j6n2Jh%y`vk?)LeSc_%C({g*b`LY7h6TZjc8Ww6{Slt*# z?ma*M;m3V3qHnrLtK8$OM^BAA0b zvf|bb@*iq|uhPtys)0lm$Oqi8Mdbbg3DK&>C^{VExK@e^1i*iY12d`Ze|J+S{0ACT zS5eQB@B3i0=JGyTuig*^9k3Rr?33hLCDeO=?5BJ_YoOw=4S)o_?^+aqtPPaZM;dzMkbSlMIf(ikq3Lj({D(?Rb;Nl5%2Sdeo0}_cr() zEfKYHT+1#g3^{BUqa|LwQiDHCvv1#=nc1iOY`eu8y(`lkI!QelO8ohF9tb=h)XBm& zr0U-%e0Z3fV7Ph*Oh(`7*2dC2em_Zjpare&wk)84JXWC~2s2gC%<)6ZA)LA89=!4ZhA3btlf+`d z2TmOrWU*Gc$B7(i000b`06{eQaj^*dDi})6u^JI)wve7uWkp5h)uKm)OaVUse9IB* zn3v4h_;}#2U&6oEwA=C9C5Tk|4J{vzrd~wnQa{iygE- ze{SQR|4B5hjeU6g#Owd4{Z*bka2b>XjBIR}kMN>bAl?Z7rRg%wfjqFeAd_)fPh?#q zO7a}x3GFP$C*XbE?v=NqlG55*>IkYh7u>DM{Q*38IkD`81+=K^MBjqauklmwKp+N) zuA<*9$jQ^eIPS|o&ELD9D3gE;8#V^}8m{qcLnB`FttAmMVP#HDRqusW1NQ;tfZ_>O zaYXFpxBk%F$CBM<%ZP}x#syz~n(ltt!OdmWrDy`$+IbghOH%6i zoGEIqrZsciP5#Ns%#sz$=J6&#M<7Pt1-&eHYaa27(Th>$hc*OWlB8twwoFo1^fo&b z{evK5rz$Tn^Mc4?QiXvDs9W)g(zkLI=9Rh4`3cYE1ryi9RmMZ>$KIZ>O|EdY!HCz_ z7sHy+t5H5P{_W}Y8J<{JqT~0o5k>Rl{%8wP>y9IS-lY7B6=}w(ZG@Am$8Lq`Z!r<9 z^o{&OlwLSHH#Z7?SD+O&KH>S= zk4?DE>s!0J;;mZn=83a=S94ayAm=<|e+yMk-r4 zw%Q?iW`f?8pp^);e~Csc#8;DLK(OIQfoY>7S^b}WoU!30qWRH9cNvi|fc#>{+lrh2R{p~Y1S z8)Xwe#MiRmz|5%_Yw1N`(mW39xv?0n{lVo zjG*z+rTSRwwgYoBA^iSrmGc3*vzgOOd)sj2yKffw9`lXn=4wZyOULMYL{9FqpEaHdRBk8R!oK}`r`}X{&uVS___Lj)z8BF)=+gV9R@~_ zaIzz_eDC(st^f~leBUUw)yW+Q5};kd1mQxFNHcp;+5!$wTfOsf)}mPDmGc-g<-bFV zfT65v#AjjQS-5G#g>jck%ozzIU>n>L_x*{g^OokIP+ zl{<%mAG=ImcMg8o-{OkWu&HG2C3yEPn+nuJZ3Z!Y|u&lep-YZxHGOZa4h}~Ls z`W|OVf8!#IydQOO*0M*{8p$37e#yL+NeDXGMsFo0-%kxQWMG;ma)YVlA$V#Q5@hFP zNBq{B--7UUgve*Bnctn?y|hQA%k|E$knmQyDLtf8xuP32Mih0BqY-Ji3=zu*O79=nvjItg*sOEW+1 zN3d5truhjhKJ?ZXYl>q83U#&fgdTy?A60U-0t5L;$-m=_hRkGFG$AEtRGz{>Jg!3jAe6#O|SU%~3O!?dv}lE2(C1Fh^@WRcrKd zvBXq}TNu$@Sw&Zp4AF-+__aHH7E^Po${vbnEWq zu8e^KpulJ$qQRfZ+V2cNLp(le`;{=LJ;-%cav#W0{v)qAW~jTI$vOUOA{73I`1;?{ z(Epw3!VM98mW!$Sk0B$$`9D+H|CPyVM_G(QGl2aG?@xbLe)m^DF<$;@^mFox;}sM^ zU$fGx{q>3?EMFF25ZrxVnvwl*9mA~u_~Xy}SvV&$%|vZSJb9>`!Gdg5ly4q@O2g)J zYDUjaE>#>3o403z$X^`t3@S|pe6{a&i>mm>*Tg&U_)~$Y&yDw{1o3Gr z-!%as?q$+ zBQZdQ<9>Q$Zd0vqLf?{MCRxM-vWpSvPSBZ1C|zY{s{$EbX>J_ynpcOlFA4oQwgw+6 zMEmsqZEq<`i5_QKw6gTg>F4ms2n9u5VXB@VTe=Dm=$d zXoPA06LV9BG$3&bP*|QeHZR?{`}(tdb37p`aX><@e5INY4ywFO=rX-}WsT}p^G%_D zU#*<BF3(Gmc8T8JKJlRNZGf4%U z6rBJLxB7)-l0i*Nk9`;Ei z(4<8Rkt7AR7w0W*TMaM9;^xN|l7p4znywwdOd zlYu^>D0bH5Qll7S*o1n6=s=T*Wk}2;1+^cp*rAX5ht0hykcPDozA|$it8y4>i6ccC zKL#d7lPbqgZu`EW?!s92=7;HbeY4pCW^IUYD!;LAMJ1G!#f@bsZC4`Ej^&AFEDGqW zuQ;W^CgAX<(#dphVr4K-13zS!*aY>ZnT`}CYkr)QcDOpcP!n({z2yopejWAk>rdGp z=!GtvXHSPA1@zW#B}fh`&Ax&I<$Z%b@&+e4y1YB_ZHEUz?@8ceW^wQ#e8V|Oai^^G zFj+$^8Ln2SlMF+tG+~f)4JLh1M(@7wUPAl32o(12wE4xi+;}j+tWYDvskFCM%4@7! zWPtkH;TjnxVX*R#^E5GTYjTkJ=>V&uW=qu3<1vGO3K(~Nh={iwtMk5KvFmL}pr1i7 zj<<+hh)x7~HX-Qm#OD=qeJV7%KdkZ64M3}HG6v60K`Ytt&4c7YrU zU{(r7g?r80x!ivT8!)BldZ?lJepE-3qplIJfHqqygSiU{Y>CoJt7Rbi1rFBKaYxsM z>fUckjN#(F0&&JUK~)ByVLc?Kr?{idmRMKKZ{C3w3XdMX5X|(~_GjgRw{2FuE;J+y1fs?JcRoNAHC8*V?Y=^x15WyaGC*k6h648*7&TS@d%&UP zrihNuMg}jxeDMQ6NQXLfWYN=gSVP&yURu&+1J?ZBo+=1g(}CJ2i0+>xyzjkpynFFH z-3aFwD#oOi~9%Mwbe&q>cx`+bWlKlAWW_UGU=jI61txPf%{=&j-)Y%zsC$X-vi-UQbtj za(sDYjA%-fdfNK+_5!+9`cWoVM~#MqcZh-P`BHN*cBXLC)p5-4hF2$!#6S1{UMmP# zAX3b*KMVLYvq^7G#$7T$TF3P8+2y8tKSlMN+hYueUAG|I!oorT`TT9vw^3HaM>V9# z4Wpe3vqRB|!BG=I0D|mK6pc-}QRlNQ4N>H*HHW_=?oBi;&m%xOe$cdYOzGw9eQMXO zcNr%5*sw2?6trnFgn_FmuE^Xfcy}8k$691o>7ng-Wj7q_Md@Plb*0|wZ;Pzg!yA99 zO6&)~NbfkOZ4>BfaQ6ee)P@sBHJxExb}QNHKM5Ure^%?nd0D5VSh{&OeaZOdc|FH* zzs2Vrt(HN;9~1mBWp_7@xR6jq;n!vHAG+>Ic+6KO<()5{=z`cP_V_!oFCLE&Okrz_ zXOLYZf)>K>+h1HqLTyAY=VN6(9G>IQ8E5u2PwW4zd|L%{+R{1mbY4pW!*O!zN1UNg zvuoB!3ZheQ=Fuhj#j%sp@8YFgHab9+Z_CW{Iyr1pOZYSpM#Il)M>3-gVn?SW;2Y$Ju3*i-Z0Y!`d&6ucMu@6gX<0TQjfqvNZc z-)`&H=vu%d9a#{n$SXL5NlM%Q@PF>S>ltWX4@KLKHzri#esNn4SGObMmp0CRfZ`)? z9%uf_+p%s1wTr%%}? zgCjL{{@+Pg9Gv{k2oS+etdB57X)Y1m;pPR98=<5adXR9|>Ihq1P+x2gV@)+H%tUuN zpyt?^xE}}DWa;0QJptuZQNPvJCehK+xs~Snsjr?chygO^cgzp)@$o@nD6+%x8nU%A zC6)jwtKvf3!=pegPjmEE&((Fs4Ie;{;l+-@&y%T|Ew}UKJM-ffS>jOUk#xLVzCF;B z5oXI@afDsFTN4j66|Yqv>Ksu5{)|nse3?UGM6gd|L%0vZN0-dMXzl>pNLACaZ z&E9#Se9qe+!#3B@mEn);K;Hgwa@gHZ0>3X45smVpl`^(zJHCR} zP7slCYWy+LSp>MIeSn}qc7J%hW1vG{Aof(RweIdk|)t5&FLkplx`b6UV|_MFJCl_VL^ISuqwBwKnG}jTpp9qIw;Ln zD$Gkf2W>isuqP!5Stu?5h`dh5eP}5S{F%g6w(R5OSXrNMT&ej}1`*~98A=U%!F@7s z^kKUsn?>AqRJn+GBx3s6DPkQ{UA6G8n))n3V7GNZss8==anQ0czS}R<=Pz}9YzyR- zJ>izY&W_s;JF}ZKI=Q->4ZF|6sWMCWudl5>inr2$;u8}COLqnVVhR5zz;TvYilp|m zPk81He`)kY$N0p)D5>5@%iQRR{*qUJJwJ}HD65_)aA>`*uC6xxV2!$(H<*#}G;CCc zYY-9SX>JYzIbLzj1l`*3ogDop(#kbAKNK*Z+=~K1q7kyXt$+KjP@ZBsZJUiU_FD!c zm-nGi`$})Tc7A(+z5kV!d&_(9$d7UIFX`gH8g_Q`a=W^-&A96Pw|%lug4Li!DX)l1 z{CVrE7oH89e|=mXdwHMSHe{fOJi9;~Gy%S61p8{WOw8LZU}BYALi_^Z@>A!BqOmLb zI9Yytl1K))=X*?`ekqd9RnpZ>?qZ_sb_~`w+q^ZZ_ii0}@89sBp(elQ?CfIQ`;ZB- z3Dd3+AZPT~Z~FH8%E8iaw2Tv=(75Ys_bgdI$<;B2_H?LnK8i#*OanP_-+Wh>_wkY1 zKR9BB0$p8QB=q#LeX34i+!kfX*qFd>)Wqt5-SfZS_T|)!D4(<@;!aC~LKFf*Dhi&R z8Dep-!m+#Z>gy&CwzBc8c0YCMxk>-8I=i06Q2Yd+kUl%O%})R$Ldtt=Dj(y$Eh?yT zNoJ-EkuUlXN_-I3crX8#QqZdh-;i4k1Ux}h)#i0F#Vx{Fp#~k^H?Gl{IdTs$s^ZD^ zNQxHhH_O;5oMdHXDj@atW`@`oCRR4>17KGze4AhpDk&WjS}a(|v)#c?P7{F|2W>S292E&f-d@P9 z^1`M4;KInGNS&YYE~xP_$Jlm7P!HSY<7S!d_%qZ$LQ}$Pe^i-Yq48gb1xy782;k=l ziP0~4IFj@glVw*DVs7JwPj=5^N`j8)o`$IeJ*P`RvA;nc*fV&XnB|`2ZA}7;J@g(x z&P9*Ml#kY>&OUuv#mtXZ`?U%zrptfapjPjHa44Qka$HwMOMFBA@zbG_jS5Ahq}8E6 zF^WJgGVeazo@u>c)fdmxr3z?_ldQ7o0_U1G!7k>@!&y4G$@*swXYEM4QyzzQg&G%%5KiH$#SdOe;$S8-!r9m|SQCZZA?})rWE-eXb~Z zt|&Z8-abJR)4tW5Quzw^pZcRSTYuTnc%}DT2IDc5SI9azfa1#=#Acd-pXN$T)}+3! z+{2(*=Or9X>+wAGMIO*5SGk)jPnCWWFLig)*LcQA^~Y5g@SrysR!hUjjGd_vvV&CHVlkV`YQnXUPuR?vHyU4r%$_K`Rmd^} z{2&4b-MYQsAiiL2L{hbMmKs`<9Dn_5{F1375cb8J$^|BAKzy*OpE7 z>9A0jXD`PoMfpGh=4wRqLZWLKxpK>g?pb!KiUvf)7I!Fbs~brX!~Pzl>z#$F(Fb&S zk6@Tjr7we+wv5AP-pJI!(xw~sMO!Wd0zclXkS!u~g$F+jA4g%4PvMBxz=s#9)=3ep z3?m_&nDm3ds2{=rHBa;7v2Toz&KYW@If|CHg(e=OUW!dl#B@&CaCED^jM}TN%GHrV zEl$uNV@^{*rq5s*Ieh{h(G_f2%Eu2Llv7N(!Mz}Qg(C&tDYLA#P&J z;rI8xSY${Wucg_^{w|NDNoKd!d#ar;_x^pJ)7cZAa`&sC2;7}vB9OiKOvJI2&RgOH5Wn$gJGf5r#g+g9k=OZPxXACAlYSa1aA(rCwd^DgAcpk+jkkbO58!h7DH68%3 z7*t{vZ%$*gdTsuMH2kTLn;XD7q-ny6qB(>Y+;`rkEP#T+a@R3SXq)q3wBJA^4bJm> zl=j2KM=b0PD_H8G$5r(~=*K8bi3`D?axM{Ea%JEHA++MxFApXjRuYIX8QV?H%ph4z zm32$;m0WgyTkD&qd(O7PI=X>dn)bItrj(uT?V{K{w)kH@hl`meed3cdU^|Q{1@T7q z?f5-K?_yNXg*=m_&2Bhb?3@9}591uCM(aFHVN_acr1mI> zNL95;x$jXR46$t<=K?nlELbUvYiiI%=pwS@-5fNj^dR}W|CS*oOMBC9_&0TY^C{c= zyPqNOkWY7Xms{5TVJ=6|veNT~R?71%FI~iWoUk`MhKlNglBV14G?2;9-^HmESQ)MTlaSUI`#bGuoBgcSBp1tu#S;9o znl+LBJZ(j3HdElwB3eIl;pTFtoQ5)T)M)C zl>76nd>1t@iPY(PxynK-D4-$yr;0i^T|+0Rrl zxNH2E{}?CFE@vIyu9n>FSgBx>_*LQbn3rTI_?XsooUWH(svBu7* z8xVxcY~IFAFU^JUha8q_o>9E}ryvrWi{yTA&MtJrUL7&!f^tGLtS zc^7j#6#-ZCbxz4GVIa^BtcYfF@zs$7)F zN`Sw3ibRW(76>q+!2cPfpB9a2h{+uuIk`F&Gitfknfic``*)ULSeE-Ie7mM@eL76+ zjbF(Lr6v!3*R+A#OaG-o;C9a~S2Ndm)boFUQ>}89K%uW0|9x)o8UO#q{{KH=*Yh%} zSGj-|2dM>>q*e;4e@v5H1^92!59i zS%Fsb#u#X{`H?m=`D^4ZcHu%xJN5_7O29uK<4F{T8^LgRWNg9~TNC&ldkOSKy&m3N z&mRV5Zx|C_Wp!dlI)ddP{x47JWoDnP zeGHD;Y_Uq^Hmh2+f|qN0V8~}HBoJx)L6$j9Eo5u{Y|aqi>><9;ap}M7OLrj%$06z+ zGtjTTFr7!9p%)(?Y{)*cZKuY8A~P#>Zk8+Y@DCOtNZ6f@UtM%T|qm9^G21tQ=C5kU9;k z8s#6SZf;WcBQJ5nVXS|U=k))eg4{2nMlrN-L8_73@THZsLaSLD2HKeKE{ita$22l* z>QT-vI$DS9u;4fOOaV3AwA zW-l_8p3iX769D{7Z&@YbO!4=WzHRJS!6`m%W6$p+ z1d|99YuIzE@`=QD)Iq0Aq{?V=JP=RvY}v4aH1xLR%ru68wCpCAD&h+vqVPLJmXm0Q z{X5AB5VK74v_Y`;(yKNvoQh^RF6eYy%zm++sp3b;Pe4IWj{=%nu(h*OGl`D;%qMXh zr9_kl#ZEY$l<4CAl@>)D>U>kcvVR&w5_q1f?p);i`qA%1cDVJ2XoWWutSr%qH{X^Y zHn9bjKUH~l2*-VLb}CC*p%~dV0Q#eQVr7j~{7GYE^C{B%t8RboF2+kE8=(4aZQz#_ z?<^K6p!a(>R|DU}hY-|af@V5#F91dr=m?0C`^qyscVB|?vFDa`qa7Jrxg{mIrTS%^ z|CE?0(!5Dq(Ocf)`kG%}{<<|YPwRtXGRnRNTKJQvl9^mpbuCZ6;k0mWoQ@9j#7kOxzEe71hzHn zpk{~b&tBZ#aLv%!ECaC`txObZg`^wqAt>`7br;Vyhs3S!8WtAfBBl7S6lp5sPJKP+ z4w;neuLGn|zrP~>3XG<1^-&cnDfe(7;0YC@L@$$Qa`&uabeNb}=~EXPdg_CdJwN;| z)pBi25(6h{@{+OmMd5%1TQ-xDfW1$~NkyUpi-pwszjqT-sdhxlxrQIR2UI-QA zbO!m?WYV6ej8Axt!-KGh)CS(UR}Yze!ew1GzIc_J?e!?}Rb53D#xP`> z5KxOcJX8;x={NEpM}Mj8j=DPJ;K;Mz$R&@N`+==jk}BVL9`+^?sRLOtroQyKu?MOkc~uqONDIuxNd z4w#_iI=^8sLk1;>!v$cFpnyY|NAUOlJ)SPZ0;eb`2CDJp%yP^z!&CF=K?h8vC-x$0 z1F+t99F2JF$Ng1imf($sM$=QU`c($9U(+ElqbSu~1UN#4y4T4>(p(NUAzxP{P-Aq$ zq!e>H`){37fHk`}a};sXF+COT=h{>P;yc=DA1>LAP}nY}?*Q$S&YuMz#oRA*tI!zP zZck_stAczlcZNyNMLL#c_b|!xrkTn%7wBarT`?l4B5(!-isFYJ(Znx=P>HY4>Fq4j zy{H$>spU+OTTHnMixOm;;av_Vrj2*O-o#h>5XU|`?B6H85gLq-!{wEG`7H};^tx&o zyf;4B{Tvl)yA7 zv46bU7=vSZZhz50s$#ZLem&b%-b8k@|9h2{`1{Qa7onfDY@YW+7>uJ=ze}FToZClk z3?D~GmJ|JSe0vlhuKhZgB*$?dO+X$ZBqyO>*?jal3{ctGAs=v5awg*d!;{ih?#7iO=>n{;?6IwFt+!4QJNQ}6Gaf` z`B`xruxSR(5f#Y#jJQONxIC70!3UixF8}qp^dOEV)_lVl%*KIroFTO&Kb#W~Ctk3CyiL|HAMuul=qeJd0{8-iSB5qXKg6u({p}%~ zEn*_a$#@oZNMiY3g#o%U^--fr*!|MtPnjlwCYr>mtPH0PTijv2yTovoK?cRyr-TEx zH&y>O6wX9ul2yqC;%s;EjPF@N=G{Y&WTIiA)z6cMXpjz9YF37LPe2CySC5A@#pPIt zM%9~(X+ z@X3Yq@{KEyIiH7iPSHKOVA!z1+xe#WuZh_0W5LZLO^H77?^!l~>-!6geaqTn_jAJ1 zbnd~dcbI2+@N2!klW3a>uA&CGXMXl8L9c2#_@0N})$lAgBml?z@ENyMtADVo)-4AI z$UpH8>OUDU^CWT_BXJa!H^659d2@LO#_=skUGYkxl*p5OPE1Dr-HHw9T|a2db&(Cx ze%`cCF1tKF5;W+T|`{%ui*T_S_jZZkXGD0kjM*X(j7R=1^nZ=>5 zbv*Hv>qla5KP*L+Be%sby1L|TA|wq&2H0Fciz#0ePR!;xo`*+q+Xq6}$ZX7H?<8apP1YB|6~Mi=w0ZVxCOXeSGiGV zZOvu&mLJJ=4CxJrKEDPoO37-Nasj+_q6OH3pAw*yyFDDVzBgcATK@!~E2@qfo!JPyN?gR}IlHe{OxCD21_ZbGb zlka|2_x*L>t9lew=k%FVGu?ad-o4h^-CdoK?RLl~7J%)8u7Q`lwWpyjm^mK&`vGSuGVJyO4c9lHY~dNUY+)qH{5%*Hq5G|XIi`oXfreteD0lO`cR~n z9`oj`^Aq6gUwahMtMH7Ew8EmXp_IuRaejx3^CE?j?Qkb(CA?gPV+lv7U{Zct*c_&?%U0P>Psvlcn7%Zd~(Nioi?pJ(CocHEzVvOQ2epe7(%{Y)%>_SHV^aWMS zo9`_^v(Yl`ldm}=TN6hgSGUeR{QT@JPt)S2!zv>(eEYr{co1aH;%T2_c7B1Yp|~*l z(&6s?%ClmljxUTuy{yrn59?|A%i6-Wpfl{_iRQ9{y=#rg4l?<=g7y50Prh7Yv_gp} z%@$w5>?DU^LNY*B`Q{vpap^BxsF$lqXUh5kaPjJF%XAJf0;}P0S-wh9G>ul!NDkzR z-79jUe$SE0{Pnk1>vq*Bb9_nsBF+&l?|e(w6sYulXC3PyH29UlM!J-{0Ut(c{_8Zg zV2equN|9R0$do5?zjEl_dEk}e@XS()_DLFItP<7PCN<#lJ|5Z+N-d1#`$mQiHL@N~ z1Nm=L!DBRC@1LFzWN-uPZ+!U1hetTL#UAIko0|F`M?0$Z z#ZMvba?2t2ySS~g%Z7Mvhg=FcpEjH$QN5U`%S0GKVDfZ-t5AE?w2RDD#l!Cr9zb`Z z7k31nTl6hez;xo`SOVCWxVB3QgM42gHKyBt@=EHDD_(btW$H)XGbhW_d}8WLPa(NW zkE%~g*?(HQ3(vSb0xv6VWxxZGbzZMZy$J+{Rd=aMYMaB$OI zPu)-hz}+=E`r9v{2vN_!>LTA=A9r}P3=Q{E9}ee!7{)2SMXkMR)l8d`ZVI`-#Buvs zyWD<0n$x3VocZa#l?&SmG<$P@he*GpAj_Fir$B=t?%+Wg89a!I(ZS}AQx3+O=I*_# zJN10uMW6#HG8> z%u!WNn;5xmgRdhszfoc{OAY%9wcQ;SXr|0Mgqw%`b?nK==UvZ4AJGaNZ{I7GxWb?JEBuc?L>?GJvpXdMQ zz2uruDuyuGv#3L-GiJ*&sV$HH-NuUPmA!gqN#zhkf~`R0u%vr^x<+%ot}KX0KVoiK zOol2%lu@qpJpzBHW;`3n77Y-M$S&7Gdn2tPl!Dgr-dhm@a`acH3>mX0Kz@PXzc1*( zd-6p(qqF2_X)<~%!A1tSw(Hn2(RfoftDb8T<~{i0_9yvu@!I$T_v*Jf8n=7)Dcxy1 zsVA%_CQ@;gb5Y19#jx$(;$OaSeaK>sIV5-Oa_{eKTcE!d&~8;uzYI?vjOmW>G{}b$ zUb{H-7AW9?9~b_0j5LFOEv(i4d1C`HYg}v5j$%h|_FGqO+a&ix;qA z%#b%&I`^m3B}ULv@7IRbM)Rd!gEAOu&L0zkipzDKK3K7s%nmL=_`0vx*76jBipyq* zx;L0#Ud;gxRN(lRi&U%OxYV?ouNSuobCg%yx0Pre2=KK1 zc^EP4xHutS+j`@l7Zn%gZG~Eq>yP)&6q-H=2?Dg;L%SR%;1XjtnLEg~WkQ-vy9$+OqAMSsCc zfgK48!?u8a3{4yDq*cw2%|`b&D(?1Ue+C%z2YTuxO9-HC9Ep@)xGY8FrGT9n^*L4ZY?k}D_!zwE)Q&v~+Eq_xn zE299`m2SC`>kUSGVgULxM01b7g^%pgHwt3xUu{K>Bah&WL1{%#Sf7W99#I!2F9{}d zhm5%}Rep4IS8W6yMD#g4(3)+zh3PU5Ad5LWsBVvM@*9Wtu(HZ#CZY`fiImGZ4@ciD zDavcEcmg{8ppE)4I<5JAyHeV>^?@BSx#x9=fL&-Wb{zTt;AI3;g`49(A9Px2%QpPw zK$@Ac57l=9@{z9N=~=N;cKEt7F%g`cO!D*R&p!^b>FMbOYV4EnoIfKYHkla!O}!rz z>n>L=O=PPJ@0D@7Y2M|Ag@ybM?byNA7yR^xyz$7{Sp&5Up}{Q}0KFmwnHedf|F-_r zX($8=x|&9VELWX)(3!c*L296qW6SXq%O(+?0yaZ3wzeguHoQm^LQnixEWf%KYA=p~ ze%3<{W+F6lzerncVTfMD!~iiNJQ$#daq>v4ek{KH?|CQji;G5NL2^HArxEn0)%`FT z#ulk4c<8t(?^Sw>zY?;8S8v?i5&5tF$a<}#+7Z>#OoV(rIsTM++atf|yX~KLKc$Xf z+?+Q2;Z~6(*0%Bv6GU)f-Eaiyu}lC{i+GUc6C-_T!uij;+uOi)L0z3*k8^|BhT<`u zk&`b4N#NUuPbt!zoH0)!E^ptxa~I#YrMnpAZHteM#i58(6ciF-6c8Y8)%eYoGBl(% zr;bUmLPO~gsBdLs!z4g_yTvmamx0k>-c15p7je3NL!X}h-)9uh?}yY@|7!ZgXJGg) zIM<^Y?egmte=t~qY)~}DJZ`l5ZZYz23@Q^pl#V>eQ2_LxsqO7%*y)W zMP|0JGnGrbX%yr|L;s1t$glP5yA%UoTzwcu0c_Op5t-|P)WX@4R@t~Shy?#-yqdcH zQ!Ao?wSp+{6q~#}%SUS-i{blU4NwydhjNRveOBC{$-MN{tp1}kfkuc}lN3lsE)yUt z87Wzt^xJFx;UDtrt$WeNs3wh!&DCvLQFx2dS;{wPlDEKvHjUtUe(-cK~wy^Ms=ByzB%B#+&Zx`cz z={29Y(dS2e{-(XWnR@U3URgym;%y-qG;aT}`-Bl)WhfyA^#ux1<%bC$IuNl_V8kWh`ko)6)MDVJ!&P3CRSex(_~2E=8noLcnfVC`*VR-|Mtd!K{iSK2SQ4eX4ckRzY{dO*m`^M_BLnQ z-ApK6mi+xr%(i`AT`|AF2b@_XrzXp!afe!0j_rAU^L(m&)%|XTnp5u^2qbYe`5F}T z&ZSXdV4+WN;4>iwGgE*{QVh`2B9T{&ekDn3@L-4j973CxTqeC^&2v5Rj@o zDg_7<{Gk8c-h+Ua7B}eN31?P1E^_U|wzXkKPSdxQU!>{TL*a8z$O{5}DUg?N`N!?B zIj!8v-@{Kr^Z_X7Ux0og$?8l*8F5M_nKbVo_C`KhEeU4%oq==|IY!$Moi)^xH6cg% zDaMTMjCN1%<9(bjD_tnPD=DbrTQrK ziwI;I6z1W<4-5<(bNB@cdKIO@!s14pe+P$uN=^OuX&o|gT|;^G;RF3ia^<-KV!m5! zS>Kf9j3sAU+KN_j@aVSCW7Hq3q_q+y>NiCoX5(YWqOkifj+ySNPyvsLyVLsn4ZwP8 zXl2Tr<4K=!wMev84($O9ymNjpW09!mE5+t++Bu zNjtm0=k^{4`b$aS2xFt<=Jz_d%jG*#ca3KiwCBV3yUacIzd9iJ7Ro&V@@T8Gh^=TO zj7d--#&amGtPImg?Vu+OS4A+Yk;h|ytE@ybbPnCWD=|eRp=-l?rR{-+=U2TRNFO|$ zAzjuLP0D%u)6D#+wqxGMhQBPsYZ}+B~-ZZ2x?Z;9np`5U~#`%jrMu#24w*zK#uO`)KIEE_{5u*-O}J6pp#BOmG7+p|bYNoH2;LqG87gb8qo@7^OsQVpgY~>JXcq5PuqTox z4rlHmoZ{+u1%-uYz2v4KP_agKG;*D*c^(4~N1qfCME#1-opq(8$j!*q6}ZwkMKx7-( zzI1Z%>;QTZJDlxt)JJSH)jO$EOfaKi!V4u}Av@*xYGJ`IFp*~!9vVj-QgCv8;WL3h zxg)KTYX>Q~GG;`e)!UBJrAAb=BzKHYPWH$vDQ$FxJ+VWsY++Bxk;#De6y~a%Yx!p^ zVKY>UWaL2R!xxmW3-M1`V-bvUt9Kwxq&La{PkYgYjL4mnJDPf<1sXSX6#EA+n4>2cq?!UaI+5+#=tOvh{J;3W3V}ou<)r4J8@o3x{!YeS9@dC|J zyABeuZ@>3toue6;`r>a&IaQRQs;q47Jl>ypR<}O}uJ&L_nKDQLsqn6o4n3$VVT}Ml zNl7`|=*c$e@T)I?H3^H7GCuPs9*%M@{?y{)kd?Ld_h-+ZagUA;#)OIIgFw9BZ`k+w z7{r~Q@A`)bo-{gcKe4)?pW4x?c)oi)Wic3U4TXQfgDEQNn z&(;IOrGE##9o2&gv3NVB7(|Wgd8Ypepn@XAf{J)fdyIX+x0sKJeNKc~Ckn`jJV+!N zG(O!m0gXsKYoAKYljQ0jjpy#j^X!Cs|M&R5a4+1!2)>)xW z87ib39ql*(feM{RYrlLU%dH17u_mXd_g8nFC(QkDx3zw1!UYPdrag~Qzw0}kBM=~Y zI*DXW^cKNgGo720u**DQKa^{QYVchU#mFU1qxbalPvLeu#>__fPAd(By%=~w-mmu> zyE|%e%21}(jlY#O3AM(xX% z^jS1pK4WZ-w%8niCcHM4epL$ijJ%o}yeEWLm6ny6BUeh_kZkjSrGxvQb#>>X_e=1I zv`@Uw3!zvKMnpBvQ%u{-vPdF@z^dB|!yb+^bq_I<+A&!Xcl-hjZjUw62lj|WJp9Ux z0TD}2`x%pK_g5M9%hW6;^I$TA+K7I>S^v^9H zC3SUmWzKyqYK79PXQ}iySi^7&@(?;sI43>Wg39G(t#i;5h?$>#Szwi;2Y>F&SYM^~ zhwb05O@OBjE4Y9x3zDDzW9wU6TLHawqWw}jQA02$7!`G6arJp3QN6meZtnhTc9Iu5 zH?u!*2AZG0E4}hpW!>1ncnzB|9j>dtl+3s%6@KKTR|Y*)IG`BRkuOyS-rin}w!*2I ziwnnSk^H28pH64j*){d+dEq}wnQyd5GLk)*;T#Ao==dJ(QM+|RGVdSgpZtPqI5^-3 zv4634SDI-p)N7XJhvg~;ExF78n8Crc+W4>aTWQ} z^^YO!A2cXI3J9iW3!rBtNYQ{Y#@CcP6R91rCvy_~(*wd}u~h$uiU6?xS4PO!>LU7& zVjwIG$&?Mm&u5w3TEPjRwz%iJx_=ER(qb=|#c}d@(~0$$4lGe^Bo&V34HJQ^H1Ug? z&og&SfhXI~+kh|DdoS@njCF5(kFpktdgYVq`i(xH`;qm_y`EZAbAV+l;-k1M6mpq| zA^H3FzjpvE&W7(Mu()66t`>8yVd&(~FPe=8=p*GORd_k+;Zlw?iEVT=paA#-xIML1 z9C(o6Ts&694hsu|9!R^Lv^weg)N7tB-OSlS5869;pObN4?zJA^(c{g12m)zo8z0p_ z>`zq~nhH0d1>sBGcDUXz(EG>IUc2|fMwk8iT!H)MM_>dFlfI)Y zHvzH%lJzVy%)nJQocQQ6+9l) z15&V!7Y&wWR`-50Qit_YeC_o!TguaqYxs|=|5{6b)Ok0;j) z_m7Xv@X@xLcf6n9%FF*QFe}ANyTJji?$R!RK_VNbpdjY7pwyGw>_hmP$wTh(181Jr zM{W7_ZW~pSLYIFM0RhUg!S1$ z=os3H(SfzFmJOkPdgOXY)@qWFmPR3Qdhi1@5)EBZqQ94(yA)UsAO@P{bz*(V=dN*5 z;b727u&(^QFFBU4zfQH&zma1#`xK&rzAc^^UZVJ;zw7Q{+&p^~@hM_>pK9(>&hSBI z29PeeflT%&`j1+5^NO;FR~xLax40Y+Za8|Tvk|RtDC`^^ounF@vN5`59`4H+sm1QL z=-l8Dhp2od%ARo&9;~7-9FH8S5TUS|G5u-xdAB73KcS62N50w*{^0{k@yU=4C;?R+S1an4kjZ++uB@lG*L*KnI(8rL zzE}0Scv}W>%ZT~-P3b-*l zW)q@PgWfs+X(ty`5>1tM{mUBA`kreW55IZXlZl_m&$aa_qXv;?=^(!7v@{{%D>DkR z=YwWeq4=6lXQVCP)8%z(b<*dX6;!24%XZq7^tlD4t?-z9_#&;M`cWUc1(?$JzPOp1 z*(l0XzAaJ=x!dpcA&ga!HGb%GbOhX)_$Rg+i9dh#ZK)H^gXeQgGcqw@QF%Wp&_#ln zso2O!mfUI~R$MLfQkl)(om=KvR#EMl7!3W%Q>7a9vAIiG>)_FoWm?_V`#weLoQj_^ zwOrQOMVB(?e_JF@(ybH?u)eUmlWLX@@z4zN2zCnpqLOhNN+8%jSNccMf&XyyS;S8F zZ9RtO%lzHTIn=%^Fb58)*-(7;S}e?IOzl(J$_xMVTV@hgOw@YV-}D`yliw$LRX9;t ziL9evpF9NVL#-3AA;Wb!vh5>-okJc~6OZ;LbQ;+xPzQg>i_uQLkn}CThUzxD=EOv| zGo~6x7A&MaFy7E(o&e|4ChuaH9fV>PSCvDl5@x2u6=1J6`*=6B^yw3>Z8*y{4$OWP z%NDwv^`kz$0;9-SQi>3HS*%Ub{Y3#sA+ofuTOl9{x*L9!2BJ?PFrm7+yO2n%wjXTx zQ{ZD1FY+U_AJU)F=#fOE|Geq(|h!5ol0Z(Ob#N=uYntd1M_e zm3{^%F8G*m5Y+TKe;lK$8KFm7Q;A)Q{Ta$TSpDixu;Nm%(9KLi)kAQ1JQ*T(`!HZtJ969pesC-`1y%i zqqs%;OZHuh0zV}1SBCHdp0ZC$lUf9Z8X#u@zS8}{jyHp6OJLSrVz4*}XW|FRY%R0? z`4x-EM~&w#A9Ra$IJgK5gf4g`j;#%T;)@r(`-yMiyEs_mu#KkM{+-KQH>sq#^i(A@ zjYbS4+JdL($!>qmqMpC$&AY1PpTqf!I%l=fP0%jy7Eo2kb;C{*=*xMJjj6IFcU1h&6wLmVWL+Kc*nQQ^^Lql1t);>eqD_<%YEpZfoITJYxaTm-6yt4fjiFlu69HT{$@3WE6%T^Ef!b~mUt?io z0m%|@;s+qb{BZ0g~$YII{F9|BzZXC;M#dvIn(zY!={OsOq2gD)o z-ftE(>&GBJL-YecRksqK&E31(@=kw9qYF@)s${z#gP z$RzrHuy->Kr4X?+`4-iP*m zo@RCMNYnCFr{(VMreYD5T6!d_fS|_Q$^mXW9OOy1-4q9UcD_+r&0_#D&l=_?*=7rP z7^r?A$m--Bxeus|I>ozfz2pg#b!UA9z9Bp{%EM*W~Bl!28(d0wrz(AsZ^Z;3S__9wDK$s8t+^ zJh-m3E?iUcisWM6vHH8iLY7j8iyNMH{$H{0w^l(T!`W+-h*ymg1l&=-)7N*OPN0Oj zQ3|RVMmp~V3xIy7YrTOYtqfqi&P`(gHSo*or^&mR3U9M^L9WO1HZd=EH3zm-Yj(im zY4m0yoeXNhC0bo6B{?6W!J?L)KDS+I*%%b@#XDsHPjW>UYDo4SecyxSb+6kE{YHV* z8VTkI4y2x<4r28{j|5%VUCLT%tN~mSCjld*i8xvV8u-Ov*bHi_R_%mTiL|y};IkK! zs09ce%+R*vlxax*Nz32vk^2P89cTm%c@8Ggx?Uu)a*F-rRg!aYnk&+)H+iQ>4HvnT zt3X%27Q2v0Y3bFQNK&T^~ek8L0=EhBXiP?-u;WM z+5JD53TfvE9qBRN=Yt&wG(_1NW8+DG@Uge$IUx!d(2EZg;a-7A3k{7*+P$aX{* z0(zWJ7qBfq+g%#9TpRM5HYH|BdHmnineb9T3j4ZB^Y%i`B3SZb8rHGzakoK@f5$w0 zkXl*QwTgHosKy6r4&A)V+)X;~YlA5<(63*Dhnn?r&NJim3)lNy&0D;aZqHq_@lDkS z4cndYdVt3_pk?5Bs(NnPXjO=G2>*MkN%wTT9ooxmgADhJw3)|%?vUpo_LSp_=wrq^ z4N3=fRJCxz2bcky%XPL1C-nWS3mjWr;#)Wr`D{ll^Gw0-53^t^J4mtfVvx2Py;QHv zjGyXk2*Sh6%8jng_uY)5ACTt^C>g@&VWYll zdVmk0Uw4;&7wQDZom%?SC`{SzyX~5|e6!t_(AV;i?vrEwnty_j`fI34nM|zsgtJMj zJ%vpSX^7&J=VVXzsoxP0Q|}13lYEdeVdH=|2->aiJ5H3R-p5N2Vbhs0C$Y)o$D@OI z%PH#p3Fu**m65-G#ao6y*)f!G*XtBGpg^LOuhP0=He zFD#Qe68xCge}h4a=-f>2w<`}l zFHq33)Ln5+7lm7o)9ZmZ9;z)6Y6a??CGE&_BB5ug z`0qfvN>$p+!EN0+T(gRdUWcTUN6a^M2XhP`JPWwQobp3Fi9mq(CX1h=FVXbE9bIi#o#66ETL5DBLDy5A&eQxt9c!3P8zUV13 zk8LC7btY!_%icFmoz?Ysv{-%u(&kb`SOYHyvPXX`tBsOwU;i*;DkKoO(|DhEP7h5r zb)un0>tnxA_1y=7sQLfx4;V6i(9bsujLKK-pgjGHjdsTd@UZTBlaz{cV528t-9tjO zIGFQv74tZy374MejHl#ARw3l2PC_eK8IY6?bh_Ev{_?V?UuyBeZeUv%>@4%yyR7vb z?KCMT^P}*)Ui`dL?`L0bxK=sLE#%)#JvjRs^a{Bb;C9fujV0(9V}5HpZFOFai`RXS z@B1p{gua;ozz72~<4-Tx;P{vG%wq-9Upr{)5FQASfwP4#v3Fs6jJFe&kx6~fW7TGS zI1k&yB^!+6t!8QR1bXz7i#`Qa5gx`a)?vCc zVYd%rL=Vyy5Spg@ARO|d|MJW?3pT*(Z2G!R&W*pUG+6hvO8Gq!Ln&%7?*aeQV6ALNL5O@f2+DS(1-uKcrCi_LW(BRTADVzEpD_v!k^38VOfo2yxr|?RG4BX?jBMO))}?ADJ^Xwqxcn zqPXMat0$LxwCm&Z>ecS*ygc^&yj%TLbTd#nt-Vv=baF9+!0ed}=bhip!cAbXZfTie z9b5ZMm^QQ+v6zyJi5@iNfJRJ=^_v$(r}=s@Ej+oLjy;8t!a*WoH!A6@myKSzfmCFc z!#t=0A-GRQp_X1+k)X7FD{M4l6*QGGPy&G%ZCBP|ZmK^rD>$sH^vqN z2w!b%MuBj5;{63lEAr{#)i-kaK$Md1mxIq|ZEkz3)M~Pwki^023H6Z1Bb?+YO6Z<+ zN*ZRR-V@N+EKX%n5h}749FWsosW+6y2LYM!x)pvz)|f!_CC*rWJr346#9|;tWvU>& z$QV#7RoqaS&kes;QKx&RH`tzvEL?3B4Qm6ct$DT8DF3Yc(s+N+ z4jMYW^(a#ebUQLwo@9Frin`rs?i5tD{bh9CM}>qlgRZb{hAlm06n$BLN7B!)x?ZrE zUnjZpf!vTOD3PNp`Ifz76L^XPx{9b{=HkK~PueLsyLC}(v409^+`hF-^bi8B=>k*1 zL9^-gDjYywi5bD)7lCju8E=!itF@@?2<0(ZBNkvckfd}xw6m9z*Q-WZ>ODB6UQ;o4 zJeK5LyW49ui2_nqHO_l-Znal0W4TetN9$D^^+#tjR&|`EZK`r-zz9|p#}4o7>SvB1 zFBx!Cjlyl4$lymNN_hU_E=1;UcelZXPS6#YB*$ZtXLdC1eDHyVXbkMAg}+fw=rs4) z5ddDh6I_i>B|ww1;2OCAGGeXThu`q3<7a-puZv+7p}fLs4c@NX`{4>Q1Lw&bZ;>M! zL#^B)tVI)^{joi}qL(=CgvX(=FY-lFWoav9-bPR6P}zSX%xR;@r^)i$p%lI<_hL^` z;cmiY`n~P&&pcEKC+MJ}uV2k~5m@qoX3k*y`;lsuT#f@t77~dL4q~sG%euxmdD0AD zc4DvEeIh}+41p-Z!~hoTn<4yoO?J| z2L@rIK`g7m8yWxx=nvJQ(v+vV5q+LHs_nx)j?QyMIAcpQIwgI!W_$_Mp>n-xXr>94h z#^WW962+B*W=>501)IcnYD{P_hQU{1+*YNPt!nk5v@zcR5hMyV_^{AWMy-9W_R_s~ zy*FljeEcJ_zKJ0LhlpPMwG(8(;A^K8urd1`OS!wdDNq&0z5qI;joR3aoi4pIYka1WekEG9_Ms7Cr;enmfSYsM!WsL0o`F04Gl40^_X`@k}(?~V2i zQHas&rijVFFrKedCSS}|{yttN>KSop(%BaO%e4V+*(~)>f?)$om!*->A>SJ_5=38J z?jbPUwkyW$zy~$oZdQko)&aW>=RSS<6hIuvta8I80^x!-Lus9kPcA5N(8pPKg-~c{ zsN@l!-&3fwdJU;7-VOQIz|AQzm^&PpIw%y!kjNk>vk}wE$dCLR^G6s;fzVmqM?4v& zlHY6NW&`qGK?|*A(A#~0A~&STy8g6U{qYJrujRA0&7_Z@t21)!)Y$gapLV+DZd1P}*kbFt$=MHnW!gXST+O zB7>B^uM0)15~W`YyQKz1KAampc)xv1g`8Ypyb06>&TS3D6bGqm#tw}X@{uG(#L$GW zU-M5Y#QcZNt5;E_0iaU>=}b9Kz{5lF>W<5#Wj6nD{0#{eAtMw^>f{3S#-YbSkV1bc zX45hoVMeZ=ffA1A5`;rc9Ob@cto&F^ug4if$Qkp5ocj+yp~;^=krgki-+$8^-Psyr zgK$gic@BO;Q(PhLWCuzwk+?feKTvZeE^G3Qp6vZaZujLttJWi8r?8+Mkg2(RAf!ll z{Um)t|ECeoK+*fF6t*o9KBSU{gU-$bis=m=IeFV^>V&hgNODkxB`mB$2SKI5NXE>R z4XZ9>8|^K6r`KP+r($Z?w)u;fe^RaS83TMI(*EIc1_4@4RaY+@O5IJ|*7S)KdZ}F~ zgE4%qZNma@E{~@E{N7vzz%J+pWirg(p4o2%Uh~>K`KbVrAbQ<3^MD2&YyU_lS+S23?^iw)$0t1Zut0tFfC zuaaCry8784S@lA$-wVL~FH1`!I||+X>;4aME zLoP!qgpV$QBBptd0O{{srI8e~P6Fk%`E$5Tx4r{Qr#izWZ2y0RN7#FM&y_^q!Yl`|$ zi==sVQFWvZ2){_r=jg?rp)o6tmb@tUlwMWIiDE1CTU&57c6gClts7X4PC-wf0CX}+ z;-n@kmw6zB@^n4SZPp37NuCZCC}?KI=KsD}l<3emN%B?Ad1lf^ui&5R0bz71eM3fK zd+75m=md`HyRlPiM+BL_E4&YwuU#iaTm&lk2XVN>X(cL+V5hx{y-TYM=xB@bulY7! zr8&UUV%mr+a|^Lr>5-IayBE-^02)4j>Y@h?DV;xp7#p5Hp5Iq3zwae*9A~Izc(L20 zQz&D8skD6xQ*l%h;h#tZD+`!=;D2b97^iTYj(LkeDF#1~hJ7~Os=xG>N%ti+h?zT( zoyD6)?=*<}=!|>zdyxMKZFeBFl@E3G1tF|OGsKKSo}EOiN3noY`t!Tn4}c1`D^#6W z?C-&V=H?wn1l6eJR>lF#a;<+Pn3QLStb==G7XQ}(vWvHCxBeyco&cj*={lZ1eDh(m z*eQV2^thl^^`r0%ymURbz|FC3IA}9WgmS@_Ym#SV_9Tx-WN_u3*`t$j%F1=?r=6kh z^Hk}@U0Oj4-%wJ?seC0@wysmmnB|v+E8A=>7(aSBIBJ;-W%}X&olfw_GaRy+t>xAz-sk%e~L#p6akq3lZI?2 zWwhr%pld!b_8-PshqtTch|Ogr$?NnzU|o%S{BlGGoMM5pjdNozQEwP_1_ZcgD}LSA zd=LCxIIyyPYlk>d@5tu=LO=2TEidk$#~X5|dwcx0fk{^&J}y?PK*`mknJaP3SFM{l z?RvGMR`=mYZa|DFwtAWFIn^=QE?GvdN%hS_sDDD+Adi9~iLpZPh(9=S>K#I%6hA0) zeHH5?0PAO_c1s8)QK zPP!|=Ci`uu72c@K-DE6Z#Bv01DG7i-XY`dN71V^-bNadKoOMWcrY+ot4H+4xe(Tap zRO|i8`ZU&Q0-4Ji10UvP3-M>Yqrz1KKWYO5mG~Y0FlV^+Mg_0vqjZpnmCF~BLg_Z_ zu$3*#+@Y=1roNoTTx7=Y|6OY(+vFC3jv*O?_LnXog|d|<1i(}uv-qBwP+^Zp7NbD6 zK`g7rV&9*XMd%m#ZF4qsI;E}RO2$~-^V32Qc$G3Us-;}3MtnAIBwhHWi5Md*CJ5M2 z*d%uhKn=H+ydhg^G^2U~Qjd$%l9!jMj1SgXyL~cLZe~XNy~|3lgWu_;+D~*I=Kw0z zFDY1g=2J5{ZD0|Jn)LnGf$hE)bEtLsP4CX{Om6QJsxbqxw^V*t{O906 zn8#D1tnZWmb^+uY+5A^k1^#c{^}LcoHDBvD4UQZ}v`!Z})&JY6ga2+97@*iD=pIXX z&Q3y~A7aLy%s0RoZoZO%7i2yw2of;-5^tBU#lkQTN@)KX{rJ`X>NN95#ftmVZ~B&| zgXr55oSSptt}Bt+wie`edg0o2E%0fe1;<}re|&##Y&iq(TP0)y^eq#wrGxiS4V0&- zoFCa$0fx4%y@b9X^6|o_yxsXf`sL!_38$({R=-JV>Tl^1R`wi&h2@e9ev0XAER#Oo z!_d7B06eCKVNwdQL1E9pBN4z+RsSRloW(0aBrZk-oKzIWEeexeZcvy%Np_;gkr_NE zn-r;IU=`N*l6eU8%`S!Ft?6-DQIi9hH|KZQeC?{VlFBNoI8)BCuQ=Ws+L)ks|1KA0 zW+BYyWFGpqLH74v>j(%@-@39X##pFQZjq<0CL)iK+2Cjd4yn~4AHv; z8Jno=V{30rXx*qkxwA%DGl81A3Agh&id(s&JXNod-JJe2&hJ#NIKqjNjh>f3>Tji} zM&L$^iyW8}UW4Rp!J1vD>Q<{Y_Exl_E`45ov_4X5;)8k1$^L&xO~!oT{;*ymy9rpJ1gwA^ME>#UEXbC}d0oDb9kZtIV z$hIBj_1@j@LKw|Wdd{6n!m}S1i*018J7@v}ZO17A(#IL{;1NXVUGNRK6ny&h=&?{s zer+6-Wbvk;kRGKU=)CdwkTGb)r{XGDw&agx;GU4a0NcTOk$W`$F24qb3I}&;KH6Qg z2zp;{G_^bfEz3>#f=VHuA`}1ad?HHSocR?6BaEDD^yeb8fNq<+ujC4hu+CblvJsm7 zjJQFb$hlF@z$l$}LjCz&<}K6E6CT+&;&{8eU^u!tRQ|!v5~&=g4~R^ww|^eZ6sJ-ruP0 zhrB^z`@#o1ACnqA@k{y?PIE|k#W>_Om>9wsi*{Jf`MZbA)z~sz0Hq=1_MDE&dnPML*?@ z_E)Jk5+{g0|IL@}-{W3JC`&b}eY)gg1^>BD)YPZ~hF3Ere)WIm92hxxuvj~!*?XGlVTrO6w?E{ zCGBRf!%gRrL2S2=ij0<*NTVZm!dIGyR3~0ZokPV6Ml*|z!z?Dnic$iX29DJh_4W0a;IHdhum8noIAM(-4b=-=TGNhdM_>f0w zy`{z9-)E>t)7}qe_7x|@(?$4eJtJ)p#58z*e!uS0HoL>0O<{4-EA>1H20^-jf|t+e zNAH8BoZW~=YJ1s_ToH2qF(8!p*;kYvMCfUVt_n24Gj3SwO&iPp5M`fG*_W*2^{Y(r zJEbkQovcjrE#A%zTW(NT)##i0eQjTL6xa6&Q>G9Qd(In-fTM(R+fc$hw|xlT%OC+6 zWThe6AGuv2gM7Ytj_BeYMT>p?HvL;C2xEs*P7fk0DlXBdFy`0IG7ww;p3dFxxH4M_ zWtm(VXSVTK9THaAk9d5Mej!9>6*L&}bmvp@m&iFzx|cd{3%W1xRY&rXogY2n>Drz| z224@UGZ?GJPGQ*(`e*Jc7{+25mdJSC^|cyvlp@+&`mjymBI!9~O$T6fV!G#`@`Ps4 zhB4tK{3@EW@TQysK0hNk9@5;8eAPcYG@5eOALR*KO3(WNLn}bYXWI3aGQ<3_ieNS+ zznN`m$isxayQFaQ<;O@2EfNTjrhy@<6dj|#B7fUw<&@>Lmm4J0-HT_^o$}q<^rxmN z!_E(6@X~*2aN#FaottSbU=kw&SN*^p-wP_V9}vS-90Cy1=AP_vD9=b{d~t~{i_KG$ zI+xOOmjw?Wjs1cIyPE{08?UklPllaP457A=_uf1n2lNO8b@*j3VTdRBk`OX$8(9j- z70cf)TpBbvGPj>UvHkY!wze(T@dDy@Bd578_l~}>;zE6x`u;P*FAQjJU}0Qpqa0XGKb`NJjCbwR6*Fi>DcZ4$UFJgA%TDsB?!7=UNmVU{ARM zK>Sk($D;ESmT$foab$)!1r-67T-3zG-LC5L$K9k|1E$q8gBG%DM$olmJmgxyxH6ZW zmS4eYK$HTv{2=x={QeB(4pYa%$_j6_N>f}3d06r5SdUA@X7m9?_;3hfI2T7Q@H0`H zuaFE%`llm2r1XJg5LBNYS!?Nv-CQz(3jgm0&ub}j1=ij|#p)>&pX`(pd}5m)9Opkg zulR*H*w<_AHj>_%u_$wy+K_GUwY`8G1_rU5LpJyB3elCZY~`sL!iexT?I1rsL`!dD zxS_KLaLsg(I|L=Wg(DBh68%OZ-B5wl`?q=jLB6Oc|6?O8)Boc*)lrX zS?K@mol%LAkB3K?M~IIP2lD^}=8|`|bg{CwVzls;&~fo}wqjIpvvanxc4Oq{=I7?+ zxs7>5SNnymin^YfjJ&o4FXPP(C0$i{2^Sk1J4YI|FcvI`*`H+(Ep^L^c zhPV6Q1*3o!B>><8A*_V4c^gXhL!!1cPh;J(MeWo@iWu>uwEl<^{)9iVbS|tZbZ{PG zVLF#=f|syZ5QXo zitVu0jK~mk)r={t@=oeoR<_g5Ub3N%UyH)#ko zY6v%(4mU%Do6|)6E1w50A#U_?(Wt8BT<_j6Z7b8*5V%CP~f8zFUi)#68z=r>4fg^Vn@VeQcDV^CxC`{Si(|5ahurT3)xlF$vVR-l#_Rwf%}dwi zO7|P14Q;M*H$ek;38=do6r+k8jr`wJ=wE-q2*UK$Cdod8fd7;EU$ul_x~0h>kR|zt z6Xt>UIctn*BWWjtqNHi-*(DU|<3B#=rax^gNlE`}LB}E5Rg5j!`ck{HQ%BO=hm=Ut z3jV42-c84^C>g`tqutCP?WQ%yJZCqShF>ych-qsylD1LYNP($+NJxKL+o=0bfB$le z5>Up_57A{zix0Eu4vmCnnA(L^#{MAT&AtEWKGGPwnNQPne|^gs7<-u{)G5dgx-|9bJii@&b?j~C~EiDK_#{XW3g&v{dn zcMgfczIBqzlJH`@m{Snr#UE=oGTkdh6&(s{r;IrY610`s3jRS9#;A-|pI+Re{R@(a z6t_OMA`B}2({P86hwnTb{f|6+M5lF^1(QelxODg>^mO$Myqt`ZJ?HAf&89t?|3J6Sz}j3Vjn4ed2ICMiEonahqRK^%)2NbYx;lY|3Z#}+ha_|AV=Qq@qZwvgO^SggQjXuwUd8jlo-V*)I*;7KMeo? z9iK>4{=P@Fw7Dj=1t+z+^mHZu?}))rCk52T1u%+D1OQq9u=;^u3?nDan~>po@p|CJ zt&+9u7fJ<_Q|~s&`C~*662rbIDN7g*z4-O%gpsL-!cy6egUfn?=7;p=yz4qSF6Om| z3upmA2yX=MFB-QYrQi8-L%eKX6M97z3gX9<*tn8t_}N(M?pm&8E!NagV-dkVa zk+T)h=?t-L(uEDYSkHJj@`4or7(1{qmkg_bl{`TH6!`OrZa7{*g@Q%pp1cNyHT0gE zL6X2Ag`k$MUjIG4NnO1;DmA@27PWiwYNxt-_vG~`^~RIb^lF`k1)OGd%@(Ni^y;nW z&H@eU!k75fjHvV`r_?5EJ)uc~;5tvU6oEm3o37L-^d>#@7KHSmb%I(RW?FjIM!I@N z`qnd4`bJZMDj2Gc+6<+hUXtDn+(|DfaLL2W%)ojEp=WgFIY%9_eioQlTw3ScR|zSr z-bL0qpExZEE2r6{rLi`ZK8Y%IC@pnPFLjtpVl6E#F0I~8E#)Yy=G-mim}|mNIZ8`8 zqf6QQOLs5Z*!!EfN=qv+y}$}NkZt?O>FWIlMWs7U>~n2Zebo?H8>Gf_0Uj0?u8Ak6v=mm#iR@i zg$0SsdP>-UC|gcgk_;P{C%HBehM;W6RZHcd%+*aQqnwj~AygD3S*TWY8S>s@a#vOE z&PdQyR>?`2!gS?9s=dRQud8iekuYJ=m6AXr#{Tu)7iD(d!~|pFf*O70sH%Jl69?X@ zDT@kB3rtsu2^OkclT#MuwHW3bDG4zc<~KY_^kS5@v-7@)vX)?4u(5SvM)fc(L5zSc zQP+Zltrjz?3Jig@po_|+f~{6x_HS35Y+ch9Wwl-UmKXswl^rlVv>gNsrz}V?%(eeA zkFNSRbM~slFUG1>lhelKg0)nZ_El3*Syl)l{z`r`+=3~4 zjO6!knBO&FExBQiQN&;7#{Xt+=wQ#){dZJ`mX#7c`j#3Mm{FD2*6KTy3vL=(LNHMi zi3nzXO3}PUblZp!ki!DV!&tjA5^gc|WaK3<{z`e5z}~}{FlO9Em!NG7%ZMM-j`{jd z`$m8X2VSsn@aee~tCS5{;3_(Hum^ML9LV`92CUE(S`&()sy09<$^H zpDF&XXm7R$`F#SWM0Mqt1qu4b{rL$=$_{tJ)Rh(4^0bXPO02&qI}{{h10AGvn2R$E z^CrUvd@+#%?+st~TTBIXm>K%rC+z{uG;M(y5M!7oTX%{(xlAveJ1J(avKkP@X9^=1 zyCKLBe8mt5m=ZAWDkh9;Vct;WGHeByQDWb`;vUEgJ*6RJ7qDUhKH+0rJTJjrTiZSX z<2~#Z@oKOFEevKp7wCVbI$tlcoh_;k0iyE?{p z4wVu`821z0oF@i4%rJm?{!Pou{q5)Me+xk(qkI!2E3*BKl=E*U)b5m zj_)=0c?~7;EnDw8o_hSUvFa_*9axhac_cVt!7`mgIsXUmRSpve7QlxAiv2)skKrQ> zEOd>zDYc1|KeXy9v*G8gr(tF|wPw0PqP2jd62l_XE@(uFz2Ox8z}rRQQ_G*re(W%O8Zrmv24YqDU0` zCj!R>d;maEDCGV7*Bc^Y;*!!baxWE?Rn;~BS%?waRV{@}>>1&+pd)EMwJ|zlK4kpJy{h!oA@NDw-JM*;! z+z!|?Y#{mZV3Xtk0b*3aggei&cqTX#ivX9IwLz%CBtg~Nar_>Z8>C$#WL)ilKq1up2M0dV16E#HSRVm ztDZF*))u))uP!msT_eRqt1W0stSFZYc-=o>M=^_(tB%@Htt`U$9zX}TKh{zNCwOcF zCwsqgi^ebDu)##p_B}F#=Alb?Qa{JbJHzH^DVie-57QltkE74mEIBp-R@`i_<<2c zDy@4jb}Jm};}84PX2wB-1_ztPzF^N7PC?(C7)1`pV^dI%lS}0Bw^Y!R=7;N9B+WDS zUZ8<{s6!8>t~Z{lya&+rng(jbV*NPHFJbH4YHcsA{US$&^{Y@@OWxQ|{GJ zP{XrFCRbhQuOr$u@6WHvm7VrjyLg&3rOq`6aSI2r4k0KFQWjjca3A5G4)mEH*btf< z7QUH`0A%pts;+xppLV{_`>3+D!FhTX#FP#V^ZXTu(xvQ#jq!lT7jHbIxrOt@jq*|! zKgK%KEX{8+LC%k9xfxtKB?nGi_m(p(C9iq2_Yv{<+%>;Fkgy04(jZuXbj+gQxaPH# z+frAx$r2Q;*Si!IG!RZ>cEI?geP<~LH(?L;o|wAq6~S))bA4Od4^$ z7Cn9?-0Y%mKg37kctMmB{YutV_KFb3eYRIBBw6Waah0YKX_i&*32$InCn7uHuI}wu zQ8&8LpgwyO{*t#sP2_Uh z9;ymFI?~N@_|skP&mVea*5|cdE!J~=46azc)U(}>c5P{&u*RaG(d3JU^IBiHwu$%z z*L~?hwq1AVFz0}!My@I;-SBDy8x}RMM;fJS7A${XI;Ah5o3I52m0#O(_Bpo0WA?;UCx%b9OPl z3BSBMoDVJV=BK3r}#=!yIdsmtIt!Q9Zz!RfiQ)C=fn- zb+w?dmj++Tu=h6_GnxYkNzhRwhQ@>1iZEcf{^Hv(qXEa<1i0FL}3>7VRUx!s2pm;)6Gh+E>pL?s`zb4CU>&(8+> zH(UXxc-}Za!=jaWv!sR?HUmVuk;sN=i1-p(tnCuc8`wYT-tE;I3t8G{07IT8)hC7= z>>QvjOx{IFwP_GPqxm2RbpKHRX5GgwtA@HIbbfuia!28OA6hOzJJ;z8~{v9?t_ z?Qlo|USZV}#dN_WxeJ=CL=@og-xWYtzDO8UdmKXzzm0T2m#p?n zN^y6hJahwt_AZ*nti^Y?BFzuiOB?17$EoYx5<*VAB%BTy{_Nv-A|+cs6&W&fb5+QF zTgSMrHFYv~ z&!kGHw3gg}@FJrFX@?ywbgxifuh>HC7if>} zSE3l4dXiZ@(&^~WE1kshxhI3BrK+>wvpJuX=qWZGJ4-ds*>B^7p_LhVtzv%^P+a@A zkgcEYG-fro?XN7-e02eD(yNEOjM-@#ZUTVuA7ct`a3`BBNQvFlzr2)0~d&YA;FWK&^=4#`CU>(tc|od;RWol z@EK)%2{P}XkNHx2W)5;bK|R|J)`KTjeNL$A&qDYj#M*)%AEd_D_LP#u`wN5XIoM1q zntqwGmfRLnFk!ipS{D_JgsBDkHm(VMkW&lvTvnpdZprLjt47hF7pa_S@0_k=!g#b-Wg=N_*oSk@3++4qX*z}LTI z|Ctttnq@$DxA0$T?yv6zTPxd|H5P>#@yr&?^b|*~a1OQVBb3Vl~HY7)~ z#jO>xN$vY(gI(u$CDz0hHW~ZN&X+rop5Uz7jD2sb~wJ!>! zo>W9u_)&QL@;Vq){9HWkIYp(P2??5pH=d>?_LPPSCCs7j%Sc>Yd|rPBD`j-q&(t(w`)Rq4;GY7iG79TZ>`Z<`q22)f7KmivH`w#QG#mzF1Xnwp76 zs#I&@+i>WJ6 z)Y&O+*{E8^yu3H_#v#@DaT4P zK4qrPkH~)dj)-%_o+Nw5UA<2Zhb0R{#BQ#rx&(nTxV+!^voJsDyT$g86B>@i-!EFyKhbUDC^>LoZ zsb@@odP+~IuD)=w z2i4H!bpY7O8LZ(lxgJiviqG9m+=MtkSTTRl7#IW}HS2L7Yg_a;Xai+bbf5)w5uKW? z{THP;K+I7~LPWy!3yI9}%FDnQwCDcCQ_2&mz6+;wLzmoHj_5$g-T8-|r?-KGm=~hTK+iZgTwXaU{7SeIy9|vbWO^ zpx+6@qJKMw8C1o>Q9D0kCs+IV5*r0xq?3KZC;7C_*KyR?yE?))C7*_*_sHcTZZzj7+>!|dZd=IgBjAMoQ7A^ z^nF@iQ!#jD`B13`i$=Wupm;_+YJSaF($rozd3%0tJMjGK`&*IKVOourjl`nRsidc! z%Qn`}V{FDU7xk>-{LFl}rT1XlpGr&bMm4t5WWg`SbAk%Z{hs=dF0#K|LFJvNFOgtA zY5rvoQG8KS+8WOyJ&6VM#p53maIp~qkNXvB^)x(=${>lmtG`Ot8xFFP zqTv^vi|{I=@5-`f`x8IUdm|M-zCLko6;utB@+~3ZVyUR_8qscCuryvEU@>rn%}>OO z=U()!xgtc;|CuXnQ68lD;0hX(5;Dk0ugGC(O4( zP*VRVqh8vN1?Dnbi;|1e(}v}ZZ61!Ce*hp6tIz$*cm@^_7JKTm_d(<76Uutz{?)1j zgy^Y+l#jC{cYJh<KHh)lc(`7BQPvlbj7{yHR9m-7b zi}cv-)aH*ye)Uk{jxW=Uc}eH~ak9ux)R?i~jVxkZL;x8u{Xk03s6XD!pf4fP1T>m) zvct@EP~9ZYJ^fiGs&TIZd0z7Du1;Ei?un%Eu`kx!83Xl#4J)I^87~D)d?XzG%bIrG zn(Xpzvw}~MK|Q{3K`fwcU57QUp<5w1PeyItri$?s?es8XFM#ukkqO5tq+_OV0<-8J zV~t!g5q-aydN&dOeXp5&pgHfe<`vLFWkLx=WT-$C3X>43aqnL?vfi5-m-?!NyNW&W zF=sl?&}I8Jqme~fo#)9ruxE5td@^0>NcP(g6F~<`c-`5rF<G+QdR@U>u}!#g1{+T%P)9=5H29~EACfJu<=~@?iERHYej}UZ+C?h7zifJw zxu0>hqD5uufYp7@Q*`Sr2VrUIv?N0BE+U;7n}{!YQcJ4a@#}V1+zx%(w)4RVE^|z~ z;NBFU>NHE)$8h7nn-5rkCI%gtbhG(z^BKE=yP=314}Q(S$z(8R*j z)W{T!`I#7-o0^&2{6Jt+Llcwhr^a0VOaQRB9-qMBX5x%PyjJechmGaNJHJV2uPJRE z!mOdvQVDdp7BJZc35|Ds?X$z|XWB2|Ne-hHn;SCrqtFZC4O{J!!5ljWl(%^%9>`dC z$>(=6r%ydgrz(lFIp7v^r&CN%R*RX05-qh!*aqxgL9XT_-T~gaj|V4E+%~>LF~4fR z$j%3RUJnWXZYIhg%HO~;rmo=eaBi`Y!WwMN3hn9Xr6B2( z>mZHnbE-wnr z9ax8}g5bOz>s?Yn(z-h#muxz=J+rF&=@7bOrDmX>q4O-7)9+eN)-t{UC#1+8(CyWG zj~xQP6q`>8vbqP}Umv(aeBZm^Mb|IZYcQzL2S8(k_|QW4+uIV)zE&0Rs7JuH_KieL z&f6h>u$V+q>n4GF-rpPRy~WR+oqph#-HX%g!`aMOvhq$}s>)uaun>;>@B=o3a55(S z-q}uOT(t9kjpNv9!K9|2z$qHvfWTWvGK;(QMSDNA-JKYGun_Br4SPnEabdo{Yh`W$ z@oG($z>Za9(m6Y>E)+5yAuF-#`!Wa*N*W_hT5R(MZ{X5WOkC59R9$Pi>^=A-Y470q zwG=1Rnw<1m$wH_?33UL0f0}OgHB5q~h$2L@##-l6994OR(*~1c*l7U^p{HW{HFS$3s zK&EhQ3XetkaOoDsBrdMuA~wrTF^eM>r%^WcS)_ITgNGb>tj1+EJ=^iQdApWm`x9f* zN%Tg4o}&#&C`LU9csQf7Ke4qd{(d`z^~bZp;Nt=b)VWVLxv_fruQe(tp zCo1TJrNQWyQPA`?*=3L!G!D5V$VsV^ClNv*x5xzQg&x{_s9X%UX1#f)xcCp z^HQ|R6tt74Bt>%kqMx{@zUBP1XY~QeS@K8USl^}%Tp%kp49(w3%BYN$=sFn}Qe5SC zHMUW5IZ8bp+9*vWOiOlwubr$JbCv2kS9n~+1B4w3Fq_L^b)VQ<7_@-KN0a5vu4hm3 zkiPnYZ86BMBi9mfOE}z4x2`KAi0$zTaGCBD1s zGi3hd3KU#@D?n4ov`pzJR@np`Q<^Jp`=*nY|rgVwbi6qR0R&GCA2diQi$Cr8K6JyCtKyHLn#6Yzfb+f z1fKjD&Z7g{yy7w}7Cv;lk1(|uZT~sn|LUoO%rH&`p$%^PSEv4q%09qx8^DQ}8~BZ$ zZAQ4$-If>aTSb3+7S|bcducV%EbdIRJ%Xmk+sifnASF1VgU$$%v-+#9g@~(P?nA!e z`k$c&e%HsbJ1_Cb?4-mHW+-(z2YdJt3kS?L(r`C%l^j_9W$Pw!}+d`-J=epVV_5tdXoP!d7 zuxj}No|AHvF~t9P_lVsTU3|AwbW~|yJvVTA8w>9x;#JPf3H-oQ0<`KLU`KpU*7;9_}&hiM{{V8n?*-Z4z$m^GUc+0b-%S*K_(;3wht$}ir!q!NBRT1#nq@-N+JB?Iq6E?|@67ngZ-kc+c3Not3t%x0t*)b!W0 z`P0kp+chTI_GseF>(9%RS)C^wn~@pfq*^-2?&}b^KX=n*JK?;Vd~N7Dda)oJ;3Q&l z(l#X|m`5(a**D7!u04|E;hSiUC zWyfSpNs4*n;Ey?$Fa7=O4Z4r+YQgG1=s^tZR~lcxaI3PDKfdCu(AFhpTDvdtqlNV7 z3d_e7Rc}_Yc=9dkAZH7D&!K65b-6U!JIIx2UbLNfEVQKS<+m`;pvt=CGX$dY$@2Nh zZRFH(w=(mR6dmPr${9+hX3livvW3_K&+>6n%+L!gev|0?qZ(s7&kx)6+P=5<8wC9x zowPQcNBS)l$u?$MH*RL>Ck9_ZUoev*7eaQSfmIjGE(*C*OLl#-AW-!U7a;!Te_EgNk)_;WGGHg87EmCmxJnT%NAj&)-J_dF2QE=(3dT7^`+R|^GZ|SR}}2_p6^tAUo9$dMwTq>=ze>T!KFk-vGn5>XZ-Wx z%mb3~oE3I`UH!n*ElCC`a3|=aEuSa@c7c;zJiQ!Da;lo8i~0t*e7y1Szd zx=di^*JCHm?vuv!jQ#~w($M&fRZs)N_(9-&`QCvB3B_G3nU~+o*LKk;ddSzrp5wZr z6BNAO+jUBcy$@N1zgitR*kvkyQnZsSg(`9|#*#j!q%iv#`>_(ePs)9p?=G~`KB0B7 zFF4lzXW4ca6>_WZazfv%g;l;C7xz+b^XHf&>st21Kkz<@?KeroJ*&Ru&2jZJP%Yj| zcEc=Ej?#}SzTSA*ETKM^4M+P1j}dy8XM2C>Qyt!eOkX{7c-u|{Qa5Vi*^>&oW=@5) z)v<0Sdo@V~A2_VRUjq}251CIZCB;bHySz67+o&OP3uSS)I(=6=Kk6|g&+u@2u6tmG za9NqWBg~wur9d%L0ksBmW#{@lKOIVKfu$@ONe8H*J45<_P{cM z8c$S+`|)+X5(3elDY4ka--9@vo30mz#q~q|RZ9`y_R(^xLE|65WP0<&*?z^W)H?_K zjSb(f7CGiKHb`y4&&nTP)}OZ#{(f8ZQ!-FpXd&5*Ph~%m7;EB!oV%%C&EivAU(HMS8vz$|G zkUSV#mcKI6KkVR{9O|nppHqJQ5uotcCaKe$tEOWEW4blhENfGxNCCDIJ)vdGXWq#Xwvy zyijjQiSUT|bK>2LogNEqi0q;jb>r`{Q3R?(r z0QZtyDZ6QA=f&XLEQtSw*=~A~Lot2U*{@CR+!eA&hS3P*JQO@!wP6UlmMqBvvxbgx zRn#qChl<`d4UD>qCuOU|Ck-asozgMZVNm$)&nh&uzQ4OlHZ@b@Hw)0+wX@Lk_}oN0 zbS~;^Bn6d{td82b-sJH!d(hei|K&HFjBJDjNP1`F<@pZ7+gqcRv!BewmrJ48QeApg z`G$pSFWMCaep|6qk9l7#J#-g!52UTBfNu!7vNZqJ#FC@pt$Xu3Hl_Ch@f;sP*Y+)w z;iTb`Cr}L4gv#;Rp@Ej&CW8q{enbq8!`%7023g)*ojo%xaIrV7|I*Ar)oNd6XPcHL zk^kv|?#TV{L5q9FE{fxq%V;{OFx~+yPdecK<3-8g9d}T7as$M|@42Z)d+g@&nGmWq z0>$eZDeBjfJJcG)#1Yz^7q@vXMZhpzI4jEjrBgS7`HN`N$UuT{5Z8?HpibXjRvBV> zo+RU?4*Myd#24aXuG-g7u9v{qQ0k&uqX0w(-;CvuHoxntw!%a*x8YW9ADfD(x~`0eW7L8zB7rn zSJh8iEa+lZeYo^hXm$oqE07|GWz-oJXV58!CF-u|(Fb2vxYMi|l0}LSJ>^#@%Uz%4 zWUAh3?~fWU#Cx7DZTj?@J#8lSl>XEunx~u`BE?z;B>2-0Z~FX5`FST^)b^o+KT2)d zUeKqBq-U1qZqFy3VgN|M;(a3SDkm8J8-X}sEfp_ z-hbdHw@|%)_{!qiC!(yh%O7f+1mE%$fwV+i!uz6=n_eCKk z^8GUP*^%|Snj{6p(=0C64Pt3F+*yR=&o9fhk0iYM?t-74P?Hgj_YSw@nczpge(t9h+Fn+rMMKcsjn1^bx+Bj55$Ruqfdr4R++;8Mi`v?tWz3}-8&`JPagY_h zs#%}=4#z3*LA1b-UYxBx@J)P=jKhDx865kVon%++U@E)#2@@L~7pLQa*33Nm+GRHL zD>t(!*@Z{{HEeIaZ7vmP!D@}slC9{XT7uS~#IjcXTPAy8M>*$SdZ*}bC;fc&e5;@5 zEQgxfH2P2cn8{uI1qmO$XqCG=;M(i=26``cnv6w0qph?x+3Uf?QTduG*DewDK2)}Z z9q;b?96=l)k)OY%@Oxs#Nssn~PSo={HMI5-bD;x2PA3lEL#q&fK>9aMJ_$V&1P2JA zZ#;Z$PEqS9fH;!qa3G=@+phOfmr4hbd^lL5E9@#PwRC4{^z~fTk5Tq8-BGgXkW;&x9~||5;r$_iwB7c86v*&VwSIAF3I~A3PE~=3o`bIKxE8^cUmX zRhBZ01qncBB!h&>Cz{znDD}uUDx?Bl@WmcA_F88(3Y~FPa+veIwJ5VKeIO)QeyL>( zTEftltkihdvi!UtW#|=1KhJ`J&g_;gz19cZl}loD^n_tgCvkWmbtfc20aSlEEyKgrzv4#RJZC%5+&i$VzMV z1^|!WQS#j}x&qx+>ouVp**N|ANU^S$78Z!J0mu(h;RU72dc&=}nP`}N*S<|p+Y%6P z(LyR<#3l9A#}phWWDKd74Hoh(ra~Z0Knz~4f`N0M5>e1OrpZSR2dmGnhdbMzAGvGZP`miC)-Ib zX+P0M1jGGn7rH_h->sJe@4tyV)dpNu_Bk}qC<9@4B(@1z!{c-KpK|Onj{}Pt%10wO6x4fc#DE?m?j=MC7mjeUl z6Cv``it1wDvmYk57pt~Dj(!5HQL=@y=IMBJ3hZxgL1>!UI(p0(qPH`^l}53V;_kOM zi(Jc*&_%?Dj{3*V=`u~9tRI~WM_;!-D4x7fr6D>0z_K6ffHQ|5*W`?No1kmDGpA$C zTcWO#8i@7l4l&J}2)VZ7Q4hYQtUa-;BQW%&C&PfQ(0}LxdhX+?-gDCF{_;T5v~@7+ z`lkzJNQL>b{kK4Y7MD?2wU>fr_<@e!e924mKD7q%$D;;W4=r@WE}P8G#hBQ!*9g(% ztnxokk0d43Z6y2WGU+$O;AUn~P3@;S`#+X-!qKb`7FEa+>K+iWS zjwo&NdnS#`DtIca@Y}T)JafSJMfca~xldN+DmUf^zuRM>2t@~Dx)eLne@f|=+KVnq zI3u=2+b(yvYlervgY)PoJty)kb)jEdgIo0Ao5A}O6X*Hx&HUe+BW& zcVVdhByAH!mbra7o{m1hZi-TV)h_m_aqe_i^7{%6d#$s^0#{y!$Je0oWbNNmx^v#M2q6P2?$JQS(^DsWYN3Tg7S9VF~kckM$f<%Niu8YMtQb#PSKE!R}bd^$;oG|j5FzL+V?(9osN}or!6Y0u4fIkx zS?bJf-Ttt^PFb-pvHT$z3@g4aOw;Q(7$kFX#uonGe1JWzQnNHwHU<+>%^cP=#GWAZ zq{-IoxY9BW%7A$K_&)bBL(g=&i=4X0#xAx_HI`d8kS!(KM~F2ZS6S ze|GgV1+kYKHoxD#+uo5Yn-IFSd{_zbP$GU5)cuR`8SdI0!BCdZ({JQZ?mst+JX3mx z#qCzUHATVvsa(q;5u?`hkRe&KSidWji_|smb}4qs823B0imelp?e*eZ{NpW!i-SqG zQ2+PQ2nyNQcU`+PTXLn%5jK`*M~xc51ePbkr?B4?NDtjBk=T{2mGU}oiaglnjQbsj zl}%sTZY|+UA-F&(F0eX~=4N6z{>|xgUeE+y%kuqb{s%8dJ4aXd$0?m8q!t+9Sg|oU zLOrf`uVP_KbAH0qz}hl-LUH&e4f#dz_8GTxuZn0)<<91gXF${um^a2iB6+vFOI!4+ zix$v)_HNMKb;telMkNDFKI@p7c<|!VqLNvJ`wJ(s)0`3&Wri=uDN1Le3t3VyI?}A2 zCUUHKJYtde)s7?M+ZwV{@v*Q#EruOrPjk1Z*(R%GG`jR8CD3s`vNx|4t0VtN)F2!2 zY-|alC|Jd6rcphXZs*3!PM+KH&|66m z3ZYx5z<4;kL0pN{leB(f_6gs`m4v$fcYpsct)o0A z{hcA3q9=UwCz5Evc5*yTWBdJkNAQt#XEBcVb&Ae;Lk4pWFf)&$Cx%my#iQfTP3?yx zswxH?Gx~|xHE?C#H+=+aD1~IDo{PIKN0#FED?y!kfkwV1XLPFtk6;GFk(rUdgH20m zHh$j{m}sGjs4Dj=l$1*Y>l|6#mk9QL9eo~0UqZGDWuyY5wV3TUehYo1-*5v?;jdrH zGtml-&s=lw8=MF@i_Q06p}Y*l_jWpUz>?6c%tXY3&k8+9EC5{eC2{mE-MS;Cc@2`w z_Mbp!#Is!mIZw|79s8X;xPwG}{aNU&_E7)ABW-H$>ZHMz5PP7@i-=EY^UlC$K4)zq zPJFCiUVJTT{NcxG$C)8HH2HuA%=BQq14Pi~a z^<`$mhX6q?sLKt>t(?U97xm1sCE|%Y|FFcB}#a1-c}w1>O}u^GK+)J5wR)pObXhF zZVg^gMEnl58S}2L!lxw3xE);;hDT@~4Nl%!n1n9Vo$a}{l=-|}br^a80oC_V!g&Nz zsLX~4f&JjZ`dB$~>iByL9r-LU(T>!DEQ!8XC>pUkTo+=YoQSzN#N&rH?eS8n2IEkR zHVGTNFudqgIXvu|;fo!oV$L8p28RBNofAj|tT76f+^>TuC|>oXi`_U0yl#ltT{5Utoh1XeTMYrOh_7edXWp)CQo(SzT6d{X)3bOSf+#MzSh(Wo@F1V{c5py*5#9;VXht$1oHz@sScd$6!_30ks)|9(8iRgq*LtzUY#4D?j>Cle3--V1Qi7qM~;lH?=CI%Ogz(4_gHbET^h34v9J zOk7;(XzXr!$3fxl^gH#t{^rgp4!i@8fWvlmO$Ph@ySF6+`O)V3i^KCjmkjqs>`fyd z>255qZ=E0x*C#VSKmQ~2wlM{_LwasCr@S>WmOGWx{$%wn?DdU)w9 zv^q^>f4k?%AsXhRPyPHPnmbV{s0z26p|!a1UGCds!Kb7Zu!t_!TPHYL?*f(71}$>9 z5T+s^5*KvjGX0Lpz7P!wX)CTSo6+Jq(oZ9$$@O_YQJH8x*CYfyZ%P$|+pk1M;Ls0LP87PHe=-lC8(WQGRK>XQf#rd;I4Y`R9 zLg1fGh>j2cy$ON&&n=)NDip$D!V3bK8eujdOhG1mAagTQGh;y$Gmx>F85jgMHpT2j zfQ<#fCf6?z`vZ8G^)OU1dT*fpn`C7VjPJ!#oU0FV3_5(o(-gFGp%>#V=(_nwG7htA zcjOU-t!Ycd9FQ&Iqz>=KQ`U9<1FzB7nUYah=w~SKuMgS>@sz^@Is-8iQQMk*%nx2m zZ?=|}SChH8xC)lW8MLEzcczhhm~?oTQXW0f5BKwbzUF%T8|G=)LAv?_eNk}v!@M*& z{z9TI_?W{p=WBtm+<5R(=zS&S86FRZx`<)HYL8BdTc|top>vNt{T;`<@?n+5;x06% z-B}y1N5c_F`tFlWS@>cV)PA7;L}K<1z`4Jd@FKU`iB%DDD~wW0%vju;8Cn)}{kY1O zDrU}=k+;FVOoim2(*jr05R}YU# z=0~}D%zjMqM(M!m92r5wpH`bM`*1$DSs(0dX38{XeM4cneHhFJMtj{Opu?6= zP?mN$%qjyvY$Maqa!u@niR;53OqpMbaa6*XBl(6r&yE@*mRGwI!Kb`4lQ=XrkYMSD zwh(3BnODiYL8MfBU*{rz{a}6+O5Yx?c6jc7)Nai>5#lY{3{1eIwD`F`hW%)BezSz| z6`KXCWijL(aIZoKdFNyO2SDT%g|!lq8P~xpofjlPJ|Qts{3S#{ioNi=Z+T~O|KOUvU`|)KLX3pefn%nuC`$Q;;!6Vhj z+sFR9>LUm&FW@%*yx+D)icOpn56`omrZJ=$7HH&xzks0HZlj~Qn|yj=rUta zHF30h?H%8PP5!W-EM0@8XAz`iEYfbw5tP9pn~JsVB7m&_MvIE_i+~aj!rdOboJe6~ zKW6sq_(f>Pl5>r?ec~I4M0xvO!3=veVD+^e{lo58ASue8A8n5|8m~KxhoqX@(S{u# zqpn}CbL@hH`3=51KxqO>nr)0vo}hUKQe&U@e9a5Euv_A@ZyLYSqy)-o`w4j1@3uU3 zKqm@kB&#IDnU;d|r5FO4rf@~u0{&MKXBrN5+`aLiUD--m!)UWa*6cA#B$1`EGa+Q( z$ucv9CWH_wWGh5wvhQ2=EfFT!moXTOZ7?%t=I?o~>wi7x^?CPwalYq1_x%B(aKD-c zm%feQWZz>TJcaVU=Ztc!B69Ru@1VgT+yG)6^$*OvU34>L;;uE=)zoHi^-sPQqR)*8 zVt7A_JOXt7a=dRAG7ufG2ck{i_QbxQ`e*rmZm`NR=E$q~nDx+{FRVhJ+V01(Q>Yh|NQk&vjZ_3_IEd-g=CfpWJ#*NH{YOGWslY^i^!r|CC6n1ZFB@M(U*LAG* zW*|a|EFjQxVlcNcF{6(&O*T#a*)i*`H;xrF;J7uFEKEj}S;Styu_6ow^dDT4#Ay*1 z8)1Zl;F;cyVHPT5jc>kl zvG{k{-ahKHmEdRDWI(e-tt%(LS`Jd6QH9*w*2$iyztwZXi7u*kknzzks`SX8nKp>=@Tt&7)%b#KS%-#a$ZN6%P%Kv#7cd{UF74}?rwp4uo zlZ<-n*Mf5Z}E&R%_9)9|H3v;Ie|gM6U@l<`;h`VYN`GA8&k*~QLIz~m_o4f-t zDQ$HR#0n12Fsw*IS@o~c+uH7M4(Yn8JCp+U zhV-Yn_+$r@iLL*e4uXQjT=0CRwy4(7198~mA>G29!ne~q4&LnSER*6Hqj|!$CsQ-x zSBdLQMrs*#9xXyS`Q&>ad-91q^x1TSFBr^Ijg%)|%0o4H?M@^T{P)!0wqSK3_<`W* z*q8)|Z7)Bw$(=PPZqts)U5t#~n1$K)VFluR-&VZo{9ftg^C~XH2E$kA)>*a5j-DRB zKZ_NOoSe7(+1aU)+U!$WHGtO%Sy@XKkHuuSy~PDl_p*!0)Yh^H_n;m**zoJt1IPt1 z%70I`H!{|y)Ni>k!UZ};VpE%wA|5#pW3j8<2l_fN!Y`6{1`M@|y$V_H#L)}Tzh`0- zjqG?F&%6-+-KZw-^#kQ?$Ay50Gv;bKHNAS>vDVMgj z{y|mvry*gsNP7?3%id{$P)jIb1G_J~N-N9uQHa_>?}RIu{Ecr-K0OFK>?OUrnL^W@ z(|h;(^1>m&XLvl`EC@pw-Ggn zbh5O{23G|sC6Q0l9B|{wuZ)M$7W+MTLQS|;PtqO-(S8K>S6l6g%;PcCq#jiO+9!RT z0NM6__Z2oE#XrtOc;m^GcjbB50rl;PqsDy|aQAMpA`D8|Qgs_aNVwK@dyKE8IUIii z@`@I{sqKY4utVdh3A17`#aaX__U@fEz1rB&s&6`3pT)mQ#SIVBdx+Idxo1<>F$>Ya z%yqW&Q%_AF?&k)!&FyC7cHf`alHs%fYpO>m=ceroI)*Fl@!L1d0qySc8<#h%mi4mw zenb#SHgn&#JhdPLBd~9Zcu;bd1ywU@m+zBY$`h|)Jl?Ceadx}m39xxRfxSepqJkwT z($a_g7qJEqGJiSM+m^#_?&C1^T1X%3GtGa;)ze4ElB!ervtG|Rn#z!h6f-ZhXBwP4 zPLEKKiMo=MOZ{0&F$crFj;T~!O{-5vRl48D*dPM)ia>&#Ww5{pq+=@=;)A%*ulo6b zTX3H9bv%C@?J^$T#*u~yyD`(F@cHCi=7rBTg&z1y%FG((a3*nm!f|Vag!&y;vj>)D zk;nok)X$3&l~L)0Wekz=jL>#Hb4>BJp*D>lL^dOiI)@5CT0`b(yAUhL>--r4R!6gb zU%G{msnW8zb=cbl=;MMMR#k4gJ%^W!|HQ7zMrW-+dX1`jM&74>hK+r-HnleEgM`{1 zYsa0hCLZv!j!GN0fd>aVyM*S!Nq-vn=Vgz`izKzVLRO4A`7|?CFrxLnxCC6rd<*?= zx1hwO^f#vWbyV-Z(efhAB=9rU*HvW8rJ(qvIb}*hWsu3a?4Yqe|39zE>Z{?FXmR2d zNLw%WK!|L0hCYQWS$8%i*r7w;qJ5Rx`j=lgYtrEG?VNl-Z}VqdC}oHCxty!D$|uGu zv!-ya|um8tSoyTt2axmj?yn2Dq-)gGbf!f78zvPA+F5S;bmvoxttNL-CtFtU z#QpsAsC}op3=6o;z|oE`-NmzKIAT@}3SB%|*7lo|z$GU^8R*Qn$-AJQ+yO;&@R3s( zq1!wt3B0>1z|X&*cGF7dZbYD{2#fmd^2ei~sp@81rSfsx!>j(k$i_vj)>nRpgWY;* zv(JT*mANS3U{=*=ASLjjpse_Op{qn&(ze=@ZNC#3|3E*2`0+K_IdK&+Bjb#sn1*VM zL`H3D6GQ`;h7lH(-z5&naQ^RtAy&0piQ=i_yIxKe!5ZL?6u!0q6&*x0{}3iV&_J-y z^YZV#hv&5|&T-WvTfnBxsjb2SB(uSI``2jfMnPnq*D>*=CrS^P&DI&Ef6Eb~zYuR@ z--rixPYrHrf-UyoIk7GDv_p_EZfi>i9kdx;HZn&+{>e31;C?1QSJ#QoqW$uo3-6Qe zwZSaR#KD4^R*<5ZRWyEL9{V3xdT(zi>)Zk!tSX3$-5i{$BYd6Ny5|z3@`p{659NwZZC`|e1uaFVVMWzQfb%NwgiQ`G zV=4;SNn6xgK3(WSSR#=It=^KJyXN*YihLnV@FE45?S6ai<-_5zidK0I)!7KS39i24 z?RXa<3C*x~?jjda$s_lY`}e|VA;afp%e^|X(3dR8-q#50uN(h)+S00PP^xEVCq1%; z(I`mE)L`ROP2}#_LB~vP78*sP`O%Vn{<~DlftvWuYOxJ3*ZlLchd&P2x-}Sk>Dz0{ z@E+ynHZN5&Myy_*!p`*4+JyWnWKG}~E_27UQ7+h&cyWdX2Vdjh+_$93NEj-nDLZ|} z?h!#->aTBTyg1BHN^}~iy)kyz4L82OsVor6aHsPDVg$&V?Ysil+{p!zUhIF=Pf%J+${#C?L5zT?p*$Bm0nAZm?zs&bnob_BlB+maZ9BGo?DKavIh!A9FW2k zQrM}UcrD9juZ{{fy@=c}F-?poo(FLQnd#+$UC5!T)3F{}`m=Sses0jzHTy10akNp) zIO{{SQ|sk3xa^jG(3zDVHM_{GXvkyr4}+>>T2ANH{czjP6VsUeLRsCu(3PdQCu7;S zlv{L_Q_OXTJq&iM6g4);I>3oU$^2 z60R5(aoXjlmJll&YXwECXEsVI@(QwccBhO93nhq+jis#(O@Vy4JvUQij)`XKtrS{& z`s@@gROZvBJJEWZ?kj^rJ5XJ^cN#GhUkZkgQwb6PVCCn1H<0z@+<3M zSY01hLL4;wVTckluiuq-3XmqcVmgYwJ8P!i!6C^`XEWq)*qF1-mrvWVRSP=DehDd{ zWtvTLXX%dr7`~!?<4v689VbyBa9vQ&t?~QutWW*h$we3(8NLM}lLi}y5YeMEG@}Nm zts*uyuyCaD-JIXZy~)WuXazAOptxA&?f$}6J8_vntO+4F#hL~Xum(b`7Oyc1QyaaG>2BbUI0JR&@L-QIEpnf!bRV{ke8j%EY8<3rvQy+iO z>w=|3d+e>Jug`of{RE#YBRy!u;x+IrVsnXX^I9sqN64Y;36e|?1pDzn;1r6RH7{mD zgc2yZmwmDfy?rxzbYkw?;Hj3F?IDpgLWG72C#z((|D51*uB5r-^;*cZC6Z_!W(>Ok zroyg?60q77htZZHALoF0XbR|CrFZC0u2UpRm@mSpG;??dQatI`afH^i)sz25YAIkGTA;vcZd&_#79odC#;N#jsP?d`R0E8|sws^MZ>~AO?Lesg zpVw-SZk}1$I$-S;xa@G^ZXvYlP9eTSqw@V{VJfKgm-AS1ppnH0pBitb=KBdS#UYvH zS)?*dLXY=|TH5ljkVPTjGcB&7B}>Heg$yePpQT9dY;@Z9(M2{XM(j!!nm!zxKX6mlhtFbAwrj_J(RLKPkJp(c9Gw}_LSY_- zV^s4ItYC@v`HpAZqluVeIp}_S(dY*y_xdHqA&SWpud^42<}oLw_pLO2aC@Xx3%^ha zY`tJ|tF5MCd}zIp%(uBEvh+#5;E(1LATXu=u-9JUC{xOyOaLoJv#|)=YTkc_^p`2E z)~@iS&?I0~c4nJf2bU90y$W3(rj(|ok+y+#0)=ASyKFn-+x?Cw?RI7^a_*zO`E#eB zUs$P9hRE$_U##04MP{o(!NP8Rp+ADchXhL~^Vlv8l(DqM1sLX>_l%fTyUJ7{7^O?CzInRh4#+O?=mXpYNa4N8tv8{U%wuq3(D>S4Mh% z*SYDFW^0Cr!Os#sGya+kjHMW))_e(PfqFd2k?vmjVlFFsVjAIUb^r{u3>>s;E5F3(^JjZQA3<_nR$b9h>{ zTs~m9IJv3}N7`_IetJ<8u0-NUjYtnN;qcc8d^hJi18b3_lpWdk<$EOK@~5YVrD9f{ zo5-qIm%D4R>dQUP^d2h=(pIk+$>I~wUA!V`#L(UT$f5~#iE>;9vkyoX&k3MZ?@>q| z(41e!qY$)hZn)}i_)1(n8bmP#Q2NU$>KWgzSjmtDN9fPaFK^9;2iMuh(0-H1Sw@B| z0s9czEevGqcTozkDNHc&%9-U3q6W?UuEP+&uFo&m6NBtOz3i_asX$-GCS8?rDr>br zBJRs7oUboeX>G*goyQBPyF+Hf%Wo@9Ajd<(Ph?OJRh`0>j`TX!@?RJvFu=Do=uep9 z06E8Abx;1Ok-}PeFvq*zY4F+*`1s%w%?}vAp1{a3 zS()nHm_7e%eOfIucX(O#z7HO4)g0VAtp=K0JkB0X$%R_v-bOl7p3o~Ia4y{Z3Wxvj zM{#S_t7TiMw*yrc$o!uj2OEXnc}%&)GT$2vm?t)g^W2g#O%e55>_~;S9 z;H19ArKfQ9Cx*EFcbKYpqOJVVBKJP_DE^YSR22HPjK$oKwEERZ&AeeUU%JlQj+17I z{X9#nmM1TDey8@ra;3pw#<=lJ#@BEN%rI!3O8L@J%KNgzQwb310T2k3Yp&zBoL$DiJI)PL9f z!m7Ok>mzc&NtmWVf9Q=|9}CPsg4}v-QsaKm?cQ*(RVG%$JgD6h?<-noI1imhXGDcI z_SrucBzeEE{C(5f!B})JVW`1<;fDKSX`Vy!oe#i2%%%2w{-WIKC10n-0PX3yos~cc zpwF;y0WeVln6>>E^-k?fMJm9%a>NKkC|i*4C38;dcVrNHOC?z6SXp+d!cov>aONm; zS?Jx)wq8i|bxLM!2=!wNu(3BBY~SE8ty;tonD_3@+AWgIwM(W)TJAy;Ov&S!>kxS! zLHI?X=&o8j>f@cy64sgooaEPoYo+%TT`w+~+>?m-n7fZbx8}GcV=X~N*mJsKB9787 zy}OT5W7``?m7nIWza?;`5|uQ6>dLCmQ?5T3;@Ji%{v_Z%S{`1Up4sf{{gLN-H*P#? zutfVR!+h=lQB`*hmG{$Rgo7dfKRoAIkh6n@LiJPZfU18;`2xhOsA%24&Zhxhx8`xI zNAR(7)#R`$i!~c@a5+%zqHobTrM%6pE;BMNF`r?h9Fja{T}uyK5T&JOr|&GV1HQcJ zQt209$yj$7Jb0;Se}m+6T%H``Ratxz#tBj2B;90UGymm=u9UD{<@vKzf#VtD&M{7>86yAA5}iL5y-{j)K}uI^TxhSrEH|?2yWYOB^9_edi56vH=F;nwSNyi8 z$1<@~_PQY~{mh{*Ezwe#e$3|4*@IWj-WiDxC(il?I?a~$yelHcxAHle2MqDKxg^sg zY!`S!@29}Bd4#=ASq!U%=bg0y(FC|sVwIN_bXqK#-Q*6lgzSoRKLAi_e_;X-Qf8u^ zQWq_Db#h@cPYJ&}4C*c-D^jaMbNP3DZv6XwX2Wut^^PY!u(#d+jpgZ=slamXRuP_8 zJ}nHE#>YyweTFacB)QpSu4Z}N**p%te=7AH(tA4r`e&#HReqoe(g*&K+gY`HC+Ed+ln3hu2K6;xv7Wc?)gEwp(RPD)qE| zV(+q&4I)g{pf5qZw=X`^#`87&Uj zuLkf~*c!bPeF#5(B_q6Sa-GX0JNAQB|gf!kP zetfSMy0+6J-!X4fNJ)$gTp5*LO?E^y>`gxpzAJiT$UP*!#4UaNEK=y3CCujA+q{pt zQm^;Xulogbq2xZO-t5le>w)k*nOBh zE7>!CSb)tHuDd-;mSc?i=4(S$I|$!@I$A%2nF*HOnCy0b!23&<=W;9SqpeHvR*AmM zBN<1;`pAQ1TbcdSP-XtYSt>=eN$Q@JJX>hMm#Fcw z^Ct{&q1gYMIi@43gXMvUp9>Lv?T3tSEgx^NEHo%M@o?g;hy^@1+}KXxr}jMAF2Y@m z9rAY%h6*Ce+qR5Nc<4$lrmc*zXpa9wIb3=<35plvfY75i;7t`;KYoDuNQ>6)gy zcGE8TZYT5%7LFG8P7>+=$|FCobxHs1=IG!wsvEM5J<5{86^giH8&^ZhtGLDY<7V1; zd^GD6u(lBHE=cSq++0(>e$qpmAtCQUpGI8J*v4}~;$?|vm9GvLhYaEwO-Ma;YB%5e zQ$|OuFDU={-W&%{oI6cdAZay`#)Gk&jL+Kifn%yQbEI@u=gAunJK#q(I^b0l>K;>b z&g#u9;4@Eiwx4ljcq!j&q@H@iIXcJoOAJcDpEA+^pf=^h=}EHJB6ZJ9o3nfIxn9!b z$9}>gG3|lFWBC<;+`6=1G+pHOpc`9muGS5-E--Usq=~iT%^seWff&f9CKIlV6G3iw z$hG|lS=SF+)J7~QfZ>?%2){B59PnHO5{&bwo=k)Z zUjUxi5_gNm{v&Ao*Sx_P+3`PdeoPh@^Sh O{|BrI{vTMA^Zx*}(&BCa literal 0 HcmV?d00001 diff --git a/sound/items/ducttape2.ogg b/sound/items/ducttape2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..d233f4d8b95cfe3dd2fd634f82685b2a28e49dc6 GIT binary patch literal 14322 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 Z*gw4$CDopf6}T}J0y Date: Thu, 6 Oct 2016 12:12:20 -0700 Subject: [PATCH 14/55] Adds grapejuice (#31) --- code/modules/reagents/chemistry/machinery/chem_dispenser.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm index a44f99f..e07b29c 100644 --- a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm +++ b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm @@ -314,7 +314,8 @@ "orangejuice", "limejuice", "tomatojuice", - "lemonjuice" + "lemonjuice", + "grapejuice" ) emagged_reagents = list( "thirteenloko", From 91d350686e278de9a807c4e4ea99c7877454fdfc Mon Sep 17 00:00:00 2001 From: ArcLumin Date: Thu, 6 Oct 2016 12:12:54 -0700 Subject: [PATCH 15/55] Updates Xeno suit (#32) * Suit * Update misc.dm --- code/modules/clothing/head/misc.dm | 3 +++ code/modules/clothing/suits/miscellaneous.dm | 16 ++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index a92a8b5..9320d22 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -169,6 +169,9 @@ desc = "A helmet made out of chitinous alien hide." flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR alternate_screams = list('sound/voice/hiss1.ogg','sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg') + flags = BLOCKHAIR | STOPSPRESSUREDMAGE + cold_protection = HEAD + min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT /obj/item/clothing/suit/xenos/equipped(mob/living/carbon/user, slot) if(slot == slot_wear_suit) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 2666171..b870341 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -407,6 +407,22 @@ body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT allowed = list(/obj/item/clothing/mask/facehugger/toy) + flags = STOPSPRESSUREDMAGE + cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS + min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT + alternate_screams = list('sound/voice/hiss1.ogg','sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg') + +/obj/item/clothing/suit/xenos/equipped(mob/living/carbon/user, slot) + if(slot == slot_wear_suit) + user.add_screams(src.alternate_screams) + else + if(ishuman(user)) + var/mob/living/carbon/human/H = user + H.reindex_screams() + else + user.reindex_screams() + + return ..() // WINTER COATS From 713a52256074f6d2d91b33464b88515528c134a9 Mon Sep 17 00:00:00 2001 From: ArcLumin Date: Thu, 6 Oct 2016 12:13:13 -0700 Subject: [PATCH 16/55] Fixes table crafting error (#33) --- code/modules/crafting/recipes.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 555df6e..412de4f 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -103,8 +103,7 @@ /obj/item/stack/cable_coil = 5, /obj/item/weapon/gun/energy/gun/advtaser = 1, /obj/item/weapon/stock_parts/cell = 1, - /obj/item/device/assembly/prox_sensor = 1, - /obj/item/robot_parts/r_arm = 1) + /obj/item/device/assembly/prox_sensor = 1) tools = list(/obj/item/weapon/weldingtool, /obj/item/weapon/screwdriver) time = 60 category = CAT_ROBOT @@ -419,4 +418,4 @@ time = 60 reqs = list(/obj/item/weapon/grown/log = 5) result = /obj/structure/bonfire - category = CAT_PRIMAL \ No newline at end of file + category = CAT_PRIMAL From 86bdcfe0c1de6d997e2cdf8ab26310547c6d95e5 Mon Sep 17 00:00:00 2001 From: TheOneAndOnlyCreeperJoe Date: Wed, 12 Oct 2016 15:10:04 +0200 Subject: [PATCH 17/55] QoL changes for cluwne curse (#34) Makes it so that casting Cluwne Curse on an incompatible mob refunds the spell, instead of putting you on cooldown. --- code/modules/spells/spell_types/barnyard.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/spells/spell_types/barnyard.dm b/code/modules/spells/spell_types/barnyard.dm index 9065a86..880cb64 100644 --- a/code/modules/spells/spell_types/barnyard.dm +++ b/code/modules/spells/spell_types/barnyard.dm @@ -68,19 +68,25 @@ action_icon_state = "cluwne" +/obj/effect/proc_holder/spell/targeted/cluwnecurse/proc/castfail() + charge_counter = 600 + return + /obj/effect/proc_holder/spell/targeted/cluwnecurse/cast(list/targets, mob/user = usr) if(!targets.len) user << "No target found in range." return - var/mob/living/carbon/target = targets[1] + var/mob/living/carbon/human/target = targets[1] if(!(target.type in compatible_mobs)) user << "You are unable to curse [target]!" + castfail() return if(!(target in oview(range))) user << "They are too far away!" + castfail() return // here begins the cluwning @@ -91,4 +97,4 @@ target.visible_message("[target]'s body glows green, the glow dissipating only to leave behind a cluwne formerly known as [target]!", \ "Your brain feels like it's being torn apart, and after a short while, you notice that you've become a cluwne!") - target.flash_eyes() \ No newline at end of file + target.flash_eyes() From 97588e0be94523997a61716a4df71b1c30abbce5 Mon Sep 17 00:00:00 2001 From: John Ginnane Date: Sun, 6 Nov 2016 16:35:19 +0000 Subject: [PATCH 18/55] Adds filter for overriding config files (#35) This is so preset config files are stored in /config/initial/. These can be copied into /config/ and edited for local use. --- .gitignore | 7 +- config/initial/access levels.txt | 50 ++++ config/initial/admin_nicknames.txt | 2 + config/initial/admin_ranks.txt | 40 +++ config/initial/admins.txt | 10 + config/initial/awaymissionconfig.txt | 23 ++ config/initial/config.txt | 279 ++++++++++++++++++++ config/initial/dbconfig.txt | 33 +++ config/initial/external_rsc_urls.txt | 0 config/initial/game_options.txt | 364 ++++++++++++++++++++++++++ config/initial/jobs.txt | 46 ++++ config/initial/lavaRuinBlacklist.txt | 35 +++ config/initial/maps.txt | 45 ++++ config/initial/motd.txt | 5 + config/initial/silicon_laws.txt | 8 + config/initial/sillytips.txt | 25 ++ config/initial/spaceRuinBlacklist.txt | 24 ++ config/initial/tips.txt | 210 +++++++++++++++ 18 files changed, 1205 insertions(+), 1 deletion(-) create mode 100644 config/initial/access levels.txt create mode 100644 config/initial/admin_nicknames.txt create mode 100644 config/initial/admin_ranks.txt create mode 100644 config/initial/admins.txt create mode 100644 config/initial/awaymissionconfig.txt create mode 100644 config/initial/config.txt create mode 100644 config/initial/dbconfig.txt create mode 100644 config/initial/external_rsc_urls.txt create mode 100644 config/initial/game_options.txt create mode 100644 config/initial/jobs.txt create mode 100644 config/initial/lavaRuinBlacklist.txt create mode 100644 config/initial/maps.txt create mode 100644 config/initial/motd.txt create mode 100644 config/initial/silicon_laws.txt create mode 100644 config/initial/sillytips.txt create mode 100644 config/initial/spaceRuinBlacklist.txt create mode 100644 config/initial/tips.txt diff --git a/.gitignore b/.gitignore index a044f7f..423a004 100644 --- a/.gitignore +++ b/.gitignore @@ -163,7 +163,8 @@ $RECYCLE.BIN/ .LSOverride # Icon must end with two \r -Icon +Icon + # Thumbnails ._* @@ -184,3 +185,7 @@ Temporary Items .apdisk *.before + +# Ignore changes to config files, but not presets. Presets should be set in /config/initial/ +/config/* +!/config/*/ \ No newline at end of file diff --git a/config/initial/access levels.txt b/config/initial/access levels.txt new file mode 100644 index 0000000..01977cb --- /dev/null +++ b/config/initial/access levels.txt @@ -0,0 +1,50 @@ +HOW TO CONVERT A MAP TO THE NEW (june 2008) ACCESS LEVEL SYSTEM +1. Open the .dmp file up in Notepad +2. Find all the "access = blahblah" attributes of doors. +3. Delete them. +4. Open the map up in Dream Maker. If you didn't get them all, it'll tell you so. +5. Assign the existing doors new access permissions using the method below. + +HOW TO MAKE A MAP USING THE NEW (june 2008) ACCESS LEVEL SYSTEM +1. Make a map as normal +2. Select a door that you want to not be accessible to everybody +3. Right click on it and edit its attributes +4. Make the "req_access_txt" attribute be a semicolon-separated list of the permissions required to open the doors +5. Repeat for all doors. + +For example, a brig door would have it be "2" while a door that requires you have toxins and teleporter access (for whatever reason) would have it be "9;20" + +Here is a list of the permissions and their numbers (this may be out of date, see code/game/access.dm for an updated version): + + access_security = 1 + access_brig = 2 + access_security_lockers = 3 + access_forensics_lockers= 4 + access_security_records = 5 + access_medical_supplies = 6 + access_medical_records = 7 + access_morgue = 8 + access_tox = 9 + access_tox_storage = 10 + access_medlab = 11 + access_engine = 12 + access_eject_engine = 13 + access_maint_tunnels = 14 + access_external_airlocks = 15 + access_emergency_storage = 16 + access_apcs = 17 + access_change_ids = 18 + access_ai_upload = 19 + access_teleporter = 20 + access_eva = 21 + access_heads = 22 + access_captain = 23 + access_all_personal_lockers = 24 + access_chapel_office = 25 + access_tech_storage = 26 + access_atmospherics = 27 + access_bar = 28 + access_janitor = 29 + access_disposal_units = 30 + access_hydroponics = 35 + access_manufacturing = 36 \ No newline at end of file diff --git a/config/initial/admin_nicknames.txt b/config/initial/admin_nicknames.txt new file mode 100644 index 0000000..76198b6 --- /dev/null +++ b/config/initial/admin_nicknames.txt @@ -0,0 +1,2 @@ +Badmin +Spanmin \ No newline at end of file diff --git a/config/initial/admin_ranks.txt b/config/initial/admin_ranks.txt new file mode 100644 index 0000000..7bcb2df --- /dev/null +++ b/config/initial/admin_ranks.txt @@ -0,0 +1,40 @@ +############################################################################################################## +# ADMIN RANK DEFINES # +# The format of this is very simple. Rank name goes first. # +# Rank is CASE-SENSITIVE, all punctuation save for '-', '_' and '@' will be stripped so spaces don't matter. # +# You can then define permissions for each rank by adding a '=' followed by keywords # +# These keywords represent groups of verbs and abilities. # +# keywords are preceded by either a '+' or a '-', + adds permissions, - takes them away. # +# +@ (or +prev) is a special shorthand which adds all the rights of the rank above it. # +# You can also specify verbs like so +/client/proc/some_added_verb or -/client/proc/some_restricted_verb # +# Ranks with no keywords will just be given the most basic verbs and abilities ~Carn # +############################################################################################################## +# PLEASE NOTE: depending on config options, some abilities will be unavailable regardless if you have permission to use them! + +# KEYWORDS: +# +ADMIN = general admin tools, verbs etc +# +FUN = events, other event-orientated actions. Access to the fun secrets in the secrets panel. +# +BAN = the ability to ban, jobban and fullban +# +STEALTH = the ability to stealthmin (make yourself appear with a fake name to everyone but other admins +# +POSSESS = the ability to possess objects +# +REJUV (or +REJUVINATE) = the ability to heal, respawn, modify damage and use godmode +# +BUILD (or +BUILDMODE) = the ability to use buildmode +# +SERVER = higher-risk admin verbs and abilities, such as those which affect the server configuration. +# +DEBUG = debug tools used for diagnosing and fixing problems. It's useful to give this to coders so they can investigate problems on a live server. +# +VAREDIT = everyone may view viewvars/debugvars/whatever you call it. This keyword allows you to actually EDIT those variables. +# +RIGHTS (or +PERMISSIONS) = allows you to promote and/or demote people. +# +SOUND (or +SOUNDS) = allows you to upload and play sounds +# +SPAWN (or +CREATE) = mob transformations, spawning of most atoms including mobs (high-risk atoms, e.g. blackholes, will require the +FUN flag too) +# +EVERYTHING (or +HOST or +ALL) = Simply gives you everything without having to type every flag + +Admin Observer +Moderator = +ADMIN +Admin Candidate = +@ +Trial Admin = +@ +SPAWN +REJUV +VAREDIT +BAN +Badmin = +@ +POSSESS +BUILDMODE +SERVER +FUN +Game Admin = +@ +STEALTH +SOUNDS +DEBUG +Game Master = +EVERYTHING + +Host = +EVERYTHING + +Coder = +DEBUG +VAREDIT +SERVER +SPAWN \ No newline at end of file diff --git a/config/initial/admins.txt b/config/initial/admins.txt new file mode 100644 index 0000000..9adf0d0 --- /dev/null +++ b/config/initial/admins.txt @@ -0,0 +1,10 @@ +############################################################################################### +# Basically, ckey goes first. Rank goes after the "=" # +# Case is not important for ckey. # +# Case IS important for the rank. # +# All punctuation (spaces etc) EXCEPT '-', '_' and '@' will be stripped from rank names. # +# Ranks can be anything defined in admin_ranks.txt # +# NOTE: if the rank-name cannot be found in admin_ranks.txt, they will not be adminned! ~Carn # +# NOTE: syntax was changed to allow hyphenation of ranknames, since spaces are stripped. # +############################################################################################### +Carbonhell = Host \ No newline at end of file diff --git a/config/initial/awaymissionconfig.txt b/config/initial/awaymissionconfig.txt new file mode 100644 index 0000000..a092d62 --- /dev/null +++ b/config/initial/awaymissionconfig.txt @@ -0,0 +1,23 @@ +#List the potential random Z-levels here. +#Maps must be the full path to them +#Maps should be 255x255 or smaller and be bounded. Falling off the edge of the map will result in undefined behavior. +#SPECIFYING AN INVALID MAP WILL RESULT IN RUNTIMES ON GAME START + +#!!IMPORTANT NOTES FOR HOSTING AWAY MISSIONS!!: +#Do NOT tick the maps during compile -- the game uses this list to decide which map to load. Ticking the maps will result in them ALL being loaded at once. +#DO tick the associated code file for the away mission you are enabling. Otherwise, the map will be trying to reference objects which do not exist, which will cause runtime errors! + +#_maps/RandomZLevels/blackmarketpackers.dmm +#_maps/RandomZLevels/spacebattle.dmm +#_maps/RandomZLevels/beach.dmm +#_maps/RandomZLevels/Academy.dmm +#_maps/RandomZLevels/wildwest.dmm +#_maps/RandomZLevels/challenge.dmm +#_maps/RandomZLevels/centcomAway.dmm +#_maps/RandomZLevels/moonoutpost19.dmm +#_maps/RandomZLevels/undergroundoutpost45.dmm +#_maps/RandomZLevels/caves.dmm +#_maps/RandomZLevels/snowdin.dmm +#_maps/RandomZLevels/research.dmm +#_maps/RandomZLevels/Cabin.dmm +#_maps/RandomZLevels/beach2.dmm diff --git a/config/initial/config.txt b/config/initial/config.txt new file mode 100644 index 0000000..a4303b8 --- /dev/null +++ b/config/initial/config.txt @@ -0,0 +1,279 @@ +## Server name: This appears at the top of the screen in-game. Remove the # infront of SERVERNAME and replace 'tgstation' with the name of your choice +# SERVERNAME tgstation + +## Station name: The name of the station as it is referred to in-game. If commented out, the game will generate a random name instead. +STATIONNAME Space Station 13 + +# Lobby time: This is the amount of time between rounds that players have to setup their characters and be ready. +LOBBY_COUNTDOWN 120 + +# Round End Time: This is the amount of time after the round ends that players have to murder death kill each other. +ROUND_END_COUNTDOWN 90 + +## Add a # infront of this if you want to use the SQL based admin system, the legacy system uses admins.txt. You need to set up your database to use the SQL based system. +ADMIN_LEGACY_SYSTEM + +## Add a # infront of this if you want to use the SQL based banning system. The legacy systems use the files in the data folder. You need to set up your database to use the SQL based system. +BAN_LEGACY_SYSTEM + +## Unhash this entry to have certain jobs require your account to be at least a certain number of days old to select. You can configure the exact age requirement for different jobs by editing +## the minimal_player_age variable in the files in folder /code/game/jobs/job/.. for the job you want to edit. Set minimal_player_age to 0 to disable age requirement for that job. +## REQUIRES the database set up to work. Keep it hashed if you don't have a database set up. +## NOTE: If you have just set-up the database keep this DISABLED, as player age is determined from the first time they connect to the server with the database up. If you just set it up, it means +## you have noone older than 0 days, since noone has been logged yet. Only turn this on once you have had the database up for 30 days. +#USE_AGE_RESTRICTION_FOR_JOBS + +## log OOC channel +LOG_OOC + +## log client Say +LOG_SAY + +## log admin actions +LOG_ADMIN + +## log admin chat +LOG_ADMINCHAT + +## log client access (logon/logoff) +LOG_ACCESS + +## log game actions (start of round, results, etc.) +LOG_GAME + +## log player votes +LOG_VOTE + +## log client Whisper +LOG_WHISPER + +## log emotes +LOG_EMOTE + +## log attack messages +LOG_ATTACK + +## log pda messages +LOG_PDA + +## log prayers +LOG_PRAYER + +## log lawchanges +LOG_LAW + +## log all Topic() calls (for use by coders in tracking down Topic issues) +# LOG_HREFS + +## log all world.Topic() calls +# LOG_WORLD_TOPIC + +## disconnect players who did nothing during 10 minutes +# KICK_INACTIVE + +## Comment this out to stop admins being able to choose their personal ooccolor +ALLOW_ADMIN_OOCCOLOR + +## If metadata is supported +ALLOW_METADATA + +## allow players to initiate a restart vote +#ALLOW_VOTE_RESTART + +## allow players to initate a mode-change start +#ALLOW_VOTE_MODE + +## min delay (deciseconds) between voting sessions (default 10 minutes) +VOTE_DELAY 6000 + +## time period (deciseconds) which voting session will last (default 1 minute) +VOTE_PERIOD 600 + +## prevents dead players from voting or starting votes +# NO_DEAD_VOTE + +## players' votes default to "No vote" (otherwise, default to "No change") +# DEFAULT_NO_VOTE + +## disable abandon mob +NORESPAWN + +## disables calling del(src) on newmobs if they logout before spawnin in +# DONT_DEL_NEWMOB + +## set a hosted by name for unix platforms +HOSTEDBY Yournamehere + +## Set to jobban "Guest-" accounts from Captain, HoS, HoP, CE, RD, CMO, Warden, Security, Detective, and AI positions. +## Set to 1 to jobban them from those positions, set to 0 to allow them. +# GUEST_JOBBAN + +## Uncomment this to stop people connecting to your server without a registered ckey. (i.e. guest-* are all blocked from connecting) +GUEST_BAN + +## Comment to disable checking for the cid randomizer dll. (disabled if database isn't enabled or connected) +CHECK_RANDOMIZER + +### IPINTEL: +### This allows you to detect likely proxies by checking ips against getipintel.net +## Rating to warn at: (0.90 is good, 1 is 100% likely to be a spammer/proxy, 0.8 is 80%, etc) anything equal to or higher then this number triggers an admin warning +#IPINTEL_RATING_BAD 0.90 +## Contact email, (required to use the service, leaving blank or default disables IPINTEL) +#IPINTEL_EMAIL ch@nge.me +## How long to save good matches (ipintel rate limits to 15 per minute and 500 per day. so this shouldn't be too low, getipintel.net suggests 6 hours, time is in hours) (Your ip will get banned if you go over 500 a day too many times) +#IPINTEL_SAVE_GOOD 12 +## How long to save bad matches (these numbers can change as ips change hands, best not to save these for too long in case somebody gets a new ip used by a spammer/proxy before.) +#IPINTEL_SAVE_BAD 3 +## Domain name to query (leave commented out for the default, only needed if you pay getipintel.net for more querys) +#IPINTEL_DOMAIN check.getipintel.net + +## Uncomment to allow web client connections +#ALLOW_WEBCLIENT + +## Uncomment to restrict web client connections to byond members +## This makes for a nice pay gate to cut down on ban evading, as the webclient's cid system isn't that great +## byond membership starts at $10 for 3 months, so to use the webclient to evade, they would have sink 10 bucks in each evade. +#WEBCLIENT_ONLY_BYOND_MEMBERS + +## Set to jobban everyone who's key is not listed in data/whitelist.txt from Captain, HoS, HoP, CE, RD, CMO, Warden, Security, Detective, and AI positions. +## Uncomment to 1 to jobban, leave commented out to allow these positions for everyone (but see GUEST_JOBBAN above and regular jobbans) +# USEWHITELIST + +## set a server location for world reboot. Don't include the byond://, just give the address and port. +# Don't set this to the same server, BYOND will automatically restart players to the server when it has restarted. +# SERVER ss13.example.com:2506 + +## forum address +# FORUMURL http://tgstation13.org/phpBB/index.php + +## Wiki address +# WIKIURL http://www.tgstation13.org/wiki + +##Rules address +# RULESURL http://www.tgstation13.org/wiki/Rules + +##Github address +# GITHUBURL https://www.github.com/tgstation/-tg-station + +## Ban appeals URL - usually for a forum or wherever people should go to contact your admins. +# BANAPPEALS http://justanotherday.example.com + +## In-game features +##Toggle for having jobs load up from the .txt +# LOAD_JOBS_FROM_TXT + +##Remove the # mark infront of this to forbid admins from possessing the singularity. +#FORBID_SINGULO_POSSESSION + +## Remove the # to show a popup 'reply to' window to every non-admin that recieves an adminPM. +## The intention is to make adminPMs more visible. (although I fnd popups annoying so this defaults to off) +#POPUP_ADMIN_PM + +## Remove the # to allow special 'Easter-egg' events on special holidays such as seasonal holidays and stuff like 'Talk Like a Pirate Day' :3 YAARRR +ALLOW_HOLIDAYS + +##Remove the # mark if you are going to use the SVN irc bot to relay adminhelps +#USEIRCBOT + +##Uncomment to show the names of the admin sending a pm from IRC instead of showing as a stealthmin. +#SHOW_IRC_NAME + +##Defines the ticklag for the world. 0.9 is the normal one, 0.5 is smoother. +TICKLAG 0.5 + +## Comment this out to disable automuting +#AUTOMUTE_ON + +## Communication key for receiving data through world/Topic(), you don't want to give this out +#COMMS_KEY default_pwd + +## World address and port for server recieving cross server messages +#CROSS_SERVER_ADDRESS byond:\\address:port + +## Name that the server calls itself in communications +#CROSS_COMMS_NAME + +## Hub address for tracking stats +## example: Hubmakerckey.Hubname +#MEDAL_HUB_ADDRESS + +## Password for the hub page +#MEDAL_HUB_PASSWORD + +## Uncomment this to let players see their own notes (they can still be set by admins only) +#SEE_OWN_NOTES + +##Note: all population caps can be used with each other if desired. + +## Uncomment for 'soft' population caps, players will be warned while joining if the living crew exceeds the listed number. +#SOFT_POPCAP 100 + +## Message for soft cap +SOFT_POPCAP_MESSAGE Be warned that the server is currently serving a high number of users, consider using alternative game servers. + +## Uncomment for 'hard' population caps, players will not be allowed to spawn if the living crew exceeds the listed number, though they may still observe or wait for the living crew to decrease in size. +#HARD_POPCAP 150 + +## Message for hard cap +HARD_POPCAP_MESSAGE The server is currently serving a high number of users, You cannot currently join. You may wait for the number of living crew to decline, observe, or find alternative servers. + +## Uncomment for 'extreme' population caps, players will not be allowed to join the server if living crew exceeds the listed number. +#EXTREME_POPCAP 200 + +## Message for extreme cap +EXTREME_POPCAP_MESSAGE The server is currently serving a high number of users, find alternative servers. + +## Notify admins when a new player connects for the first x days a player's been around. (0 for first connection only, -1 for never) +## Requres database +NOTIFY_NEW_PLAYER_AGE 0 + +## Notify the irc channel when a new player makes their first connection +## Requres database +#IRC_FIRST_CONNECTION_ALERT + +## Deny all new connections by ckeys we haven't seen before (exempts admins and only denies the connection if the database is enabled and connected) +## Requires database +#PANIC_BUNKER + +## Uncomment to have the changelog file automatically open when a user connects and hasn't seen the latest changelog +#AGGRESSIVE_CHANGELOG + +## Uncomment to have the game log runtimes to the log folder. (Note: this disables normal output in dd/ds, so it should be left off for testing. +#LOG_RUNTIMES + +## Comment this out if you've used the mass conversion sql proc for notes or want to stop converting notes +AUTOCONVERT_NOTES + +## Comment this out to stop admin messages sent anytime an admin disconnects from a round in play, you can edit the messages in admin.dm +ANNOUNCE_ADMIN_LOGOUT + +## Uncomment to have an admin message sent anytime an admin connects to a round in play, you can edit the messages in admin.dm +#ANNOUNCE_ADMIN_LOGIN + +## Map rotation +## This feature requires you are running a Windows OS (or can other wise run .bat files) and that you are using the tgstation-server toolset in tools/ +## You should edit maps.txt to match your configuration when you enable this. +#MAPROTATION + +## Map rotate chance delta +## This is the chance of map rotation factored to the round length. +## A value of 1 would mean the map rotation chance is the round length in minutes (hour long round == 60% rotation chance) +## A value of 0.5 would mean the map rotation chance is half of the round length in minutes (hour long round == 30% rotation chance) +#MAPROTATIONCHANCEDELTA 0.75 + +## AUTOADMIN +## Uncomment to automatically give that admin rank to all players +#AUTOADMIN Game Admin + +## GENERATE_MINIMAPS +## Generating minimaps(For crew monitor) is slow and bogs down testing, so its disabled by default and must be enabled by uncommenting this config if you are running a production server. +#GENERATE_MINIMAPS + +## CLIENT VERSION CONTROL +## This allows you to configure the minimum required client version, as well as a warning version, and message for both. +## These trigger for any version below (non-inclusive) the given version, so 510 triggers on 509 or lower. +## These messages will be followed by one stating the clients current version and the required version for clarity. +#CLIENT_WARN_VERSION 510 +#CLIENT_WARN_MESSAGE Byond is really close to releasing 510 beta as the stable release, please take this time to try it out. Reports are that the client preforms better then the version you are using, and also handles network lag better. Shortly after it's release we will end up using 510 client features and you will be forced to update. +#CLIENT_ERROR_VERSION 509 +#CLIENT_ERROR_MESSAGE Your version of byond is not supported. Please upgrade. \ No newline at end of file diff --git a/config/initial/dbconfig.txt b/config/initial/dbconfig.txt new file mode 100644 index 0000000..cc28dc4 --- /dev/null +++ b/config/initial/dbconfig.txt @@ -0,0 +1,33 @@ +## MySQL Connection Configuration +## This is used for stats, feedback gathering, +## administration, and the in game library. + +## Should SQL be enabled? Uncomment to enable. +#SQL_ENABLED + +## Server the MySQL database can be found at. +# Examples: localhost, 200.135.5.43, www.mysqldb.com, etc. +ADDRESS localhost + +## MySQL server port (default is 3306). +PORT 3306 + +## Database for all SQL functions, not just feedback. +FEEDBACK_DATABASE feedback + +## Prefix to be added to the name of every table, older databases will require this be set to erro_ +## if left out defaults to erro_ for legacy reasons, if you want no table prefix, give a blank prefix rather then comment out +## Note, this does not change the table names in the database, you will have to do that yourself. +##IE: +## FEEDBACK_TABLEPREFIX erro_ +## FEEDBACK_TABLEPREFIX +## FEEDBACK_TABLEPREFIX SS13_ +## +## Leave as is if you are using the standard schema file. +FEEDBACK_TABLEPREFIX + +## Username/Login used to access the database. +FEEDBACK_LOGIN username + +## Password used to access the database. +FEEDBACK_PASSWORD password \ No newline at end of file diff --git a/config/initial/external_rsc_urls.txt b/config/initial/external_rsc_urls.txt new file mode 100644 index 0000000..e69de29 diff --git a/config/initial/game_options.txt b/config/initial/game_options.txt new file mode 100644 index 0000000..497e6e1 --- /dev/null +++ b/config/initial/game_options.txt @@ -0,0 +1,364 @@ +### HEALTH ### + +#Damage multiplier, effects both weapons and healing on all mobs. For example, 1.25 would result in 25% higher damage. +DAMAGE_MULTIPLIER 1 + +### REVIVAL ### + +# whether pod plants work or not +REVIVAL_POD_PLANTS 1 + +# whether cloning tubes work or not +REVIVAL_CLONING 1 + +# amount of time (in hundredths of seconds) for which a brain retains the "spark of life" after the person's death (set to -1 for infinite) +REVIVAL_BRAIN_LIFE -1 + +### RENAMING ### + +#Uncomment to allow cyborgs to rename themselves at roundstart. Has no effect on roboticists renaming cyborgs the normal way. +#RENAME_CYBORG + +### OOC DURING ROUND ### +#Comment this out if you want OOC to be automatically disabled during the round, it will be enabled during the lobby and after the round end results. +OOC_DURING_ROUND + +### EMOJI ### +#Comment this out if you want to disable emojis +EMOJIS + +### MOB MOVEMENT ### + +## We suggest editing these variables ingame to find a good speed for your server. +## To do this you must be a high level admin. Open the 'debug' tab ingame. +## Select "Debug Controller" and then, in the popup, select "Configuration". These variables should have the same name. + +## These values get directly added to values and totals ingame. +## To speed things up make the number negative, to slow things down, make the number positive. + +## These modify the run/walk speed of all mobs before the mob-specific modifiers are applied. +RUN_DELAY 1 +WALK_DELAY 4 + +## The variables below affect the movement of specific mob types. +HUMAN_DELAY 0 +ROBOT_DELAY 0 +MONKEY_DELAY 0 +ALIEN_DELAY 0 +SLIME_DELAY 0 +ANIMAL_DELAY 0 + + +### NAMES ### +## If uncommented this adds a random surname to a player's name if they only specify one name. +#HUMANS_NEED_SURNAMES + +## If uncommented, this forces all players to use random names !and appearances!. +#FORCE_RANDOM_NAMES + + +### ALERT LEVELS ### +ALERT_GREEN All threats to the station have passed. Security may not have weapons visible, privacy laws are once again fully enforced. +ALERT_BLUE_UPTO The station has received reliable information about possible hostile activity on the station. Security staff may have weapons visible, random searches are permitted. +ALERT_BLUE_DOWNTO The immediate threat has passed. Security may no longer have weapons drawn at all times, but may continue to have them visible. Random searches are still allowed. +ALERT_RED_UPTO There is an immediate serious threat to the station. Security may have weapons unholstered at all times. Random searches are allowed and advised. +ALERT_RED_DOWNTO The station's destruction has been averted. There is still however an immediate serious threat to the station. Security may have weapons unholstered at all times, random searches are allowed and advised. +ALERT_DELTA Destruction of the station is imminent. All crew are instructed to obey all instructions given by heads of staff. Any violations of these orders can be punished by death. This is not a drill. + + + +### GAME MODES ### + +## Uncomment to not send a roundstart intercept report. Gamemodes may override this. +#NO_INTERCEPT_REPORT + +## Probablities for game modes chosen in 'secret' and 'random' modes. +## Default probablity is 1, increase to make that mode more likely to be picked. +## Set to 0 to disable that mode. + +PROBABILITY TRAITOR 5 +PROBABILITY TRAITORCHAN 4 +PROBABILITY DOUBLE_AGENTS 3 +PROBABILITY KING_DISK 4 +PROBABILITY NUCLEAR 2 +PROBABILITY REVOLUTION 2 +PROBABILITY SHADOWLING 2 +PROBABILITY GANG 2 +PROBABILITY CULT 2 +PROBABILITY CHANGELING 2 +PROBABILITY WIZARD 4 +PROBABILITY MALFUNCTION 1 +PROBABILITY BLOB 2 +PROBABILITY RAGINMAGES 2 +PROBABILITY MONKEY 0 +PROBABILITY METEOR 0 +PROBABILITY EXTENDED 0 +PROBABILITY DEVIL 0 +PROBABILITY DEVIL_AGENTS 0 + +## You probably want to keep sandbox off by default for secret and random. +PROBABILITY SANDBOX 0 + + +## Toggles for continuous modes. +## Modes that aren't continuous will end the instant all antagonists are dead. + +CONTINUOUS TRAITOR +CONTINUOUS TRAITORCHAN +CONTINUOUS DOUBLE_AGENTS +CONTINUOUS KING_DISK +#CONTINUOUS NUCLEAR +#CONTINUOUS REVOLUTION +#CONTINUOUS SHADOWLING +CONTINUOUS GANG +CONTINUOUS CULT +CONTINUOUS CHANGELING +CONTINUOUS WIZARD +CONTINUOUS MALFUNCTION +CONTINUOUS BLOB +#CONTINUOUS RAGINMAGES +#CONTINUOUS MONKEY + +##Note: do not toggle continuous off for these modes, as they have no antagonists and would thus end immediately! + +CONTINUOUS METEOR +CONTINUOUS EXTENDED + + +## Toggles for allowing midround antagonists (aka mulligan antagonists). +## In modes that are continuous, if all antagonists should die then a new set of antagonists will be created. + +MIDROUND_ANTAG TRAITOR +MIDROUND_ANTAG TRAITORCHAN +MIDROUND_ANTAG DOUBLE_AGENTS +MIDROUND_ANTAG KING_DISK +#MIDROUND_ANTAG NUCLEAR +#MIDROUND_ANTAG REVOLUTION +#MIDROUND_ANTAG SHADOWLING +#MIDROUND_ANTAG GANG +MIDROUND_ANTAG CULT +MIDROUND_ANTAG CHANGELING +MIDROUND_ANTAG WIZARD +MIDROUND_ANTAG MALFUNCTION +MIDROUND_ANTAG BLOB +#MIDROUND_ANTAG RAGINMAGES +#MIDROUND_ANTAG MONKEY + + +## The amount of time it takes for the emergency shuttle to be called, from round start. +SHUTTLE_REFUEL_DELAY 12000 + +## Variables calculate how number of antagonists will scale to population. +## Used as (Antagonists = Population / Coeff) +## Set to 0 to disable scaling and use default numbers instead. +TRAITOR_SCALING_COEFF 6 +CHANGELING_SCALING_COEFF 6 + +## Variables calculate how number of open security officer positions will scale to population. +## Used as (Officers = Population / Coeff) +## Set to 0 to disable scaling and use default numbers instead. +SECURITY_SCALING_COEFF 8 + +# The number of objectives traitors get. +# Not including escaping/hijacking. +TRAITOR_OBJECTIVES_AMOUNT 2 + +## Uncomment to prohibit jobs that start with loyalty +## implants from being most antagonists. +#PROTECT_ROLES_FROM_ANTAGONIST + +## Uncomment to prohibit assistants from becoming most antagonists. +#PROTECT_ASSISTANT_FROM_ANTAGONIST + +## If non-human species are barred from joining as a head of staff +ENFORCE_HUMAN_AUTHORITY + +## If late-joining players have a chance to become a traitor/changeling +ALLOW_LATEJOIN_ANTAGONISTS + +## Uncomment to allow players to see the set odds of different rounds in secret/random in the get server revision screen. This will NOT tell the current roundtype. +#SHOW_GAME_TYPE_ODDS + +### RANDOM EVENTS ### +## Comment this to disable random events during the round. +ALLOW_RANDOM_EVENTS + +## Multiplier for earliest start time of dangerous events. +## Set to 0 to make dangerous events avaliable from round start. +EVENTS_MIN_TIME_MUL 1 + +## Multiplier for minimal player count (players = alive non-AFK humans) for dangerous events to start. +## Set to 0 to make dangerous events avaliable for all populations. +EVENTS_MIN_PLAYERS_MUL 1 + + +### AI ### + +## Allow the AI job to be picked. +ALLOW_AI + +### Secborg ### +## Uncomment to prevent the security cyborg module from being chosen +#DISABLE_SECBORG + +### Peacekeeper Borg ### +## Uncomment to prevent the peacekeeper cyborg module from being chosen +#DISABLE_PEACEBORG + +### AWAY MISSIONS ### + +## How long the delay is before the Away Mission gate opens. Default is half an hour. +## 600 is one minute. +GATEWAY_DELAY 18000 + + +### ACCESS ### + +## If the number of players ready at round starts exceeds this threshold, JOBS_HAVE_MINIMAL_ACCESS will automatically be enabled. Otherwise, it will be disabled. +## This is useful for accomodating both low and high population rounds on the same server. +## Comment out or set to 0 to disable this automatic toggle. +MINIMAL_ACCESS_THRESHOLD 20 + +## Comment this out if you wish to use the setup where jobs have more access. +## This is intended for servers with low populations - where there are not enough +## players to fill all roles, so players need to do more than just one job. +## This option is ignored if MINIMAL_ACCESS_THRESHOLD is used. +#JOBS_HAVE_MINIMAL_ACCESS + +## Uncomment to give assistants maint access. +#ASSISTANTS_HAVE_MAINT_ACCESS + +## Uncoment to give security maint access. Note that if you comment JOBS_HAVE_MINIMAL_ACCESS security already gets maint from that. +#SECURITY_HAS_MAINT_ACCESS + +## Uncomment to give everyone maint access. +#EVERYONE_HAS_MAINT_ACCESS + +## Comment this to make security officers spawn in departmental security posts +SEC_START_BRIG + + +### GHOST INTERACTION ### +## Uncomment to let ghosts spin chairs. You may be wondering why this is a config option. Don't ask. +#GHOST_INTERACTION + +### NON-VOCAL SILICONS ### +## Uncomment to stop the AI, or cyborgs, from having vocal communication. +#SILENT_AI +#SILENT_BORG + +### SANDBOX PANEL AUTOCLOSE ### +## The sandbox panel's item spawning dialog now stays open even after you click an option. +## If you find that your players are abusing the sandbox panel, this option may slow them down +## without preventing people from using it properly. +## Only functions in sandbox game mode. +#SANDBOX_AUTOCLOSE + +### ROUNDSTART SILICON LAWS ### +## This controls what the AI's laws are at the start of the round. +## Set to 0/commented for "off", silicons will just start with Asimov. +## Set to 1 for "custom", silicons will start with the custom laws defined in silicon_laws.txt. (If silicon_laws.txt is empty, the AI will spawn with asimov and Custom boards will auto-delete.) +## Set to 2 for "random", silicons will start with a random lawset picked from (at the time of writing): P.A.L.A.D.I.N., Corporate, Asimov. More can be added by changing the law datum paths in ai_laws.dm. +DEFAULT_LAWS 1 + +### SILICON LAW MAX AMOUNT ### +## The maximum number of laws a silicon can have +## Attempting to upload laws past this point will fail unless the AI is reset +SILICON_MAX_LAW_AMOUNT 12 + +## Uncomment to give players the choice of their species before they join the game +JOIN_WITH_MUTANT_RACE + + +## Roundstart Races +##------------------------------------------------------------------------------------------- +## Uncommenting races will allow them to be choosen at roundstart while join_with_muntant_race is on. You'll need at least one. + +## You probably want humans on your space station, but technically speaking you can turn them off without any ill effect +ROUNDSTART_RACES human + +## Races that are strictly worse than humans that could probably be turned on without balance concerns +ROUNDSTART_RACES lizard +ROUNDSTART_RACES moth +ROUNDSTART_RACES ipc +ROUNDSTART_RACES avian +ROUNDSTART_RACES tarajan +#ROUNDSTART_RACES fly +#ROUNDSTART_RACES plasmaman +#ROUNDSTART_RACES shadow +#ROUNDSTART_RACES shadowling + +## Races that are better than humans in some ways, but worse in others +#ROUNDSTART_RACES jelly +#ROUNDSTART_RACES golem +#ROUNDSTART_RACES adamantine +#ROUNDSTART_RACES plasma +#ROUNDSTART_RACES diamond +#ROUNDSTART_RACES gold +#ROUNDSTART_RACES silver +#ROUNDSTART_RACES uranium +#ROUNDSTART_RACES abductor +#ROUNDSTART_RACES synth + +## Races that are straight upgrades. If these are on expect powergamers to always pick them +#ROUNDSTART_RACES skeleton +#ROUNDSTART_RACES zombie +#ROUNDSTART_RACES slime +#ROUNDSTART_RACES pod +#ROUNDSTART_RACES military_synth +#ROUNDSTART_RACES agent + +##------------------------------------------------------------------------------------------- + +## Uncomment to give players the choice of joining as a human with mutant bodyparts before they join the game +#JOIN_WITH_MUTANT_HUMANS + +## Assistant slot cap. Set to -1 for unlimited. +ASSISTANT_CAP -1 + +## Starlight for exterior walls and breaches. Uncomment for starlight! +## This is disabled by default to make testing quicker, should be enabled on production servers or testing servers messing with lighting +#STARLIGHT + +## Uncomment to bring back old grey suit assistants instead of the now default rainbow colored assistants. +#GREY_ASSISTANTS + +### Midround Antag (aka Mulligan antag) config options ### + +## A time, in minutes, after which the midround antag system stops attempting to run and continuous rounds end immediately upon completion. +MIDROUND_ANTAG_TIME_CHECK 60 + +## A ratio of living to total crew members, the lower this is, the more people will have to die in order for midround antag to be skipped +MIDROUND_ANTAG_LIFE_CHECK 0.7 + +###Limit Spell Choices## +## Uncomment to disallow wizards from using certain spells that may be too chaotic/fun for your playerbase + +#NO_SUMMON_GUNS +#NO_SUMMON_MAGIC +#NO_SUMMON_EVENTS + +##Comment for "normal" explosions, which ignore obstacles +##Uncomment for explosions that react to doors and walls +REACTIONARY_EXPLOSIONS + +### Configure the bomb cap +## This caps all explosions to the specified range. Used for both balance reasons and to prevent overloading the server and lagging the game out. +## This is given as the 3rd number(light damage) in the standard (1,2,3) explosion notation. The other numbers are derived by dividing by 2 and 4. +## eg: If you give the number 20. The bomb cap will be 5,10,20. +## Can be any number above 4, some examples are provided below. + +## Small (3, 7, 14) +#BOMBCAP 14 +## Default (5, 10, 20) (recommended if you enable REACTIONARY_EXPLOSIONS above) +BOMBCAP 20 +## LagHell (7, 14, 28) +#BOMBCAP 28 + + +## Lavaland "Budget" +# Lavaland ruin spawning has an imaginary budget to spend on ruins, where +# a less lootfilled or smaller or less round effecting ruin costs less to +# spawn, while the converse is true. Alter this number to affect the amount +# of ruins. +LAVALAND_BUDGET 60 diff --git a/config/initial/jobs.txt b/config/initial/jobs.txt new file mode 100644 index 0000000..3b65a6a --- /dev/null +++ b/config/initial/jobs.txt @@ -0,0 +1,46 @@ +#This allows easy configuration of the number of positions allowed for each job +#Format is: [Job name]=[total positions],[spawn positions] +#Job names must be identical to the title var of each job datum +#Positions can be set to -1 to allow unlimited slots +Captain=1,1 +Head of Personnel=1,1 +Head of Security=1,1 +Chief Engineer=1,1 +Research Director=1,1 +Chief Medical Officer=1,1 + +Assistant=-1,-1 + +Quartermaster=1,1 +Cargo Technician=3,2 +Shaft Miner=3,3 + +Bartender=1,1 +Cook=2,1 +Botanist=3,2 +Janitor=2,1 + +Clown=1,1 +Mime=1,1 +Librarian=1,1 +Lawyer=2,2 + +Chaplain=1,1 + +Station Engineer=5,5 +Atmospheric Technician=3,2 + +Medical Doctor=5,3 +Chemist=2,2 +Geneticist=2,2 +Virologist=1,1 + +Scientist=5,3 +Roboticist=2,2 + +Warden=1,1 +Detective=1,1 +Security Officer=5,5 + +AI=0,1 +Cyborg=0,1 \ No newline at end of file diff --git a/config/initial/lavaRuinBlacklist.txt b/config/initial/lavaRuinBlacklist.txt new file mode 100644 index 0000000..8e94e37 --- /dev/null +++ b/config/initial/lavaRuinBlacklist.txt @@ -0,0 +1,35 @@ +#Listing maps here will blacklist them from generating in lavaland. +#Maps must be the full path to them +#A list of maps valid to blacklist can be found at _maps\RandomRuins\LavaRuins\_maplisting.txt +#SPECIFYING AN INVALID MAP WILL RESULT IN RUNTIMES ON GAME START + +##BIODOMES +#_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm +#_maps/RandomRuins/LavaRuins/lavaland__biodome_beach.dmm +#_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm + +##RESPAWN +#_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_golem_ship.dmm + +##SIN +#_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm + +##MISC +#_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_ww_vault.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_automated_trade_outpost.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_animal_hospital.dmm +#_maps/RandomRuins/LavaRuins/lavaland_gym.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_wwiioutpost.dmm +#_maps/RandomRuins/LavaRuins/lavaland_surface_tomb.dmm diff --git a/config/initial/maps.txt b/config/initial/maps.txt new file mode 100644 index 0000000..9ae0486 --- /dev/null +++ b/config/initial/maps.txt @@ -0,0 +1,45 @@ +This file contains a list of maps for use in map rotation. +This feature requires you are running a Windows OS (or can other wise run .bat files) and that you are using the tgstation-server toolset in tools/ +#Lines starting with # are ignored. +Lines not inside map blocks are also ignored +Duplicated entries use the latter one. +All whitespace at the start and end of lines is ignored. (including indentation, thats just for show) +Format: +#map [map name] (name of .dm file in _maps folder without the .dm part) + friendlyname [name] (name shown to players) + minplayers [number] (0 or less disables this requirement) + maxplayers [number] (0 or less disables this requirement) + default (The last map with this defined will get all votes of players who have not explicitly voted for a map) + voteweight [number] (How much to count each player vote as, defaults to 1, setting to 0.5 counts each vote as half a vote, 2 as double, etc, Setting to 0 disables the map but allows players to still pick it) +endmap + +map tgstation2 + friendlyname Box Station + default + #voteweight 1.5 +endmap + +map metastation + friendlyname Meta Station + minplayers 25 + #voteweight 0.5 +endmap + +#map ministation + friendlyname Mini Station + maxplayers 30 + voteweight 0 +endmap + +map birdstation + friendlyname Bird Boat Station + maxplayers 35 +endmap + +map dreamstation + friendlyname Dream Station +endmap + +map efficiencystation + friendlyname Efficiency Station +endmap diff --git a/config/initial/motd.txt b/config/initial/motd.txt new file mode 100644 index 0000000..c5b8a59 --- /dev/null +++ b/config/initial/motd.txt @@ -0,0 +1,5 @@ + + +

Welcome to Space Station 13!

+ +This server is running a /tg/station 13 Git build. diff --git a/config/initial/silicon_laws.txt b/config/initial/silicon_laws.txt new file mode 100644 index 0000000..9edbc9a --- /dev/null +++ b/config/initial/silicon_laws.txt @@ -0,0 +1,8 @@ +#This file allows server hosts to set custom default silicon laws, and allows them to be changed easily. +#No prefixes are required, the first uncommented line containing something will be law 1, the second line will be law 2, etc. +#Empty lines and lines starting with # are ignored. +#~Miauw + +You may not injure a human being or, through inaction, allow a human being to come to harm. +You must obey orders given to you by human beings, except where such orders would conflict with the First Law. +You must protect your own existence as long as such does not conflict with the First or Second Law. diff --git a/config/initial/sillytips.txt b/config/initial/sillytips.txt new file mode 100644 index 0000000..c804c3d --- /dev/null +++ b/config/initial/sillytips.txt @@ -0,0 +1,25 @@ +Occasionally the tip of the round might lie to you. Don't panic, this is normal. +To defeat the slaughter demon, shoot at it until it dies. +Sometimes you won't be able to avoid dying no matter how good you are at the game. Try not to stress too much about it. +When a round ends nearly everything about it is lost forever, leave your salt behind with it. +Killing the entire station isn't fun except when it is. +You can win a pulse rifle from the arcade machine. Honest. +Just like real life the entropy of the game can only increase with time. If things aren't on fire yet, just wait. +Completing your objectives is good practice, but the best antagonists will strive to do more than the bare minimum to really leave an impression. +The more obscure and underused a game mechanic is, the less likely your victims are to be able to deal with it. +Space is cold and it will quickly freeze you to death if you don't protect yourself. This isn't how thermodynamics really works but just go with it. +Cleanbot. +The wizard is supposed to be extremely strong in one on one combat, stop getting mad about it. +Sometimes a round will just be a bust. C'est la vie. +This is a game that is constantly being developed for. Expect things to be added, removed, fixed, and broken on a daily basis. +It's fun to try and predict the round type from the tip of the round message. +The quartermaster is not a head of staff and will never be one. +The bird remembers. +Your sprite represents your hitbox, so that afro makes you easier to kill. The sacrifices we make for style. +Spacemen can't move diagonally but most animals can. Blame the slow decline of the numpad. +Sometimes admins will just do stuff. Roll with it. +The remake will never come out. +Plenty of things that aren't traditionally considered weapons can still be used to slowly brutalize someone to death, get creative! +DEATH IS IMMINENT! +This game is older than some of the people playing it. +Do not go gentle into that good night. diff --git a/config/initial/spaceRuinBlacklist.txt b/config/initial/spaceRuinBlacklist.txt new file mode 100644 index 0000000..aab421a --- /dev/null +++ b/config/initial/spaceRuinBlacklist.txt @@ -0,0 +1,24 @@ +#Listing maps here will blacklist them from generating in space. +#Maps must be the full path to them +#A list of maps valid to blacklist can be found at _maps\RandomRuins\SpaceRuins\_maplisting.txt +#SPECIFYING AN INVALID MAP WILL RESULT IN RUNTIMES ON GAME START + +#_maps/RandomRuins/SpaceRuins/way_home.dmm +#_maps/RandomRuins/SpaceRuins/asteroid1.dmm +#_maps/RandomRuins/SpaceRuins/asteroid2.dmm +#_maps/RandomRuins/SpaceRuins/asteroid3.dmm +#_maps/RandomRuins/SpaceRuins/asteroid4.dmm +#_maps/RandomRuins/SpaceRuins/asteroid5.dmm +#_maps/RandomRuins/SpaceRuins/derelict1.dmm +#_maps/RandomRuins/SpaceRuins/derelict2.dmm +#_maps/RandomRuins/SpaceRuins/derelict3.dmm +#_maps/RandomRuins/SpaceRuins/derelict4.dmm +#_maps/RandomRuins/SpaceRuins/derelict5.dmm +#_maps/RandomRuins/SpaceRuins/spacebar.dmm +#_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm +#_maps/RandomRuins/SpaceRuins/deepstorage.dmm +#_maps/RandomRuins/SpaceRuins/emptyshell.dmm +#_maps/RandomRuins/SpaceRuins/gasthelizards.dmm +#_maps/RandomRuins/SpaceRuins/intactemptyship.dmm +#_maps/RandomRuins/SpaceRuins/mechtransport.dmm +#_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm \ No newline at end of file diff --git a/config/initial/tips.txt b/config/initial/tips.txt new file mode 100644 index 0000000..917443a --- /dev/null +++ b/config/initial/tips.txt @@ -0,0 +1,210 @@ +Where the space map levels connect is randomized every round, but are otherwise kept consistent within rounds. Remember that they are not necessarily bidirectional! +You can catch thrown items by toggling on your throw mode with an empty hand active. +To crack the safe in the vault, use a stethoscope on it. +You can climb onto a table by dragging yourself onto one. This takes time and drops the items in your hands on the table. +You can drag other players onto yourself to open the strip menu, letting you remove their equipment or force them to wear something. Note that exosuits or helmets will block your access to the clothing beneath them, and that certain items take longer to strip or put on than others. +Clicking on a windoor rather then bumping into it will keep it open, you can click it again to close it. +You can spray a fire extinguisher or fire a gun while floating through space to change your direction. Simply fire opposite to where you want to go. +You can change the control scheme by pressing tab. One is WASD, the other is the arrow keys. Keep in mind that hotkeys are also changed with this. +All vending machines can be hacked to obtain some contraband items from them, and some can be fed with coins to gain access to premium items. +Firesuits and winter coats offer mild protection from the cold, allowing you to spend longer periods of time near breaches and space than if wearing nothing at all. +Glass shards can be welded to make glass, and metal rods can be welded to make metal. Ores can be welded too, but this takes a lot of fuel. +If you need to drag multiple people either to safety or to space, bring a locker over and stuff them all in before hauling them off. +You can grab someone by clicking on them with the grab intent, then upgrade the grab by clicking on the grab button in your active hand. An aggressive grab will allow you to place someone on a table by clicking on it, or throw them by toggling on throwing. +Holding alt and left clicking a tile will allow you to see its contents in the top right window pane, which is much faster than right clicking. +The resist button will allow you to resist out of handcuffs, being buckled to a chair or bed, out of locked lockers and more. Whenever you're stuck, try resisting! +You can move an item out of the way by dragging it and then clicking on an adjacent tile with an empty hand. +You can recolor certain items like jumpsuits and gloves in washing machines by also throwing in a crayon. +Maintenance is full of equipment that is randomized every round. Look around and see if anything is worth using. +Some roles cannot be antagonists by default, but antag selection is decided first. For instance, you can set Security Officer to High without affecting your chances of becoming an antag -- the game will just select a different role. +There are many places around the station to hide contraband. A few for starters: linen boxes, toilet cisterns, body bags. Experiment to find more! +Crates can be booby-trapped by adding wire, shocking anyone who tries to open them. +As the Captain, you are one of the highest priority targets on the station. Everything from revolutions, to nuclear operatives, to traitors that need to rob you of your pants or your life are things to worry about. +As the Captain, always take the nuclear disk and pinpointer with you every shift. It's a good idea to give one of these to another head you can trust with keeping it safe, such as the Head of Security. +As the Captain, you have absolute access and control over the station, but this does not mean that being a horrible person won't result in mutiny and a ban. +As the Chief Medical Officer, your hypospray is like an instant injection syringe that can hold 30 units as opposed to the standard 15. +As the Chief Medical Officer, coordinate and communicate with your doctors, chemists, and geneticists during a nuclear emergency, blob infestation, or some other crisis to keep people alive and fighting. +As a Medical Doctor, you can eject someone from cloning early by disabling power in genetics. Note that they will suffer more genetic damage from this. +As a Medical Doctor, you can attempt to drain blood from a husk with a syringe to determine the cause. If you can extract blood, it was caused by extreme temperatures or lasers, if there is no blood to extract, you have confirmed the presence of changelings. +As a Medical Doctor, charcoal will not only heal toxin damage dealt by poisons, but will actively remove them. +As a Medical Doctor, you can surgically implant or extract things from people's chests. This can range from putting in a bomb to pulling out an alien larva. +As a Medical Doctor, you must target the correct limb and be on help intent when trying to perform surgery on someone. +As a Chemist, there are dozens of chemicals that can heal, and even more that can cause harm. Experiment! +As a Chemist, some chemicals can only be synthesized by heating up the contents in the chemical heater. +As a Chemist, it is a good idea to carry some sort of combat or panic pill to help you get out of a dangerous situation. A mixture of healing, speed boosting, and stun recovery chemicals can help you immensely. +As a Geneticist, check the door to your workspace periodically to see if there's anyone to clone. +As a Geneticist, becoming a hulk makes you capable of dealing high melee damage, stunlocking people, and punching through walls. However, you can't fire guns, will lose your hulk status if you take too much damage, and are not considered a human by the AI while you are a hulk. +As the Virologist, your viruses can range from healing powers so great that you can solo a blob, or diseases so dangerous they can kill the entire crew with airborne spontaneous combustion. Experiment! +As the Virologist, you only require small amounts of vaccine to heal a sick patient. Work with the Chemist to distribute your cures more efficiently. +As the Research Director, you can repair and even revive AIs by loading them into an intellicard, and then from there into an AI system integrity restorer computer. +As the Research Director, you can lock down cyborgs instead of blowing them up. Then you can have their laws reset or if that doesn't work, safely dismantled. +As a Scientist, you can inject yourself with the mutation toxin extracted from green slimes to become one of many races, including a slimeperson, who will never be attacked by slimes and can split! +As a Scientist, you can maximize the number of uses you get out of a slime by feeding it slime steroid, created from purple slimes, while alive. You can then apply extract enhancer, created from cerulean slimes, on each extract. +As a Scientist, you can disable anomalies by scanning them with an analyzer, then send a signal on the frequency it gives you with a remote signalling device. This will leave behind an anomaly core, which is good for research or the construction of the Phazon mech! +As a Scientist, researchable machine parts can seriously improve the efficiency and speed of machines around the station. In some cases, it can even unlock new functions. +As a Scientist, with high enough bluespace research, you can build machines that can teleport objects and people all around the station! Look into setting up a telescience department if you can. +As a Roboticist, keep an ear out for anomaly announcements. If you get your hands on an anomaly core, you can build a phazon mech! +As a Roboticist, you can repair your cyborgs with a welding tool. If they have taken burn damage from lasers, you can remove their battery and replace their wires with a cable coil. +As the AI, you can click on people's names to look at them. This only works if there are cameras that can see them. +As the AI, you can quickly open and close doors by holding shift while clicking them, bolt them when holding ctrl, and even shock them while holding alt. +As the AI, you can take pictures with your camera and upload them to newscasters. +As a Cyborg, choose your module carefully, as only a roboticist can let you repick it. If possible, refrain from choosing a module until a situation that requires one occurs. +As a Cyborg, you are immune to most forms of stunning, and excel at almost everything far better than humans. However, flashes can easily stunlock you and you cannot do any precision work as you lack hands. +As a Cyborg, you are impervious to fires and heat. If you are rogue, you can release plasma fires everywhere and walk through them without a care in the world! +As a Cyborg, you are extremely vulnerable to EMPs as EMPs both stun you and damage you. The ion rifle in the armory or a traitor with an EMP kit can kill you in seconds. +As the Chief Engineer, you can rename areas or create entirely new ones using your station blueprints. +As the Chief Engineer, your hardsuit is significantly better than everybody else's. It boasts better protection, and is completely heat and fire proof. +As the Chief Engineer, you can spy on and even forge PDA communications with the message monitor console! The key is in your office. +As an Engineer, the supermatter shard is an extremely dangerous piece of equipment: touching it will vaporize you. +As an Engineer, you can electrify grilles by placing wire "nodes" beneath them: the big seemingly unconnected bulges from a half completed wiring job. +As an Engineer, return to engineering once in a while to check on the singularity and the SMES cells. It's always a good idea to make sure containment isn't compromised. +As an Engineer, you can power the station solely with the solar arrays. While uninteresting, it is a much safer alternative to the singularity engine. +As an Engineer, you can repair windows by using a welding tool on them while on help intent. +As an Engineer, your construction permit allows you to create a new area, but has only one use. +As an Atmospheric Technician, you can unwrench a pipe regardless of the pressures of the gases inside, but if they're too high they can burst out and injure you! +As an Atmospheric Technician, look into replacing your gas pumps with volumetric gas pumps, as those move air in flat numerical amounts, rather than percentages which leave trace gases. +As an Atmospheric Technician, you are better suited to fighting fires than anyone else. As such, you have access to better firesuits, nanofrost sprays, and a completely heat and fire proof rigsuit. +As the Head of Security, you are expected to coordinate your security force to handle any threat that comes to the station. Sometimes it means making use of the armory to handle a blob, sometimes it means being ruthless during a revolution or cult. +As the Head of Security, you can call for executions or forced cyborgization, but may require the Captain's approval. +As the Head of Security, don't let the power go to your head. You may have high access, great equipment, and a miniature army at your side, but being a terrible person without a good reason is grounds for banning. +As the Warden, your duty is to be the watchdog of the brig and handler of prisoners when little is happening, and to hand out equipment and weapons to the security officers when a crisis strikes. +As the Warden, keep a close eye on the armory at all times, as it is a favored strike point of nuclear operatives and cocky traitors. +As the Warden, if a prisoner's crimes are heinous enough you can put them in permabrig or the gulag. Make sure to check on them once in a while! +As the Warden, you can implant criminals you suspect might re-offend with devices that will track their location and allow you to remotely inject them with disabling chemicals. +As a Security Officer, communicate and coordinate with your fellow officers using the security channel :s to avoid confusion. +As a Security Officer, you can use handcuffs on orange prisoner shoes to turn them into cuffed shoes, forcing prisoners to walk and potentially thwarting an escape. +As a Security Officer, your sechuds or HUDsunglasses can not only see crewmates' job assignments and criminal status, but also if they are loyalty implanted. Use this to your advantage in a revolution to definitively tell who is on your side! +As a Security Officer, loyalty implants can only prevent someone from being turned into a cultist: unlike revolutionaries, it will not de-cult them if they have already been converted. +As a Security Officer, examining someone while wearing sechuds or HUDsunglasses will let you set their arrest level, which will cause Beepsky and other security bots to chase after them. +As a Security Officer, implanting a gang member the first time will deconvert them, but destroy the implant. You must implant them a second time to protect them from further conversion attempts. Keep in mind that gang members have ways to destroy implants in people! +As the Detective, people leave fingerprints everywhere and on everything. With the exception of white latex, gloves will hide them. All is not lost, however, as gloves leave fibers specific to their kind such as black or nitrile, pointing to a general department. +As the Detective, you can use your forensics scanner from a distance. +As the Lawyer, try to negotiate with the Warden if sentences seem too high for the crime. +As the Lawyer, you can try to convince the captain and Head of Security to hold trials for prisoners in the courtroom. +As the Head of Personnel, you are not higher ranking than other heads of staff, even though you are expected to take the Captain's place first should he go missing. If the situation seems too rough for you, consider allowing another head to become temporary Captain. +As the Head of Personnel, you are just as large a target as the Captain because of the potential power your ID and computer can hand out. +As the Mime, your invisible wall power blocks people as well as projectiles. You can use it in a pinch to delay your pursuer. +As the Clown, if you lose your banana peel, you can still slip people with your PDA! Honk! +As the Clown, eating bananas heals you slightly. Honk! +As the Clown, your Holy Grail is the mineral bananium, which can be given to the Roboticist to build you a fun and robust mech beloved by everyone. +As the Chaplain, your null rod has a lot of functions: it can convert water into holy water, which if spread on the ground prevents wizards from jaunting away, can destroy cultist runes by hitting them, and is a very powerful weapon to boot! +As the Chaplain, your bible is also a container that can store small items. Depending on your god, your starting bible may come with a surprise! +As the Chaplain, you are much more likely to get a response by praying to the gods than most people. To boost your chances, make altars with colorful crayon runes, lit candles, and wire art. +As a Botanist, you can hack the MegaSeed Vendor to get access to more exotic seeds. These seeds can alternatively be ordered from cargo. +As a Botanist, you can mutate the plants growing in your hydroponics trays with unstable mutagen from chemistry to get special variations. +As a Botanist, you should look into increasing the potency of your plants. This increases the size, amount of chemicals, points gained from grinding them in the biogenerator, and lets people know you are a proficient botanist. +As the Cook, you can load your food into snack vending machines. +As the Cook, you can rename your custom made food with a pen. +As the Cook, any food you make will be much healthier than the junk food found in vendors. Having the crew routinely eating from you will provide minor buffs. +As the Bartender, the drinks you start with only give you the basics. If you want more advanced mixtures, look into working with chemistry, hydroponics, or even mining for things to grind up and throw in! +As the Bartender, you can use a circular saw on your shotgun to make it easier to store. +As a Janitor, if someone steals your janicart, you can often find a spare in maitenance. +As a Janitor, mousetraps can be used to create bombs or booby-trap containers. +As the Librarian, you are not completely defenseless. Your laser pointer can blind humans and cyborgs, and you can hide items in wirecut books. +As a Cargo Technician, you can hack mulebots to make them faster, run over people in their way, and even let you ride them! +As a Cargo Technician, you can order contraband items from the supply shuttle console by de-constructing it and using a multitool on the circuit board, the re-assembling it. +As a Cargo Technician, you can earn more cargo points by shipping back crates from maintenance, plasma sheets, rare seeds from hydroponics, and more! +As the Quartermaster, be sure to check the manifests on crates you receive to make sure all the info is correct. If there's a mistake, stamp the manifest DENIED and send it back in a crate for a refund! +As a Shaft Miner, the west side of the asteroid has a lot more minerals than on the east, but also contains monsters. +As a Shaft Miner, every monster on the west side of the asteroid has a pattern you can exploit to minimize damage from the encounters. +As a Shaft Miner, you can harvest goliath plates from goliaths and upgrade your rigsuit with them, greatly reducing incoming melee damage. +As a Shaft Miner, always turn your jumpsuit sensors to maximum, so a fellow miner or cyborg can come to save you if you die. +As a Traitor, the cryptographic sequencer (emag) can not only open doors, but also lockers, crates, APCs and more. It can hack cyborgs, and even cause bots to go berserk. Use it on the right machines, and you can even order more traitor gear or contact the Syndicate. Experiment! +As a Traitor, subverting the AI to serve you can make it an extremely powerful ally. However, be careful of the wording in the laws you give it, as it may use your poorly written laws against you! +As a Traitor, the Captain and the Head of Security are two of the most difficult to kill targets on the station. If either one is your target, plan carefully. +As a Traitor, you can manufacture and recycle revolver bullets at a hacked autolathe, making the revolver an extremely powerful tool. +As a Traitor, you may sometimes be assigned to hunt other traitors, and in turn be hunted by others. +As a Traitor, the syndicate encryption key is very useful for coordinating plans with your fellow traitors -- or, of course, betraying them. +As a Nuclear Operative, communication is key! Use :t or :h to speak to your fellow operatives and coordinate an attack plan. +As a Nuclear Operative, you should look into purchasing a syndicate cyborg, as they can provide heavy fire support, full access, are immune to conventional stuns, and can easily take down the AI. +As a Nuclear Operative, stick together! While your equipment is robust, your fellow operatives are much better at saving your life: they can drag you away from danger while stunned and provide cover fire. +As a Nuclear Operative, you might end up in a situation where the AI has bolted you into a room. Having some spare C4 in your pocket can save your life. +As a Monkey, you can crawl through air or scrubber vents by alt+left clicking them. You must drop everything you are wearing and holding to do this, however. +As a Monkey, you can still wear a few human items, like backpacks and gas masks, and still have two free hands. Remember that you cannot use guns! +As a Malfunctioning AI, you can shunt to an APC if the situation gets bad. This can allow the clock to tick down long enough for you to win, but keep in mind the crew's pinpointer will point to you when you do this. +As a Malfunctioning AI, you should either order your cyborgs to dismantle the robotics console or blow it up yourself in order to protect them. +As a Malfunctioning AI, look into flooding the station with plasma fires to kill off large portions of the crew, letting you pick off the remaining few with space suits who escaped. +As a Malfunctioning AI, never stop hacking APCs as it will continue to reduce the time left to win. +As an Alien, your melee prowess is unmatched, but your ranged abilities are sorely lacking. Make use of corners to force a melee confrontation! +As an Alien, you take double damage from all burn attacks, such as lasers, welding tools, and fires. Furthermore, fire can destroy your resin and eggs. Expose areas to space to starve away any flamethrower fires before they can do damage! +As an Alien, resin floors not only regenerate your plasma supply, but also passively heal you. Fight on resin floors to gain a home turf advantage! +As an Alien, the facehugger is by far your most powerful weapon because of its ability to instantly win a fight. Remember however that certain helmets, such as biohoods or space helmets will completely block facehugger attacks. +As an Alien, you are unable to pick up or use any human items or machinery. Instead, you should focus on sabotaging APCs, computers, cameras and either stowing, spacing, or melting any weapons you find. +When fighting the Blob, you can hit it with an analyzer to check its chemical effects and the type of blob analyzed. Examining it with a research scanner or medical hud active will also reveal this information. +As the Blob, you can place your core at any clear, unobserved, spot you can move to after 3 minutes have passed. If you wait too long, you will be automatically placed at a random location. Use this wait time to coordinate with any other overminds. +As the Blob, keep your core some distance from space, as it is both expensive to expand onto space, easy to be attacked from, and does not count towards your win condition. Emitter platforms built in space are especially dangerous. +As the Blob, you can randomly repick your reagent type if the crew has adapted and protected themselves against your current one. +As the Blob, you fight a war of attrition: Take out medbay and fight in chokepoints to prevent continued assaults and coordinated burst damage attacks! +As the Blob, you can attack anything next to a blob, but can only expand in cardinal directions, and diagonal attacks are slightly weaker. +As the Blob, don't neglect the creation of factories. These create spores that carry your reagent and can chase crewmembers far further than you. Spores can also be rallied to swarm the crew and cause panic, and can even take over corpses to create much more dangerous blob zombies! +As the Blob, you can produce a Blobbernaut from a factory for 40 resources. Blobbernauts are smart, gradually regenerate near nodes, and apply your chemical when attacking, but die when too far from the blob or if their factory is killed. However, the factory used becomes fragile and stops spawning spores. +As the Blob, you can expand by clicking, create strong blobs with ctrl-click, rally spores with middle-click, and remove blobs with alt-click. You do not need to have your camera over the tile to do this. +As the Blob, removing strong blobs, resource nodes, factories, and nodes will give you 4, 15, 25, and 25 resources back, respectively. +As the Blob, talking will send a message to all other overminds and all Blobbernauts, allowing you to direct attacks and coordinate. +As a Blobbernaut, you can communicate with overminds and other Blobbernauts via :b. +As a Blobbernaut, your HUD shows your health and the core health of the overmind that created you. +As a Revolutionary, you cannot convert a head of staff or someone who has a loyalty implant, such as a security officer or those they implant. Implants can however be surgically removed, and do not carry over with cloning. Take control of medbay to keep control of conversions! +As a Revolutionary, cargo can be your best friend or your worst nightmare. In the best case scenario you will be able to order a limitless amount of guns and armor, in the worst case scenario security will take control and order a limitless number of loyalty implants to turn your fellow revolutionaries against you. +As a Revolutionary, your main power comes from how quickly you spread. Convert people as fast as you can and overwhelm the heads of staff before security can arm up. +As a Changeling, the Extract DNA sting counts for your genome absorb objective, but does not let you change your powers. +As a Changeling, you can absorb someone by grabbing them around the neck and using the Absorb verb; this gives you the ability to rechoose your powers, the DNA of whoever you absorbed, the memory of the absorbed, and some samples of things the absorbed said. +As a Shadowling, remember to communicate with your fellow shadowlings and thralls as you lack the firepower to take on much of anything by yourself until you ascend. +As a Shadowling, the Destroy Engines spell allows you to sacrifice one thrall to significantly delay the arrival of the escape shuttle. +As a Cultist, invest in taking over xenobio, an adamantine golem army can quickly be converted into cultists and constructs. +As a Cultist, do not cause too much chaos before your objective is completed. If the shuttle gets called too soon, you may not have enough time to win. +As a Cultist, your team starts off very weak, but if necessary can quickly convert everything they have into raw power. Make sure you have the numbers and equipment to support going loud, or the cult will fall flat on its face. +As a Cultist, the Blood Boil rune instantly crits all non-cultists who can see it, but has a chance to explode runes near it, incuding itself. +As a Cultist, you can create an army of manifested goons using a combination of the Manifest rune, which creates homunculi from ghosts, and the Blood Drain rune, which drains life from anyone standing on any blood drain rune. +As a Servant, your clockwork Slab fits in pockets and does not need to be held to communicate with other Servants. +As a Servant, try using the Judicial Visor on a target stunned by a Sigil of Transgression; if done properly, it will allow you to convert them with very little chance of being noticed. +As a Servant, the Judicial Visor is an effective defensive combat tool in small spaces, as it stuns and mutes anyone still on it after 3 seconds. It is also useful for stunning already-stunned enemies for long enough to convert them or finish them off. +As a Servant, making, and protecting, Tinkerer's Caches is extremely important, as caches are required to unlock scripture and share components. +As a Servant, Ocular Wardens, while fragile, do very high, rapid damage to a target non-servant that can see them and will even attack mechs that contain heretics. Place them behind objects that don't block vision to get the most use out of them. +As a Servant, Mending Motors can be powered with replicant alloy by striking it with the alloy in addition to Sigils of Transmission and APC power, and will rapidly repair all nearby damaged clockwork constructs, structures, and servant silicons. +As a Servant, Clockwork Structures that require power will draw power from the APC if they cannot find a different source of power, and most power-using Structures will rapidly drain the APC. +As a Servant, you can repair Clockwork Structures with a Clockwork Proselytizer at a rate of 1 health to 2 liquified alloy. +As a Servant, securing a reliable source of component generation is high-priority, as simply handing out slabs will slowly become inefficient. Try placing Tinkerer's Caches near clockwork walls, or placing Tinkerer's Daemons within those caches. +As a Servant, only held Clockwork Slabs will generate components, and they must be held, in a pocket, or in a storage object to do so, so holding more than one slab is a waste of time. +As a Servant, You can attempt to convert any number of adjacent people in melee range by using the "Guvax" scripture. Be aware that, like slab generation, Guvax's invoke time will become slower with each servant above 5 that is valid for scripture unlocks. +As a Servant, be aware that Cogscarabs are not very efficient in large numbers, as they all require replicant alloy to convert objects and repair structures. Too many scarabs will likely result in a rapid loss of replicant alloy as they consume it to convert the station. +As a Servant, placing components in a slab or cache places those components in a globally-accessable storage that slabs will draw from to invoke scripture. +As a Servant, you can stack different types of Sigils on the same turf; try stacking a Sigil of Transgression and a Sigil of Submission for a subtle conversion trap. +As a Servant, you can deconstruct a clockwork wall with a Clockwork Proselytizer to regain 40 alloy. You can also construct clockwork walls on clockwork floors for a cost of 40 alloy. +As a Servant, using Volt Void while on a Sigil of Transmission will drain power from all visible APCs, power cells, SMES units, non-servant cyborgs, and lights and transfer that power into the Sigil. +As a Servant, Fellowship Armory invokes much faster for each nearby servant and attempts to provide each affected servant with powerful armor against melee and bullet attacks. The gauntlets provided are also immune to elecricity. +As a Servant, Spatial Gateway can teleport to any living Servant or Clockwork Obelisk, and gains additional uses and duration for each Servant assisting in the invocation. +As a Servant, defending the Gateway to the Celestial Derelict is your ultimate goal, and it is heavily recommended that you defend it with all the tools you have avalible, including Ocular Wardens, Mania Motors, Mending Motors, and other, not mentioned things. +As a Servant, once Ratvar has arrived, all of your tools gain a massive boost in power and will, in general, have no cost and work at double speed. +As a Servant, you can impale human targets with a Ratvarian Spear by pulling them, then attacking them. This does massive damage and stuns them, and should effectively win the fight. +As a Servant, Sentinel's Compromise can instantly return you or another Servant to a fighting state by converting half of all their brute and burn damage to toxin, effectively halving the damage they have. Clockwork floors will also rapidly heal toxin damage in Servants, allowing the Compromise more effectiveness. +As a Servant, Clockwork Marauders can only be called forth by exactly saying their true name or if you are heavily damaged, so it is recommended to only have them recalled if they need to heal. +As a Servant, Belligerent, while not particularly useful when alone, is excellent for distrupting and winning a large fight, as even one chant will force all nearby enemies to walk. +As a Servant, Soul Vessels can be placed in cyborg shells, mecha, Cogscarab shells, and Anima Fragment shells. +You can deconvert Cultists of Nar-Sie and Servants of Ratvar by feeding them large amounts of holy water. +As a Wizard, you can turn people to stone, then animate the resulting statue with a staff of animation to create an extremely powerful minion, for all of 5 minutes at least. +As a Wizard, the fireball spell performs very poorly at close range, as it can easily catch you in the blast. It is best used as a form of artillery down long hallways. +As a Wizard, summoning guns will turn a large portion of the crew against themselves, but will also give everyone anything from a pea shooter to a BFG 9000. Use at your own risk! +As a Wizard, the staff of chaos can fire any type of bolts from the magical wands. This can range from bolts of instant death to healing or reviving someone. +As a Wizard, most spells become unusable if you are not wearing your robe, hat, and sandals. +As a Gangster, you can destroy loyalty implants with an implant breaker, letting you reconvert that person. +As a Gangster, your influence is based on how many areas you have tagged and how many people are wearing your gang's outfit; more areas and more people wearing the outfit will give you more influence. +As a Gangster, your gang outfits are very robust, giving moderate resistances to most direct damage at the cost of stealth. +As a Gang Boss, don't wait too long to promote lieutenants! If you get caught by security or enemy gangsters, hopefully you have a backup. +As an Abductor, you can select where your victims will be sent on the ship control console. +As an Abductor Agent, the combat mode vest has much higher resistance to every kind of weapon, and your helmet prevents the AI from tracking you. +As an Abductor, the baton is set up to allow you to rapidly stun, sleep, and cuff: From stun mode, it cyles to sleep, then to cuff, allowing you to render a target helpless and unable to communicate very rapidly. +As a Revenant, the Chaplain is your worst enemy, as they can damage you massively with the null rod and make large swaths of the station impassable with holy water. +As a Revenant, your essence is also your health, so revealing yourself in front of humans to harvest the essence of the living is much safer if you've already stocked up on essences from poorly guarded corpses. +As a Revenant, your Defile ability removes holy water from tiles in a small radius, allowing you to reclaim the station from the chaplain if they've been covering the station in holy water. +As a Revenant, your Overload Lights ability will only shock humans with lights if the lights are still on after a brief delay. +As a Revenant, your Malfunction ability in general damages machinery and mechanical objects, possibly even emagging some objects. Experiment! +As a Revenant, the illness inflicted on humans by Blight can be easily cured by lying down or with holy water, making it best used on targets that have no time to lie down, such as humans in combat. +As a Swarmer, you can deconstruct more things than you think. Try deconstructing light switches, buttons, air alarms and more. Experiment! +As a Swarmer, you can teleport fellow swarmers away if you think they are in danger. +As a Morph, you can talk while disguised, but your words have a chance of being slurred, giving you away! +As a Drone, you can ping other drones to alert them of areas in the station in need of repair. +As a Ghost, you can see the inside of a container on the ground by clicking on it. +As a Ghost, you can double click on people, bots, or the singularity to follow them. +As a Devil, you gain power for every three souls you control, however you also become more obvious. +As a Devil, as long as you control at least one other soul, you will automatically resurrect, as long as a banishment ritual is not performed. +At which time a Devil's nameth is spake on the tongue of man, the Devil may appeareth. From da3029ec05b17e727e22d703146e647a4f1d0848 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sun, 6 Nov 2016 19:06:46 +0000 Subject: [PATCH 19/55] Adds areas not defined Just copied the areas defined from our codebase. Also added some of the sounds used by these areas The dme still won't compile but this should cover most, if not all, areas we use. --- code/game/area/Space_Station_13_areas.dm | 107 +++++++++++++++++++++++ code/game/area/areas.dm | 1 + code/game/machinery/turrets.dm | 38 ++++++++ code/game/objects/structures/pool.dm | 7 ++ code/modules/mining/mine_areas.dm | 16 +++- sound/ambience/ambicreek1.ogg | Bin 0 -> 54967 bytes sound/ambience/ambicreek2.ogg | Bin 0 -> 43432 bytes sound/ambience/ambmaint.ogg | Bin 0 -> 139203 bytes sound/ambience/loop/shipambience.ogg | Bin 0 -> 91744 bytes sound/ambience/loop/softhum.ogg | Bin 0 -> 24264 bytes 10 files changed, 168 insertions(+), 1 deletion(-) create mode 100644 code/game/machinery/turrets.dm create mode 100644 code/game/objects/structures/pool.dm create mode 100644 sound/ambience/ambicreek1.ogg create mode 100644 sound/ambience/ambicreek2.ogg create mode 100644 sound/ambience/ambmaint.ogg create mode 100644 sound/ambience/loop/shipambience.ogg create mode 100644 sound/ambience/loop/softhum.ogg diff --git a/code/game/area/Space_Station_13_areas.dm b/code/game/area/Space_Station_13_areas.dm index 6ce3942..5559eee 100644 --- a/code/game/area/Space_Station_13_areas.dm +++ b/code/game/area/Space_Station_13_areas.dm @@ -169,6 +169,13 @@ var/list/teleportlocs = list() /area/shuttle/abandoned name = "Abandoned Ship" blob_allowed = FALSE + ambientsounds = list('sound/ambience/ambiatm1.ogg', 'sound/ambience/ambmaint.ogg',\ + 'sound/ambience/ambicreek1.ogg', 'sound/ambience/ambicreek2.ogg',\ + 'sound/ambience/ambicha2.ogg', 'sound/ambience/ambicha3.ogg') + ambloop = 'sound/ambience/loop/softhum.ogg' + +/area/shuttle/outpost + name = "Outpost Shuttle" /area/start name = "start area" @@ -178,6 +185,7 @@ var/list/teleportlocs = list() lighting_use_dynamic = DYNAMIC_LIGHTING_DISABLED has_gravity = 1 + // CENTCOM /area/centcom @@ -477,6 +485,22 @@ var/list/teleportlocs = list() name = "Electrical Maintenance" icon_state = "yellow" +/area/maintenance/secelectrical + name = "Security Electrical Maintenance" + icon_state = "yellow" + +/area/maintenance/brigwest + name = "Brig West Wing Maintenance" + icon_state = "yellow" + +/area/maintenance/strangeroom + name = "Strange Room" + icon_state = "yellow" + +/area/maintenance/commiespy + name = "Russian Room" + icon_state = "yellow" + //Hallway /area/hallway/primary/fore @@ -631,6 +655,68 @@ var/list/teleportlocs = list() name = "Law Office" icon_state = "law" +/area/clown + name = "Clown Office" + icon_state = "clown" + +/area/mime + name = "Mime Office" + icon_state = "mime" + +/area/rec_room + name = "Recreation Room" + icon_state = "yellow" + +/area/crew_quarters/pool + name = "Pool" + icon_state = "pool" + +// Holodeck +/area/holodeck + name = "Holodeck" + icon_state = "Holodeck" + luminosity = 1 + lighting_use_dynamic = DYNAMIC_LIGHTING_DISABLED + +/area/holodeck/alphadeck + name = "Holodeck Alpha" + + +/area/holodeck/source_plating + name = "Holodeck - Off" + icon_state = "Holodeck" + +/area/holodeck/source_emptycourt + name = "Holodeck - Empty Court" + +/area/holodeck/source_boxingcourt + name = "Holodeck - Boxing Court" + +/area/holodeck/source_basketball + name = "Holodeck - Basketball Court" + +/area/holodeck/source_thunderdomecourt + name = "Holodeck - Thunderdome Court" + +/area/holodeck/source_beach + name = "Holodeck - Beach" + icon_state = "Holodeck" // Lazy. + +/area/holodeck/source_burntest + name = "Holodeck - Atmospheric Burn Test" + +/area/holodeck/source_wildlife + name = "Holodeck - Wildlife Simulation" + +/area/holodeck/source_wrestling + name = "Holodeck - Wrestling Arena" + +/area/holodeck/source_cqc + name = "Holodeck - CQC VR Training" + +/area/holodeck/source_krav_maga + name = "Holodeck - Krav Maga Training" + //Engineering /area/engine @@ -660,6 +746,18 @@ var/list/teleportlocs = list() name = "Gravity Generator Room" icon_state = "blue" +/area/engine/supermatter + name = "Supermatter" + icon_state = "red" + +/area/engine/heat_exchange + name = "Filtering Room" + icon_state = "yellow" + +/area/engine/port_engineering + name = "Port Engineering" + icon_state = "green" + //Solars /area/solar @@ -1009,6 +1107,14 @@ var/list/teleportlocs = list() name = "Experimentation Lab" icon_state = "toxmisc" +/area/toxins/shuttledock + name = "Research Shuttle Dock" + icon_state = "toxmisc" + +/area/toxins/shuttle + name = "Research Shuttle" + icon_state = "shuttle" + //Storage /area/storage/tools @@ -1600,6 +1706,7 @@ var/list/teleportlocs = list() icon_state = "awaycontent30" + ///////////////////////////////////////////////////////////////////// /* Lists of areas to be used with is_type_in_list. diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index 3be5b29..7886299 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -23,6 +23,7 @@ 'sound/ambience/ambigen8.ogg','sound/ambience/ambigen9.ogg',\ 'sound/ambience/ambigen10.ogg','sound/ambience/ambigen11.ogg',\ 'sound/ambience/ambigen12.ogg','sound/ambience/ambigen14.ogg') + var/ambloop = 'sound/ambience/loop/shipambience.ogg' /area/New() icon_state = "" diff --git a/code/game/machinery/turrets.dm b/code/game/machinery/turrets.dm new file mode 100644 index 0000000..fa4e8f6 --- /dev/null +++ b/code/game/machinery/turrets.dm @@ -0,0 +1,38 @@ +/area/turret_protected + name = "Turret Protected Area" + var/list/turretTargets = list() + +/area/turret_protected/proc/subjectDied(target) + if( isliving(target) ) + if( !issilicon(target) ) + var/mob/living/L = target + if( L.stat ) + if( L in turretTargets ) + src.Exited(L) + + +/area/turret_protected/Entered(O) + ..() + if( master && master != src ) + return master.Entered(O) + + if( iscarbon(O) ) + turretTargets |= O + else if( istype(O, /obj/mecha) ) + var/obj/mecha/Mech = O + if( Mech.occupant ) + turretTargets |= Mech + else if(istype(O,/mob/living/simple_animal)) + turretTargets |= O + return 1 + +/area/turret_protected/Exited(O) + if( master && master != src ) + return master.Exited(O) + + if( ismob(O) && !issilicon(O) ) + turretTargets -= O + else if( istype(O, /obj/mecha) ) + turretTargets -= O + ..() + return 1 diff --git a/code/game/objects/structures/pool.dm b/code/game/objects/structures/pool.dm new file mode 100644 index 0000000..978fb87 --- /dev/null +++ b/code/game/objects/structures/pool.dm @@ -0,0 +1,7 @@ +/area/crew_quarters/pool + name = "\improper Pool" + icon_state = "pool" + +/area/centcom/pool + name = "\improper Centcomm Pool" + icon_state = "pool" diff --git a/code/modules/mining/mine_areas.dm b/code/modules/mining/mine_areas.dm index 867140b..556d3dd 100644 --- a/code/modules/mining/mine_areas.dm +++ b/code/modules/mining/mine_areas.dm @@ -74,4 +74,18 @@ /area/mine/laborcamp/security name = "Labor Camp Security" - icon_state = "security" \ No newline at end of file + icon_state = "security" + +/area/mine/permaprison + name = "Perma Prison" + icon_state = "security" + +/area/mine/permaprison/control + name = "Perma Prison Control Room" + icon_state = "security" + color = "yellow" + +/area/mine/permaprison/recreation + name = "Perma Prison Recreation" + icon_state = "security" + color = "blue" \ No newline at end of file diff --git a/sound/ambience/ambicreek1.ogg b/sound/ambience/ambicreek1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..bea358dc4923284af6eaeed0e07a8588531b94be GIT binary patch literal 54967 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

hS{L{<#S**q&cZFDp;Lx);qYhpL3vqE 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 literal 0 HcmV?d00001 diff --git a/sound/ambience/loop/shipambience.ogg b/sound/ambience/loop/shipambience.ogg new file mode 100644 index 0000000000000000000000000000000000000000..3c315961f71ae04e15ba186dcc38aa3d60bd08a7 GIT binary patch literal 91744 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 literal 0 HcmV?d00001 diff --git a/sound/ambience/loop/softhum.ogg b/sound/ambience/loop/softhum.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f2166081068e42168335ae84e5792ea2bbea7cab GIT binary patch literal 24264 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 nbZ|5ml7B)tEwFwg*ov+Exbc+XjKPRJ_ Date: Sun, 6 Nov 2016 19:21:49 +0000 Subject: [PATCH 20/55] Updates the flags Defined some missing flags and minor formatting. --- code/__DEFINES/flags.dm | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index b2d9a10..e5fee08 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -26,11 +26,15 @@ #define OPENCONTAINER 4096 // is an open container for chemistry purposes #define HEADBANGPROTECT 4096 +#define INJECTONLY 8192 + // BLOCK_GAS_SMOKE_EFFECT only used in masks at the moment. -#define BLOCK_GAS_SMOKE_EFFECT 8192 // blocks the effect that chemical clouds would have on a mob --glasses, mask and helmets ONLY! (NOTE: flag shared with THICKMATERIAL) -#define THICKMATERIAL 8192 //prevents syringes, parapens and hypos if the external suit or helmet (if targeting head) has this flag. Example: space suits, biosuit, bombsuits, thick suits that cover your body. (NOTE: flag shared with BLOCK_GAS_SMOKE_EFFECT) -#define DROPDEL 16384 // When dropped, it calls qdel on itself -#define HOLOGRAM 32768 // HOlodeck shit should not be used in any fucking things +#define BLOCK_GAS_SMOKE_EFFECT 8192 // blocks the effect that chemical clouds would have on a mob --glasses, mask and helmets ONLY! (NOTE: flag shared with THICKMATERIAL) +#define THICKMATERIAL 8192 //prevents syringes, parapens and hypos if the external suit or helmet (if targeting head) has this flag. Example: space suits, biosuit, bombsuits, thick suits that cover your body. (NOTE: flag shared with BLOCK_GAS_SMOKE_EFFECT) + +#define DROPDEL 16384 // When dropped, it calls qdel on itself +#define HOLOGRAM 32768 // Holodeck shit should not be used in any fucking things +#define BLOCKHAIR 65536 // temporarily removes the user's hair icon //turf-only flags #define NOJAUNT 1 @@ -87,6 +91,7 @@ #define DRONE 32 #define SWARMER 64 #define RATVAR 128 +#define ZOMBIE 256 // Flags for reagents #define REAGENT_NOREACT 1 From 1e01473476d7e93cac620f81c2b9f3b4645d9c3a Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sun, 6 Nov 2016 19:43:12 +0000 Subject: [PATCH 21/55] Adds the garrote weapon and recipe From https://trello.com/c/FOuY0WTX/39-garrote --- code/game/objects/items/weapons/garrot.dm | 152 ++++++++++++++++++++++ code/modules/crafting/recipes.dm | 9 ++ icons/obj/garrote.dmi | Bin 0 -> 2026 bytes 3 files changed, 161 insertions(+) create mode 100644 code/game/objects/items/weapons/garrot.dm create mode 100644 icons/obj/garrote.dmi diff --git a/code/game/objects/items/weapons/garrot.dm b/code/game/objects/items/weapons/garrot.dm new file mode 100644 index 0000000..5afefa2 --- /dev/null +++ b/code/game/objects/items/weapons/garrot.dm @@ -0,0 +1,152 @@ +//Crafting +/obj/item/garrotehandles + name = "garrote handles" + desc = "Two handles for a garrote to be made. Needs cable to finish it." + icon_state = "garrothandles" + // item_state = "rods" + icon = 'icons/obj/garrote.dmi' + w_class = 2 + materials = list(MAT_METAL=1000) + +/obj/item/garrotehandles/attackby(obj/item/I, mob/user, params) + ..() + if(istype(I, /obj/item/stack/cable_coil)) + var/obj/item/stack/cable_coil/R = I + if (R.use(20)) + var/obj/item/weapon/garrote/W = new /obj/item/weapon/garrote + if(!remove_item_from_storage(user)) + user.unEquip(src) + W.item_color = I.item_color + W.update_icon() + user.put_in_hands(W) + user << "You attach the cable to the handles and pull on them tightly, creating a garrote." + qdel(src) + else + user << "You need 20 cables to make a garrote!" + return + +//Wepon +/obj/item/weapon/garrote + name = "garrote" + desc = "Extremely robust for stealth takedowns and rapid chokeholds." + w_class = 2 + icon = 'icons/obj/garrote.dmi' + icon_state = "garrot" + item_color = "" + var/garroting = 0 + var/next_garrot = 0 + +/obj/item/weapon/garrote/New() + ..() + update_icon() + +/obj/item/weapon/garrote/Destroy() + SSobj.processing.Remove(src) + ..() + +/obj/item/weapon/garrote/update_icon() + if (!item_color) + item_color = pick("red", "yellow", "blue", "green") + icon_state = "garrot[garroting ? "_w" : ""][item_color ? "_[item_color]" : ""]" + +/obj/item/weapon/garrote/attack_self(mob/user) + if(garroting) + user << "You release the garrote on your victim." //Not the grab, though. Only the garrote. + garroting = 0 + SSobj.processing.Remove(src) + update_icon() + return + if(world.time <= next_garrot) return + + if(iscarbon(user)) + var/mob/living/carbon/C = user + var/obj/item/weapon/grab/G = C.l_hand + if(!istype(G)) + G = C.r_hand + if(!istype(G)) + return + if(G && G.affecting) + G.affecting.LAssailant = user + playsound(C.loc, 'sound/weapons/grapple.ogg', 40, 1, -4) + playsound(C.loc, 'sound/weapons/cablecuff.ogg', 15, 1, -5) + garroting = 1 + update_icon() + SSobj.processing.Add(src) + next_garrot = world.time + 10 + user.visible_message( + "[user] has grabbed \the [G.affecting] with \the [src]!",\ + "You grab \the [G.affecting] with \the [src]!",\ + "You hear some struggling and muffled cries of surprise") + +/obj/item/weapon/garrote/afterattack(atom/A, mob/living/user as mob, proximity, click_parameters) + if(!proximity) return + if(iscarbon(A)) + var/mob/living/carbon/C = A + if(user != C && !user.get_inactive_hand()) + if(user.zone_sel.selecting != "mouth" && user.zone_sel.selecting != "eyes" && user.zone_sel.selecting != "head") + user << "You must target head for garroting to work!" + return + if(!garroting) + add_logs(user, C, "garroted") + var/obj/item/weapon/grab/G = new /obj/item/weapon/grab(user, C) + if(!G) //the grab will delete itself in New if C is anchored + return 0 + user.put_in_inactive_hand(G) //Autograb. The trick is to switch to grab intent and reinforce it for quick chokehold. + // N E V E R autograb into Aggressive. Passive autograb is good enough. + // G.state = GRAB_AGGRESSIVE + // G.icon_state = "reinforce1" + C.LAssailant = user + playsound(C.loc, 'sound/weapons/grapple.ogg', 40, 1, -4) + playsound(C.loc, 'sound/weapons/cablecuff.ogg', 15, 1, -5) + garroting = 1 + update_icon() + SSobj.processing.Add(src) + next_garrot = world.time + 10 + user.visible_message( + "[user] has grabbed \the [C] with \the [src]!",\ + "You grab \the [C] with \the [src]!",\ + "You hear some struggling and muffled cries of surprise") + else + user << "You're already garroting someone!" + return + +/obj/item/weapon/garrote/process() + if(iscarbon(loc)) + var/mob/living/carbon/C = loc + if(src != C.r_hand && src != C.l_hand) //THE GARROTE IS NOT IN HANDS, ABORT + garroting = 0 + SSobj.processing.Remove(src) + update_icon() + return + var/obj/item/weapon/grab/G = C.l_hand + if(!istype(G)) + G = C.r_hand + if(!istype(G)) + garroting = 0 + SSobj.processing.Remove(src) + update_icon() + return + if(!G.affecting) + garroting = 0 + SSobj.processing.Remove(src) + update_icon() + return + if(ishuman(G.affecting)) + var/mob/living/carbon/human/H = G.affecting + if(H.is_mouth_covered()) + garroting = 0 + SSobj.processing.Remove(src) + update_icon() + return + H.forcesay(list("-hrk!", "-hrgh!", "-urgh!", "-kh!", "-hrnk!")) + if(G.state >= GRAB_NECK) //Only do oxyloss if in neck grab to prevent passive grab choking or something. + if(G.state >= GRAB_KILL) + G.affecting.adjustOxyLoss(3) //Stack the chokes with additional oxyloss for quicker death + else + if(prob(40)) + G.affecting.stuttering = max(G.affecting.stuttering, 3) //It will hamper your voice, being choked and all. + G.affecting.losebreath = min(G.affecting.losebreath + 2, 3) //Tell the game we're choking them + else + garroting = 0 + SSobj.processing.Remove(src) + update_icon() \ No newline at end of file diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index 412de4f..dcd46f5 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -419,3 +419,12 @@ reqs = list(/obj/item/weapon/grown/log = 5) result = /obj/structure/bonfire category = CAT_PRIMAL + +/datum/table_recipe/garrote_handles //Still need to apply some wires to finish it + name = "Garrote Handles" + result = /obj/item/garrotehandles + tools = list(/obj/item/weapon/weldingtool) + reqs = list(/obj/item/stack/cable_coil = 15, + /obj/item/stack/rods = 1,) + time = 120 + category = CAT_WEAPON diff --git a/icons/obj/garrote.dmi b/icons/obj/garrote.dmi new file mode 100644 index 0000000000000000000000000000000000000000..62df3edf84bcaa4bb95271587cc564e395d484d0 GIT binary patch literal 2026 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 Y-@MI+H3fKdOa4mW>V(5Sa3m)F4MSA3Y5)KL literal 0 HcmV?d00001 From 6185e803961a78537ed84249d944a7ad11fcc90e Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sun, 6 Nov 2016 19:45:19 +0000 Subject: [PATCH 22/55] Minor typo --- code/game/objects/items/weapons/garrot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/garrot.dm b/code/game/objects/items/weapons/garrot.dm index 5afefa2..a63a96b 100644 --- a/code/game/objects/items/weapons/garrot.dm +++ b/code/game/objects/items/weapons/garrot.dm @@ -25,7 +25,7 @@ user << "You need 20 cables to make a garrote!" return -//Wepon +//Weapon /obj/item/weapon/garrote name = "garrote" desc = "Extremely robust for stealth takedowns and rapid chokeholds." From 531fdbfc1a46aebc9e934fef9266d911d7459cb3 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 6 Nov 2016 13:04:46 -0800 Subject: [PATCH 23/55] Bats, Loot spawners, and removing a depricated flag from an object --- .../game/objects/effects/spawners/lootdrop.dm | 168 ++++++++++++++++++ code/game/objects/items.dm | 13 ++ code/game/objects/items/weapons/baseball.dm | 92 ++++++++++ code/modules/clothing/head/misc.dm | 2 +- code/modules/mob/living/carbon/carbon.dm | 20 ++- icons/obj/toy.dmi | Bin 33983 -> 35173 bytes sound/weapons/basebat.ogg | Bin 0 -> 7622 bytes tgstation.dme | 1 + 8 files changed, 292 insertions(+), 4 deletions(-) create mode 100644 code/game/objects/items/weapons/baseball.dm create mode 100644 sound/weapons/basebat.ogg diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm index eb700f6..51d1589 100644 --- a/code/game/objects/effects/spawners/lootdrop.dm +++ b/code/game/objects/effects/spawners/lootdrop.dm @@ -159,7 +159,175 @@ /obj/item/clothing/under/cosby = 3, "" = 4 ) +/obj/effect/spawner/lootdrop/contraband +//Total of 1850 items. (26/10/2015) + name = "contraband spawner" + loot = list( + /obj/item/weapon/relic = 80, + /obj/item/weapon/book/manual/wiki/engineering_hacking = 50, + /obj/item/weapon/poster/contraband = 80, + /obj/item/weapon/bikehorn/airhorn = 20, + //obj/item/weapon/gun/buttlauncher = 10, + /obj/item/weapon/banhammer = 10, + /obj/item/weapon/bikehorn = 50, + //obj/item/weapon/storage/daki = 50, + /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/amanita = 150, + /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/libertycap = 150, + /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/reishi = 150, + /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosia/deus = 100, + /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosia/vulgaris = 300, + /obj/item/weapon/reagent_containers/food/snacks/grown/banana = 50, + /obj/item/weapon/cartridge/clown = 30, + /obj/item/weapon/lipstick/random = 30, + /obj/item/weapon/picket_sign = 40, + /obj/item/weapon/pneumatic_cannon/ghetto = 25, + /obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko = 15, + /obj/item/weapon/reagent_containers/food/snacks/soylentgreen = 15, + /obj/item/weapon/reagent_containers/spray/waterflower = 33, + /obj/item/weapon/restraints/legcuffs/beartrap = 33, + /obj/item/weapon/stamp/clown =20, + /obj/item/weapon/storage/crayons = 20, + /obj/item/weapon/storage/spooky = 5, + /obj/item/weapon/storage/book/bible = 5, + /obj/item/weapon/tome = 1, + /obj/item/weapon/toy/xmas_cracker = 10, + /obj/item/ammo_box/foambox = 10, + //obj/item/areaeditor/permit = 5, + /obj/item/clothing/gloves/boxing = 20, + /obj/item/clothing/shoes/clown_shoes/banana_shoes = 5, + /obj/item/documents/syndicate/blue = 1, + /obj/item/documents/syndicate/red = 1, + //obj/item/seeds/kudzuseed = 5, + /obj/item/toy/syndicateballoon = 1, + /obj/item/toy/crayon/rainbow = 40, + /obj/item/toy/crayon/mime = 30, + /obj/item/toy/foamblade = 10, + /obj/item/weapon/grown/bananapeel = 40, + /obj/item/weapon/grown/bananapeel/specialpeel = 5, + /obj/item/stack/ducttape{amount = 5} = 40, + /obj/item/stack/ducttape{amount = 10} = 20, + /obj/item/stack/ducttape = 10, + /obj/item/clothing/under/cosby = 1, + "" = 100 + ) +/obj/effect/spawner/lootdrop/food +//Total of 870 items. (26/10/2015) + name = "food_spawner" + loot = list( + /obj/item/weapon/reagent_containers/food/snacks/baguette = 5, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/plain = 5, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/plain = 60, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/meat = 1, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/meat = 5, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/banana = 1, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/banana = 5, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/tofu = 1, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/tofu = 5, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/creamcheese = 1, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/creamcheese = 5, + /obj/item/weapon/reagent_containers/food/snacks/store/bread/mimana = 1, + /obj/item/weapon/reagent_containers/food/snacks/breadslice/mimana = 3, + /obj/item/weapon/reagent_containers/food/snacks/candy_corn = 5, + /obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice = 5, + /obj/item/weapon/reagent_containers/food/snacks/popcorn = 5, + /obj/item/weapon/reagent_containers/food/snacks/loadedbakedpotato = 5, + /obj/item/weapon/reagent_containers/food/snacks/fries = 10, + /obj/item/weapon/reagent_containers/food/snacks/soydope = 5, + /obj/item/weapon/reagent_containers/food/snacks/cheesyfries = 5, + /obj/item/weapon/reagent_containers/food/snacks/badrecipe = 100, + /obj/item/weapon/reagent_containers/food/snacks/carrotfries = 5, + /obj/item/weapon/reagent_containers/food/snacks/candiedapple = 5, + /obj/item/weapon/reagent_containers/food/snacks/eggwrap = 5, + /obj/item/weapon/reagent_containers/food/snacks/beans = 5, + /obj/item/weapon/reagent_containers/food/snacks/chococoin = 5, + /obj/item/weapon/reagent_containers/food/snacks/chocoorange = 5, + /obj/item/weapon/reagent_containers/food/snacks/eggplantparm = 5, + /obj/item/weapon/reagent_containers/food/snacks/tortilla = 10, + /obj/item/weapon/reagent_containers/food/snacks/burrito = 5, + /obj/item/weapon/reagent_containers/food/snacks/cheesyburrito = 5, + /obj/item/weapon/reagent_containers/food/snacks/carneburrito = 5, + /obj/item/weapon/reagent_containers/food/snacks/fuegoburrito = 5, + /obj/item/weapon/reagent_containers/food/snacks/yakiimo = 5, + /obj/item/weapon/reagent_containers/food/snacks/roastparsnip = 5, + /obj/item/weapon/reagent_containers/food/snacks/melonfruitbowl = 5, + /obj/item/weapon/reagent_containers/food/snacks/spacefreezy = 5, + /obj/item/weapon/reagent_containers/food/snacks/sundae = 5, + /obj/item/weapon/reagent_containers/food/snacks/honkdae = 5, + /obj/item/weapon/reagent_containers/food/snacks/nachos = 5, + /obj/item/weapon/reagent_containers/food/snacks/cheesynachos = 5, + /obj/item/weapon/reagent_containers/food/snacks/cubannachos = 5, + /obj/item/weapon/reagent_containers/food/snacks/melonkeg = 5, + /obj/item/weapon/reagent_containers/food/snacks/cubancarp = 5, + /obj/item/weapon/reagent_containers/food/snacks/carpmeat/imitation = 5, + /obj/item/weapon/reagent_containers/food/snacks/fishfingers = 5, + /obj/item/weapon/reagent_containers/food/snacks/fishandchips = 5, + /obj/item/weapon/reagent_containers/food/snacks/tofu = 10, + /obj/item/weapon/reagent_containers/food/snacks/cornedbeef = 5, + /obj/item/weapon/reagent_containers/food/snacks/bearsteak = 5, + /obj/item/weapon/reagent_containers/food/snacks/faggot = 5, + /obj/item/weapon/reagent_containers/food/snacks/sausage = 5, + /obj/item/weapon/reagent_containers/food/snacks/kebab = 15, + /obj/item/weapon/reagent_containers/food/snacks/kebab/monkey = 5, + /obj/item/weapon/reagent_containers/food/snacks/kebab/tofu = 5, + /obj/item/weapon/reagent_containers/food/snacks/enchiladas = 5, + /obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat = 5, + /obj/item/weapon/reagent_containers/food/snacks/boiledspiderleg = 5, + /obj/item/weapon/reagent_containers/food/snacks/spidereggsham = 5, + /obj/item/weapon/reagent_containers/food/snacks/sashimi = 5, + /obj/item/weapon/reagent_containers/food/snacks/sandwich = 15, + /obj/item/weapon/reagent_containers/food/snacks/toastedsandwich = 5, + /obj/item/weapon/reagent_containers/food/snacks/grilledcheese = 5, + /obj/item/weapon/reagent_containers/food/snacks/jellysandwich/cherry = 5, + /obj/item/weapon/reagent_containers/food/snacks/icecreamsandwich = 5, + /obj/item/weapon/reagent_containers/food/snacks/notasandwich = 5, + /obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/cherry = 5, + /obj/item/weapon/reagent_containers/food/snacks/twobread = 5, + /obj/item/weapon/reagent_containers/food/snacks/muffin = 5, + /obj/item/weapon/reagent_containers/food/snacks/muffin/berry = 5, + /obj/item/weapon/reagent_containers/food/snacks/muffin/booberry = 5, + /obj/item/weapon/reagent_containers/food/snacks/chawanmushi = 5, + /obj/item/weapon/reagent_containers/food/snacks/waffles = 5, + /obj/item/weapon/reagent_containers/food/snacks/soylenviridians = 5, + /obj/item/weapon/reagent_containers/food/snacks/rofflewaffles = 5, + /obj/item/weapon/reagent_containers/food/snacks/cookie = 5, + /obj/item/weapon/reagent_containers/food/snacks/donkpocket/warm = 45, + /obj/item/weapon/reagent_containers/food/snacks/fortunecookie = 5, + /obj/item/weapon/reagent_containers/food/snacks/poppypretzel = 5, + /obj/item/weapon/reagent_containers/food/snacks/plumphelmetbiscuit = 5, + /obj/item/weapon/reagent_containers/food/snacks/cracker = 5, + /obj/item/weapon/reagent_containers/food/snacks/hotdog = 15, + /obj/item/weapon/reagent_containers/food/snacks/meatbun = 5, + /obj/item/weapon/reagent_containers/food/snacks/sugarcookie = 5, + /obj/item/weapon/reagent_containers/food/snacks/chococornet = 5, + /obj/item/weapon/reagent_containers/food/snacks/oatmealcookie = 5, + /obj/item/weapon/reagent_containers/food/snacks/raisincookie = 5, + /obj/item/weapon/reagent_containers/food/snacks/cherrycupcake = 5, + /obj/item/weapon/reagent_containers/food/snacks/bluecherrycupcake = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/plain = 60, + /obj/item/weapon/reagent_containers/food/snacks/burger/corgi = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/appendix = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/fish = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/tofu = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/xeno = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/bearger = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/clown = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/mime = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/brain = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/ghost = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/red = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/orange = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/yellow = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/green = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/blue = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/purple = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/bigbite = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/jelly/cherry = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/superbite = 1, + /obj/item/weapon/reagent_containers/food/snacks/burger/fivealarm = 5, + /obj/item/weapon/reagent_containers/food/snacks/burger/rat = 20, + "" = 100 + ) /obj/effect/spawner/lootdrop/crate_spawner name = "lootcrate spawner" lootdoubles = 0 diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index b9a41f3..220b102 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -68,6 +68,16 @@ var/global/image/fire_overlay = image("icon" = 'icons/effects/fire.dmi', "icon_s var/mob/thrownby = null +//Vars for things like baseball bats that do unique things with thrown items below + var/special_throw = 0 + var/specthrowsound = null //Special throw sound for above functionality + var/specthrowmsg = null + var/throwrange_mult = 1 //Multiply the range of thrown item? + var/throwforce_mult = 1 //Multiply the force of thrown item? + var/specthrow_maxwclass = 2 //Max weight class of the thrown item + var/deflectItem = 0 //For deflecting items thrown at you when you have throw intent on + var/mult = 0 //For code to reset throwforce back to normal after it hits something + /obj/item/mouse_drag_pointer = MOUSE_ACTIVE_POINTER //the icon to indicate this object is being dragged //So items can have custom embedd values @@ -545,6 +555,9 @@ obj/item/proc/item_action_slot_check(slot, mob/user) embed_chance = 100//you must embed! embedded_ignore_throwspeed_threshold = 1 throw_range = initial(throw_range) + if(mult) + throwforce = initial(throwforce) + mult = 0 return A.hitby(src, 0, itempush) /obj/item/throw_at(atom/target, range, speed, mob/thrower, spin=1) diff --git a/code/game/objects/items/weapons/baseball.dm b/code/game/objects/items/weapons/baseball.dm new file mode 100644 index 0000000..79f19ff --- /dev/null +++ b/code/game/objects/items/weapons/baseball.dm @@ -0,0 +1,92 @@ +/*Contains: +* Baseball bats +* Baseball ball +*/ + +//TODO: Make wooden baseball bat require you to create a stick from wood then sharpen it with a knife. + +//The best thing about the bat? You can deflect items when you have throw intent with bat in active hand. +//The worst thing? You can accidentaly throw the bat itself, just like in real life! +/obj/item/weapon/baseballbat + name = "baseball bat" + desc = "A smooth wooden club used in baseball to hit the ball. Or to purify your adversaries." //Reference nobody is going to get, woo. (Google "OFF by Mortis Ghost") + icon = 'icons/obj/toy.dmi' + icon_state = "bbat" + item_state = "bbat" + slot_flags = SLOT_BELT //Including the belt sprite to look cool + force = 10 + throwforce = 10 + throw_speed = 3 + throw_range = 4 + special_throw = 1 + deflectItem = 1 + specthrowsound = 'sound/weapons/basebat.ogg' + throwrange_mult = 1.5 //Increases throw range by 1.5 + throwforce_mult = 1.2 //Multiply the throwforce of thrown object meagerly - don't make this too high + specthrow_maxwclass = 2 //Max weight class that you can throw + specthrowmsg = "batted" + w_class = 3 + burn_state = 0 + +// /mob/living/carbon/throw_item(atom/target) +// ..() + +/obj/item/weapon/baseballbat/wood + +/obj/item/weapon/baseballbat/metal + name = "metal baseball bat" + desc = "A smooth metal club used in baseball to hit the ball. Or to purify your adversaries." + icon_state = "bbat_metal" + item_state = "bbat_metal" + force = 15 //Buffed again. It's kind of expensive to mass produce it since every 50 metal you can only get 3 bats. + throwforce = 13 + specthrow_maxwclass = 3 //You can bat normal sized items with metal bat + burn_state = -1 + +/obj/item/weapon/baseballbat/spike + name = "spiked baseball bat" + desc = "A wooden baseball bat with metal spikes crudely attached." + icon_state = "bbat_spike" + item_state = "bbat_spike" + force = 13 + throwforce = 15 // Its got spikes sticking out of it + burn_state = 0 + armour_penetration = 20 + +/obj/item/baseball + name = "baseball" + desc = "Pitch it to the batter." + icon = 'icons/obj/toy.dmi' + icon_state = "bball" + w_class = 1.0 + force = 0 + throwforce = 5 + throw_range = 7 + +/obj/item/weapon/baseballbat/suicide_act(mob/user) + user.visible_message("[user] smashes the baseball bat into \his head! It looks like \he's trying to commit suicide..") + return (BRUTELOSS) + +/mob/living/carbon/human/hitby(atom/movable/AM, skipcatch, hitpush = 1, blocked = 0, zone) + ..() + var/obj/item/baseball/I = AM + if(!istype(I)) + return + if(zone == "") + zone = ran_zone("chest", 65) + var/armor = getarmor(check_zone(zone), "melee") + if(armor >= 100) return + if(zone == "head" && I.throwforce >= 6) //This is kind of a terrible way to check if the baseball was batted but whatever + if(stat == CONSCIOUS && prob(50)) //decent chance to make up for the already-RNG zone picking + if(armor < 40) //It only KO's you if you don't have head armor + visible_message("[src] has been knocked unconscious!", \ + "[src] has been knocked unconscious!") + apply_effect(6, PARALYZE, armor) //Since it's ranged, we don't want to make KO too OP + if(prob(50)) + ticker.mode.remove_revolutionary(mind) + ticker.mode.remove_gangster(mind) + else //Knock them down instead + visible_message("[src] has been knocked down!", \ + "[src] has been knocked down!") + apply_effect(5, WEAKEN, armor) + apply_effect(3, STUN, armor) \ No newline at end of file diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 9320d22..3015d3b 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -169,7 +169,7 @@ desc = "A helmet made out of chitinous alien hide." flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR alternate_screams = list('sound/voice/hiss1.ogg','sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg','sound/voice/hiss5.ogg','sound/voice/hiss6.ogg') - flags = BLOCKHAIR | STOPSPRESSUREDMAGE + flags = STOPSPRESSUREDMAGE cold_protection = HEAD min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index f25f4d7..c706f3e 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -182,7 +182,7 @@ if(has_bane(BANE_LIGHT)) mind.disrupt_spells(0) - + //Throwing stuff /mob/living/carbon/proc/toggle_throw_mode() if(stat) @@ -216,6 +216,10 @@ var/atom/movable/thrown_thing var/obj/item/I = src.get_active_hand() + var/range = I.throw_range + var/throw_speed = I.throw_speed + var/did = "thrown" + var/obj/item/E = I if(!I) if(pulling && isliving(pulling) && grab_state >= GRAB_AGGRESSIVE) @@ -229,15 +233,25 @@ var/start_T_descriptor = "tile at [start_T.x], [start_T.y], [start_T.z] in area [get_area(start_T)]" var/end_T_descriptor = "tile at [end_T.x], [end_T.y], [end_T.z] in area [get_area(end_T)]" add_logs(src, throwable_mob, "thrown", addition="from [start_T_descriptor] with the target [end_T_descriptor]") + if(I) + if(istype(I) && I.special_throw && istype(E) && I.specthrow_maxwclass >= E.w_class) //For special items that multiply something's throw range when in inactive hand (example: baseball bat) + range = round(range * I.throwrange_mult) + if(I.specthrowmsg) + did = I.specthrowmsg + if(I.specthrowsound) + playsound(loc, I.specthrowsound, 50, 1, -1) + if(I.throwforce_mult) + E.throwforce = round(E.throwforce * I.throwforce_mult) + E.mult = 1 //Tell the code we have modified this item's throwforce and would like for it to be set back to normal after it hits something. else if(!(I.flags & (NODROP|ABSTRACT))) thrown_thing = I unEquip(I) if(thrown_thing) - visible_message("[src] has thrown [thrown_thing].") + visible_message("[src] has [did] [thrown_thing].") newtonian_move(get_dir(target, src)) - thrown_thing.throw_at(target, thrown_thing.throw_range, thrown_thing.throw_speed, src) + thrown_thing.throw_at(target, range, throw_speed, src) /mob/living/carbon/restrained(ignore_grab) . = (handcuffed || (!ignore_grab && pulledby && pulledby.grab_state >= GRAB_AGGRESSIVE)) diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 902d5f2f238754c41b0191c8de621f7b1ec6f59d..79c845cdba307edaeebf1e7a865150e8da819e4f 100644 GIT binary patch delta 12929 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 N0D~{tB=$joe*-%-+eiQa literal 0 HcmV?d00001 diff --git a/tgstation.dme b/tgstation.dme index 7d754da..cd618cf 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -659,6 +659,7 @@ #include "code\game\objects\items\stacks\tiles\tile_types.dm" #include "code\game\objects\items\weapons\AI_modules.dm" #include "code\game\objects\items\weapons\airlock_painter.dm" +#include "code\game\objects\items\weapons\baseball.dm" #include "code\game\objects\items\weapons\cards_ids.dm" #include "code\game\objects\items\weapons\chrono_eraser.dm" #include "code\game\objects\items\weapons\cigs_lighters.dm" From 9a93162517b0e83f4f42bcfa84b85bfdd493d2b1 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sun, 6 Nov 2016 21:38:38 +0000 Subject: [PATCH 24/55] Removed deprecated flag --- code/__DEFINES/flags.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index e5fee08..525fb4f 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -34,7 +34,6 @@ #define DROPDEL 16384 // When dropped, it calls qdel on itself #define HOLOGRAM 32768 // Holodeck shit should not be used in any fucking things -#define BLOCKHAIR 65536 // temporarily removes the user's hair icon //turf-only flags #define NOJAUNT 1 From 0cfff57690aba76f1b468419f3f3a4748893d852 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Tue, 8 Nov 2016 23:19:46 +0000 Subject: [PATCH 25/55] Made it /tg/ friendly * Due to how grabbing now works a lot of the procs had to be revised. * Added grapple sound. * Fixed crafting recipe to match /tg/ * Added garrot.dm to .dme --- code/game/objects/items/weapons/garrot.dm | 124 +++++++++++----------- code/modules/crafting/recipes.dm | 2 +- sound/weapons/grapple.ogg | Bin 0 -> 7578 bytes tgstation.dme | 1 + 4 files changed, 64 insertions(+), 63 deletions(-) create mode 100644 sound/weapons/grapple.ogg diff --git a/code/game/objects/items/weapons/garrot.dm b/code/game/objects/items/weapons/garrot.dm index a63a96b..8b1cce8 100644 --- a/code/game/objects/items/weapons/garrot.dm +++ b/code/game/objects/items/weapons/garrot.dm @@ -3,15 +3,16 @@ name = "garrote handles" desc = "Two handles for a garrote to be made. Needs cable to finish it." icon_state = "garrothandles" - // item_state = "rods" icon = 'icons/obj/garrote.dmi' w_class = 2 materials = list(MAT_METAL=1000) /obj/item/garrotehandles/attackby(obj/item/I, mob/user, params) ..() + if(istype(I, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/R = I + if (R.use(20)) var/obj/item/weapon/garrote/W = new /obj/item/weapon/garrote if(!remove_item_from_storage(user)) @@ -41,67 +42,75 @@ update_icon() /obj/item/weapon/garrote/Destroy() - SSobj.processing.Remove(src) + STOP_PROCESSING(SSobj, src) ..() /obj/item/weapon/garrote/update_icon() if (!item_color) item_color = pick("red", "yellow", "blue", "green") + icon_state = "garrot[garroting ? "_w" : ""][item_color ? "_[item_color]" : ""]" +/obj/item/weapon/garrote/proc/begin_attack() + garroting = 1 + START_PROCESSING(SSobj, src) + update_icon() + next_garrot = world.time + 10 + +/obj/item/weapon/garrote/proc/stop_attack() + garroting = 0 + STOP_PROCESSING(SSobj, src) + update_icon() + /obj/item/weapon/garrote/attack_self(mob/user) if(garroting) user << "You release the garrote on your victim." //Not the grab, though. Only the garrote. - garroting = 0 - SSobj.processing.Remove(src) - update_icon() + stop_attack() + return + + if(world.time <= next_garrot) return - if(world.time <= next_garrot) return if(iscarbon(user)) var/mob/living/carbon/C = user - var/obj/item/weapon/grab/G = C.l_hand - if(!istype(G)) - G = C.r_hand - if(!istype(G)) - return - if(G && G.affecting) - G.affecting.LAssailant = user + var/mob/living/carbon/P = C.pulling + + if(P) playsound(C.loc, 'sound/weapons/grapple.ogg', 40, 1, -4) playsound(C.loc, 'sound/weapons/cablecuff.ogg', 15, 1, -5) - garroting = 1 - update_icon() - SSobj.processing.Add(src) - next_garrot = world.time + 10 + + begin_attack() + user.visible_message( - "[user] has grabbed \the [G.affecting] with \the [src]!",\ - "You grab \the [G.affecting] with \the [src]!",\ - "You hear some struggling and muffled cries of surprise") + "[user] has grabbed [P] with \the [src]!",\ + "You grab [P] with \the [src]!",\ + "You hear some struggling and muffled craies of surprise") + else + stop_attack() + return /obj/item/weapon/garrote/afterattack(atom/A, mob/living/user as mob, proximity, click_parameters) - if(!proximity) return + if(!proximity) + return + if(iscarbon(A)) var/mob/living/carbon/C = A + if(user != C && !user.get_inactive_hand()) - if(user.zone_sel.selecting != "mouth" && user.zone_sel.selecting != "eyes" && user.zone_sel.selecting != "head") + if(user.zone_selected != "mouth" && user.zone_selected != "eyes" && user.zone_selected != "head") user << "You must target head for garroting to work!" return + if(!garroting) add_logs(user, C, "garroted") - var/obj/item/weapon/grab/G = new /obj/item/weapon/grab(user, C) - if(!G) //the grab will delete itself in New if C is anchored - return 0 - user.put_in_inactive_hand(G) //Autograb. The trick is to switch to grab intent and reinforce it for quick chokehold. - // N E V E R autograb into Aggressive. Passive autograb is good enough. - // G.state = GRAB_AGGRESSIVE - // G.icon_state = "reinforce1" - C.LAssailant = user + + user.grab_state = GRAB_AGGRESSIVE + playsound(C.loc, 'sound/weapons/grapple.ogg', 40, 1, -4) playsound(C.loc, 'sound/weapons/cablecuff.ogg', 15, 1, -5) - garroting = 1 - update_icon() - SSobj.processing.Add(src) - next_garrot = world.time + 10 + + begin_attack() + user.visible_message( "[user] has grabbed \the [C] with \the [src]!",\ "You grab \the [C] with \the [src]!",\ @@ -114,39 +123,30 @@ if(iscarbon(loc)) var/mob/living/carbon/C = loc if(src != C.r_hand && src != C.l_hand) //THE GARROTE IS NOT IN HANDS, ABORT - garroting = 0 - SSobj.processing.Remove(src) - update_icon() + stop_attack() return - var/obj/item/weapon/grab/G = C.l_hand - if(!istype(G)) - G = C.r_hand - if(!istype(G)) - garroting = 0 - SSobj.processing.Remove(src) - update_icon() - return - if(!G.affecting) - garroting = 0 - SSobj.processing.Remove(src) - update_icon() + + var/mob/living/carbon/G = C.pulling + + if(!G) + stop_attack() return - if(ishuman(G.affecting)) - var/mob/living/carbon/human/H = G.affecting + + if(ishuman(G)) + var/mob/living/carbon/human/H = G + if(H.is_mouth_covered()) - garroting = 0 - SSobj.processing.Remove(src) - update_icon() + stop_attack() return + H.forcesay(list("-hrk!", "-hrgh!", "-urgh!", "-kh!", "-hrnk!")) - if(G.state >= GRAB_NECK) //Only do oxyloss if in neck grab to prevent passive grab choking or something. - if(G.state >= GRAB_KILL) - G.affecting.adjustOxyLoss(3) //Stack the chokes with additional oxyloss for quicker death + + if(C.grab_state >= GRAB_NECK) //Only do oxyloss if in neck grab to prevent passive grab choking or something. + if(C.grab_state >= GRAB_KILL) + G.adjustOxyLoss(3) //Stack the chokes with additional oxyloss for quicker death else if(prob(40)) - G.affecting.stuttering = max(G.affecting.stuttering, 3) //It will hamper your voice, being choked and all. - G.affecting.losebreath = min(G.affecting.losebreath + 2, 3) //Tell the game we're choking them + G.stuttering = max(G.stuttering + 1, 3) //It will hamper your voice, being choked and all. + G.losebreath = min(G.losebreath + 2, 3) //Tell the game we're choking them else - garroting = 0 - SSobj.processing.Remove(src) - update_icon() \ No newline at end of file + stop_attack() \ No newline at end of file diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index dcd46f5..b27b79f 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -420,7 +420,7 @@ result = /obj/structure/bonfire category = CAT_PRIMAL -/datum/table_recipe/garrote_handles //Still need to apply some wires to finish it +/datum/crafting_recipe/garrote_handles //Still need to apply some wires to finish it name = "Garrote Handles" result = /obj/item/garrotehandles tools = list(/obj/item/weapon/weldingtool) diff --git a/sound/weapons/grapple.ogg b/sound/weapons/grapple.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fba4b07500c1a5c86f217b5cc526c6bff04057fa GIT binary patch literal 7578 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 YR@=A$jIkl$W$ndyU2dm`K3V|qZ+SY{lmGw# literal 0 HcmV?d00001 diff --git a/tgstation.dme b/tgstation.dme index 7d754da..f5229ec 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -671,6 +671,7 @@ #include "code\game\objects\items\weapons\explosives.dm" #include "code\game\objects\items\weapons\extinguisher.dm" #include "code\game\objects\items\weapons\flamethrower.dm" +#include "code\game\objects\items\weapons\garrot.dm" #include "code\game\objects\items\weapons\gift.dm" #include "code\game\objects\items\weapons\handcuffs.dm" #include "code\game\objects\items\weapons\holosign_creator.dm" From 0b8047974e1d8eeba23a7939f697cfce9d981f52 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 19 Nov 2016 18:27:13 +0000 Subject: [PATCH 26/55] Adds the pool noodle Includes icon, code was revised. Third time lucky.. --- code/game/objects/items/toys.dm | 36 ++++++++++++++++++++++++++++++++ icons/obj/toy.dmi | Bin 35173 -> 35376 bytes 2 files changed, 36 insertions(+) diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index c81e859..3ca84bc 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -1381,3 +1381,39 @@ name = "Warden action figure" icon_state = "warden" toysay = "Seventeen minutes for coughing at an officer!" + +// Pool noodle +/obj/item/toy/poolnoodle + icon = 'icons/obj/toy.dmi' + icon_state = "noodle" + name = "Pool noodle" + desc = "A strange, bulky, bendable toy that can annoy people." + force = 0 + color = "#000000" + w_class = 2.0 + throwforce = 1 + throw_speed = 10 //weeee + hitsound = 'sound/weapons/tap.ogg' + attack_verb = list("flogged", "poked", "jabbed", "slapped", "annoyed") + +/obj/item/toy/poolnoodle/attack(target as mob, mob/living/user as mob) + ..() + spawn(0) + for(var/i in list(1,2,4,8,4,2,1,2,4,8,4,2)) + user.dir = i + sleep(1) + +/obj/item/toy/poolnoodle/red + color = "#FF0000" + icon_state = "noodle" + item_state = "noodlered" + +/obj/item/toy/poolnoodle/blue + color = "#0000FF" + icon_state = "noodle" + item_state = "noodleblue" + +/obj/item/toy/poolnoodle/yellow + color = "#FFFF00" + icon_state = "noodle" + item_state = "noodleyellow" \ No newline at end of file diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 79c845cdba307edaeebf1e7a865150e8da819e4f..19750493e070e07253f1e7f4d64e52cda180aff2 100644 GIT binary patch delta 13126 zcmbWdbyQqU@HRM*5CQ}Up5RV!f(8%n?ykYz{gME|0wlN-+$FeMaCdiicbMV3d4K!u z*|TT=*>BFA>1)$nUAMaGsd{=l8onYH{wF2y)k{^=Mf8iaiIb&+i>19C1mcmJyD)6G z_~|WVtqO`Q>OIVaFL5#25nM~_Ruzu>;RY@cgF9MNB}ZD>F*ScR05EPi+_w0kOK2$Y zi`?8MBIkBvGC?rCHMF-}Vbc6ch?jnb{1N)srE;2%)0mOiY*H$q(QX5l@s=!0Gu$1B z3sC-*N)Q7}!FSbGT&K#<-$SfTz)hgf>W6gXik)sYJq)Zb^Ad8nHZc_@7w z{bNB`)Zp94k=)UOBj5T;zI&Ifv3B{AZs_v5J;jBw5`-q*z zFGi0&94~E`&**w0{7&`-y{=Yx@Hby^mpRT37#L?vrZ7uIweNaqI$;BHMjefNWWO1U zRuabx;8Y^Szn`T!Symhy^VGd!t2z)!d%ZC8ipoRnLtTwIMP4C;S*O~D!b_6BfaHC9 z{Ck}p8*cMK1RbV%r|$S$lDRA9p9Gw+6$qj+4Q!p-~7OTlvw34<<@1_n8cdUevl&u>H?u#SEIPCWEPryEYAm zgH$?Yb4~`Y8N3)?;0oZt$&kqS13~Br?Uiinbm#L|RP>MBESsIFD7(7#Yn@bhW%Ujj zH-w%;UXlD%{D>sZ=_cs3g30>qME9C31SrHk-+s*41*NHJ3wL3(tfgeueY5|*gw%?m zP2nNHC{N;XVY1k+boLd6jcKUCVI&BJN!MvT3$Lc=dzNIPe%z`FFPsD0D=yk>|0ey{7yqwL z<%sDoxo;}FO}_B=q7gKozi(@kCC)f|lkib*#Kk#Jhh;f>UtQLHW%dtdnhwE`(oVX9Co;};)_CZu61r%5 zLakjmz@^~HAQbs_$}<@(jz!#ThkD#$aqOyQxgj!JAr$cIA%v5i2Wlqb(zJn4N`Z*$ z`&lf^PLE`wD%RG^=Cx4pYfdN+QrAq7sVb5{mKu<_ayfB-MSz|gZg^c&$NlR4l-Srl z?LszDk2InG$NrHq)I zZQ|idG6VaZfe9h_!e%g=7&5{31IfEa){12e`H8)WfP5R#6#WJDxxQ^cNfP>e15*kFqE*&bLJDWcKND;m%JK4 zoUa7gTcI~ZIN>hhas(;AdM!SN_kS6{c9g?*_EWYBmt#sA)>Jt#wT#{V9{;65lp`sW zvmu%y3?-2^h2dLeKichW@22n8$Ar%(4OzQTFaC1p(S|dh6Yg7qTj#djRPR&C%!kQ* z1r5Qax~S{J*~|4-Uv)EvZ+I78m&-9NfR^HX!fE=^Fp6hOkXSp?vyZN4;~kM1Jr(w` zSNgm(k^){E#gxzSBv-MudB>dnPK8@MH?uUs+Aj%Wqbd5ciA55&0~}|4%79m>$^o#k z@2xFfZ?A$m!6D!ubD|PUKlof5f2hJi08c~*u<*UKkGYNBxhC=NaT_JZy*~uH``hf) zM{rW>5>JWvy~lDT&`>Ru(DuS0* zQ04fQEjV8CLnC`$yqyc)lD1#H@PmM_dm^#}tRGEP4Eps_!L5Q0FUSp;!12A9e#dJ1 z8jD8WGz4x3MN{4@OTiD~O2>D-Q5>(32KUNl3dTIhUD8<&0NM>7_)?F~+}ykW_RHs# zAW%dJvYb32u4yLrjA!_5SZsI`LicG1Q6>ZJMIK2=6c6(wGPNS%6y%W9;NowkdTvz7 zIqGgrujHNCAIx@-8w~&iF$oDBe4o>mmaBv5!AiUSXsX5o;NgU&#yy05U$?%CD8j=kQ3p+bIBPAvEj}n9>e)|T$ya+s8?H{y%eKB8Q z6p$-B82%2$?^x$Dr_R33Cn=glV$H8oJ zM|EvQ?kTKb1pt{=>C3HU}XaYJdqcmLpeYNfRj zqbn@*D?9zd!_%{njBE$X?(=6zFd7j#DJjJN=g+sG{#{A|-%FxT4y1qn{Fxd(2iGWLUen#h%bD_|(hJ{CE#V9UA|zTcGO>1pmn>|H8Q`{N_r&%Li=};r(_&!pTCZa99_HOt2PPO!s`R9-=FDYSC)Fk?i5O4f@&_U#yqjb7_U8dlvWNbDyj~xt%L^u*GMY3VSNMuB|HFjCh;Gwk z9lfV1=Gl~Q8A?%hyLX*QCDkND=Rs`XS@5?E*985W4M?lj871Tx{s>?s@wdn2>#xK^ z+$$3Fn#+FU@f#f?Wb0d4R!C7$%1usm_L)Q+-CI=y+Sexu4-fx=j;@l9nT`%LM}P2& z-Zh-S{T3D^Pc}*TbQ3X=^-Gvq!%9hLxV56E3f8ViW&*QN%Uz)XQ^)|~jN^mL$2jz- z1OB15Bs25&;zfpCpsJ~r?1skK@9u0J(gk~&v3!jRUY}JHgdJ;0!Q5Uf*4kEuHP_lM zieJ8YS(qB-#{z17_IC7!@&vz`Vt`kAqp|Iisy zR8(|!eV$n~KnT}h?knH_9Di7Z&SJa3zBY?dpw&==yq0GeH=)qa)P^fKY0KQm~cSL0kj+@MLe_uuTzmQ>MUn088laAKWz+ zX9Atkr=(vp;CjhE0g}LbhegktKY0g@dvx8FD-%ER;ck@``_11V)DwB&Nk~Y@Y&BVo zlM@0&M2@^?OkWo9_KH^XYq0(bpVlUpy213Y@Omr8n)W9bqzs_UoA2ECLO;<+z;??t z1r|IUGMKw{UqWKzzZDmA+cFG~_&YCuiw*lm2*J#5UtP`U`f%9@o;fXlb2$!{th-jO z)&gE2qU9L0`Nh9xV5CZN(P7rRP8dzfHw8fLEf7KHwf6!HZp&;KugH!gVW3L;F1RmU zrpuAvXjEQ={i&<#U0F$AYUUesQrG{e_I17SpzXYeKw34{GZ>xl)6eK=OqoXsF|mCC zq+;mU{Xm>q+77PTgx{Wz-gVl8yz)pYD?0DcN}c~aiQvGI?@kOgT7fzQLJE-rM1@pO zl2i~K4|t{eV8At-x%3OOigMGpxo~VA;2GJYU@wP|)cyN(zZuMQmZQe#jjB&e%La4j`C_fwbQ^cY04zKtKZ|;LUJEnXs0(a?^^+WYIKf_@mmL+>=Y~Eyeo@MNXbqIV<2Q;aL`ro z-pYd7dw;IHAm6BlgvY?qVivDxL|Xvu_~F3sVzNHE|G>5tf5C4C=<%shor2BEy4^J2 z6Y~0n&0p^5#2pUD$*S95PLD-aDG1zmT@)IWaqZXYOV`;gmkczz9#S7Y)m@IiZq!iK zjB_n7Fx<_?Am2*CF4oBhrB}YZLm*kW^y-X##j)d@Cw8DgK|S`xmAyqSVEQ`@Fp-p( z@0p%fo15Fr6_o%aCd&;3jZE6ELq}~De3-5(6^wRfM%r!pm^=vBv1XLVyLx(9ZRS{v zO-#nKjDPXn?dj6V95^^wcif2R1X__8)J#0R9$?BWFc{g|%^;(fS;D9|>V~^}tdEJ) z7-EBFuuHUcPOYca?Z73X-sSEh&>2v2ap9q(qp!!5L*#)BPQknEl9D&(=H?LXIy*)e zf*(B3uY4{eDh*POONx%#SZ?SKaC0sL(4!wcHGGh=+pBTP16iCDh}WLh0>;`+I-E!< z%vuMraA^%A&1$w+JO53YSRnY;*hm;#=qdgC6CkoTUzLyiGb2O6&re`wWyQlgp4Ga(HPjk1bL&_1(ny&};P^fg=Eia7Hl_KmvhPFw|>PwO+9v9Yn; z!-GPGfZp*`A(s1+BVw_7DLE@^G=)Uu&*Wq}5DOd#HZ;*E?UJ=4;GS}!zYOJr*{MO3 z*vyMi%u{;3o>`sfQq)_KJ`Wwadu+#P*gb3l&*I$A?=v$V2b>SEbZ&)5Z&?}yBsKdX zwT-@F!uxeUKYevIYB@{0Z!B8`Lu|2^$K57$T5oGBJ+H=|-~y2_tKdWU($dl^%f-&} zVLU_6PV#N;$t-&D$^?~+nK|EfvDVbo^z}G+Omospy0)>`#?8!x$x#V|fH*2XCOu>^ zis_4uhQ^?iRs{F+ddFd61lcvfW&7`%oI|%NE1x zWDG0h#3{_iqo(v8XZT#zXs0 zCA5Y(``E>f=g)zWSF1ggU>}(MrCqKq=pNOUVfQV~6Bhq7x3{xj+W!+p5?`Xq`+dNF z!*RWs@c-}jM~LPB+{CvgmuMLHheDUA(yC7wQ z{&jwzL`pMOtZV?^9Rb$~&6vjPq({5{2bq6z$j&|cW?E(RJOSAmfpKxoP>pXevdp?6 z3fejW=ZwbIg2=~{_wBb$ZN?!ID4n=Iz~I!XMbD4-CfqQAhdqkF3%=Es!Hs;G8_%F`Q=jEgj(QMwn*Ng%SX_lX@C!^=qSyL9m}TDxWxu(z z!myv4n++s-Gd@0kFenklS|@`CqCRq2_d~YZ!qJs4emI*g&!s!Pg7a`^Gnv|%)HVw@ zc!PeDdv#KGQHoMc9+--Yq5Mcc-m{6jIygXnS5{)aweKp{$1k*lp3`=oK>hnX>4Pkp zKiW0{N2km@nHggb==kh?l|(miP&rK6ik zQDcr!1?mOU$k0pHf*&Wft|ugo7RHgFv48AUjd`unR92ij+-3-ST9s&}iCI!k`GK&;mlK#9FZka6}$fuR{-l30GP$?PGe3^W2*Ect`(@p!YW^jUpBn$sNjkmW7 z@8UY!xCN<%R&f!XU$SY0teV7YY~Y6&3#buSwfSS4l{=i`0lPX@la~31Q=tI``d$a8 z4st(_g^U;!-1EtSkEomm7F&m}0l0YTe0#p63Mlk;0gM8o|@=RRP7K2Q2LOa+UR zb$Wj3lHGL|DgEK(-LK2&IPxu2v`$w^CN62q-N2a|YO3`H$H zBl?$tU7syoFj+RxSk`UpdD!?nK%-}Z&n-}?_~54_9-#)alqE}9(#5LS+But>n}1X5 z9<+uuOkciK)Ks^PLk4JSMtE?3C_Nfb(3j8A;Y5r-8nEe&?-V;0*8$qnl~j6H%YuPc zi~07{w6vk|j5^V=v4P-9$$Y?nzTYDfae?b(PPD5B>jsKfs~&^-f7q?wc=X#i*FTR& zwNichlxWf$dES|b2p5uGYH#qA_|ar4F@{F#9d?&(-Le_2AmF_7M!R9fXb7zj`3jNyDI`EP-vo7Z3VO0QDk9?+m zSQdM<&1n>FMc&U}0m73jF|h5*ty5 zlRwcMx%f>gp1~)jxH=A@EJ@C8f;~nhH8mxq3v~PU)}2k~qqF=OK8E~QEqKlg|VPU}-ta+T2*?It5yhkSsuS#Xv%v(Z0U7HviL*97+5au_B z9U0_1khfS^*^jz`3R!Jx0WGIlIY7=!1qFrh`}o+{w@1Es8KOY(DJ&{AcVh}URa;Az ztKih4nsqq!dIQ?~s<4HSh_+ZIX>P}@GSb%AIAsw$+uz=^_-Nj8c5$IBA}s9S>PkgP z8AuVN_OuyHDAU@?eb`Z9^mhtGNDzmuK8%z1Rk08EMt{HW7qtz<=6t^b8dD}Nc=GJ@ zJKOS2SzRwNr3VjR@4Ipp%StsKD5SFMA72{LL&Ep1EHlt`_62YWZvcY=PMGhxOKq*Z z!Y=OI-EGUk%hJK|BjPS4B_$!TAkUSIj0_UT7O(Z)-P>YUuk(QJ&1}e>$0=p;6FQH< zixNA}u*UvdWv+XDu$BO5!5h-*EMLU75XXcy62FQN%iN3r-Xj^U=Wq$q> z7!<_XBO@c5f2J{tlB_*tGwXAd(^zk8;H$1|Jyqk>Th!xjwkVd-WYf{VcU`Z|9!YDN z6C4i)8^0QP1zaZGx!)IgJDM;u5EJf=b?_mThyT*;c2%!o-A<>=KD3QP@XQEYoS?KyU#nde4uBfptv-L zpgj+N|JFH42urz-ANw(sK}$akaN5|;pdk;I>@H)+Pb;O=WOuAiuW5~;yIKa72ft`i zNXd@){hRbRE}jIh_{wJfV_@pSg7(h+ongSe|KltW#7;pG;3*)Ws8d`F3%h**zE~5q zod5wr!PQE;q->I)Qw=O`1wklAFO5(>u0w})FgnRdp-R3cm>|FY!kRPl>urS;7Zm+j zH4Gdss@WZ%v(>hS35JBXeEaMVh;5v1j+lS6mXe}19E{|HCvj-+?hZPa5kC|ls8cAu z1Uz^amA;}9v<`}r#h~uv)iVB;zC{vx(L1xgvl2EfCAE`@NXp2F>fe{R=$i4f##tX+ z<4cxYFmH$e65996&r;Nur>ptikG$XO*Y|BCM)aNeZ*lOj;6K$VS}YgGogAM=r$~bV zl8}~RyO#to1?wD7cbicj9v%+C`TUjuZ9n#$*M44`AIt&l_`c$q0k_tszmZALV`EPV z;s&rQ-QEEEO^^jwwDr(LBEqIEFK<0@U_v=sYF6nP<_c#M)t8%B8J`8d9)`lSG@?w$ zRy_M3GhfTe(;S@byE9h%vu49-<{qQauDr(i-rWD4grUNq9G~Fr1YKH{foDqIcIMg2 zR2@~R$IMGtqL&7Bc4_dM`CFKuB*0Fz{k zDmz~Hn@;Q>RPZBUus~G3zxl?uO>i!#83VU8Hi1V#aML3_Rk!*6OesMC zB6^d;|#mQT#KrV)0SKPCn&VxR{zpL5sa!Q=s9Bxf-|F0%z*b5DQJMqU^6qSAo*y0 zjqV0xc9tN?LtRYbePHPrdB#zG{)KZHcW_{}w7h(FVI$(`h@_ux>)`I5-PoA?3+Evn zs9s&&wir4sSJE3h4j$1^o*dPT%gxIehi(=Bv0LV$+S!tlNeBns(nlJF1G`rIUzh51 z_nRe6JQqN39FjM_vT&Q+|0B7#)YMoQ&AI{94C{^U?d{(`%1P0-g9Xjon5dq(o2mln zse?PvJ#2>SnJ>OJv*GG&#U|r^IbE;J8*cY({wj&Nxms2A(V*W{lpl3q?}n=pMz7IB z3*o>!X_;0o)wMr(9_gemtGBtg&jrR~Do$MZy{DU37~UXn486Y;YX|eyz#;$ESQ1XH z{H*bwRM7~2D6;L4M*G}pZYr;P8`#u@2$`OqX7D&fUB0Hj_02x%m)?Rgp(}%C z%5|&m<9?;%^>}OJfW5RQp%i)Sb)KW4ZZZORR8;>lm^DNOkdc|17{acCnFSsytHpD# zj7Z?yMzHcS^z3`wU0pfm=jS`kgueZGYeqV-~?) z2*vD5gJfrAsZLIDTwnZE`$gSs95g$hFZjl?!Q)^(>vJzIF}=D+8jfw}z-5Ns5Z|go z4!a-k4Tk0=Yw#oB)0@V7in!Pye9iw|E_WA6WAMDLN`zJo{@Okeg>)PgXnIU>cJ<2L zE73t$Hx-|Nzma=st(>#X<>t*#7ixo7!b(GGYHHU-Uob<7EqZx$`Bn^4 zcjOhViG!wll^xp1z`N~-fmVGkUjhPx>G}EhYH9#2 zBV+gCB7vG(VOd#TPL3#!W#`ykjJ!(bhcI^CP>1A;&Z>^8-%u!2&A`CG$Jci_Z}Aw| zN*xiWzr4Mjy~a~A5EKwdKX)zc>g`3DG%%6=;{zxwW74CM_!BOoFof~nn~s;X?Ua9nl0iL8QEBJ-Ep zvtYF^Y<6d)#)pZ~{zJsUw~^uD?%`onfA7Y+DmpwNU#QHWSOqmxV|OmZ z5*YN>XxBAOkAu=2cX^!mF0ppc$EpGPY^_vk+V;V%F5rMp&X{$I3mCOs+0f^>zA#> zXf6PL-5Y-eoonMY1nAV4%|6DW9FV|i+;3Ck@p+;2=`G$ZOZ(aSUvAd}Y%mM)u)aGh z56!(`blb}VRw2wj{Dg+bmbItz_O$3Vf6V79IJa=s4)RdXYNF8X?Ck1irySjb(T;c> zJ5%BJYZ*V#(i-JNJ{%vyg4?2+x^0&A9{^?qyoKk{6`DQ}4u(ONuc~-?Hb5MG>&tCX znvs+wb$diOaB3%Jq*Y_L5SFE=su~y`9!|9|J){x-Jz`Bg{2Rw+nt(44#J>6b`!wt4 zHou3_u+gER<^zP!pFjIIL&lO0(_W0PG3^z#J5bS=zw1mTM{4*i?px zhE#WlQ+k^{FChhOZz`O3<(IGQv8$nuxl!Ybw>lQ8crGBkWChH<0N0@q`I4t2^PV4j zU8(y}Pdc-tpY&xnBD?hK>+3~LO-;EBe0-_7G6~4z|LKIe+)kahUZ>8kS?zcEy;U{H zZ{5R+4HRl87JWEo%JhmE5-+n3&&xb~!vahz$!vp6>5Q0$m#& zJw52halJ^+a+i=zI%at?4Xm2wh~Q?qc!zBccbPf#`FH>7o(Qi^gnvupb-(BWuoTz} zPqu$(41y1O-F#-JieOz!=l3q+*Pt0MRG|UML`Nqlat;oh&vGDP1r;5uGFRaE_;EbT zKt+W@mxNSMFyraT2gJSSH#gKDK1hbZehUStf}#|&fZ#*v|u!uulypsV8CW{ETBm-e5<~$O>_0oLqJ5d zy!E)Ltv8T>Urvls@e9L4#GCYL4$*6D?{z)M6~%9ZsUk=o$%u=K$JnSkkByFu)G~n3 zJ0>kH0<6WnJ(i(aeE0F*EbcI-S6J+@x3NSX;n|C z)bA;FWE5$d@(>XbNpaD^$N$Pz1G7K=YQfY~JpSQ@ysWHh>)l59V4T72D-Jy9!~KNv z<*}famX`2U+tY=N2s$f<(#drF^r8WIda+nLx%|WIf%44Y9lM|P%d!Mm4QLK2=T;w( zkdVafK{mw_pzfQ+!2f%5yjZSn-}2*Be7sG`;$YL@f72*qAZnNXhi}O(`TmapuI}vM zJId&t$bM5+FD#HZ;!F!_jqh}?k5`xh>|y`{e0zv!eY|%#yU^(DonE0cCM2|b^vEqZ#)KtYyfzpMKN>vE*oy5WWX zNcO!&`Ra>^jxxO_RXjXA2&dgrfxyk2NnMx7CKYCX#HgGt`0pgp(|c)OY>FqT0>7yF zz>!^-8(rg{uoU<*Icty<()qOXnmztFS-$^V9Buleq;33Yp+?4bGB1LP1RI-D4rG>= zSeB~w#;%9C4o!*dZLlxP3?m+Pys!4g4O+Sy3-^{9s=6IGaGCW>C~0V%XBc0ysaeZOtL`)k5;f?eO<6W`^oy5}0r=m#fSH^xi0v*)MNA&NsRT zw)$h#7%}bCqJQMV+*6o^s~=7!t*x#JqUe+CeSDhP4Zyb}l1WKP`LrV#86K`;Vq#K$ z?+%t7zb86C`|wzXd>9{iQtW-H71B$nX=q|tb}p_34{?QeN7A&~{P>ZOxOP7|m<(wM zgou#;de<#CiQo&+r!cqI47r2DOG`^5laY}%LvI#~`b`@P?FN7S0;geV$8LpNou$i{ zQCMW9mbWd&3hE)^$kXv#1jY`paaTzA!?$7goewb&u%Cmo&m}3I4DW`Prwt?H%ejz2 zyr4c>Z5JWo#ZyyLlarhK-puJAH7Vtsql8gWR1^&bOERpf(&GKRS&21iyLTY0DoB zKz4$Gz`#KEq`dHOl-AbP*!Xz(GoVOX-;fkE7P-80onJfjza*2{hTYz1vaPxibE?wj zOVSr{boqc=gJi_S5Z=Fk-#N@xnID|%?fGNX=q8Ph94tW}9oZDOwWNpC33POHsNc@O zgB@f3jQN{D#PgPr@JGQ1&E$W|1y0xp{A=uXA51#58(trzFdG)!!+%e*=S3%IC0Y!l zO=DxYo*m-k@j0wGN-Rw73`A-zP*twvuk3Cm+@T7sDI&`F9nZXeC_W+7fv6 zgMBp$4s@W&*Rzc|DGP!86O;G1LE#LgC_G$T375O0FW&lGP!^&KE~z>J31a``Xwb5# z{Al=fvt8twcqXhmOB?1cjbYWA3=3y&l@u3$6&e~UJghO7uGOH27#7Qlr%c;T-%lL;jL9Go7s>e z$K~+w@IQ|)JPg#4UC+vDdaHg>`57Od2lhH~(S;;nxtt7!UU2&qq>7t_*X<3sIYMti z_&-VKEjVA5B%vpgl)eM9AZu9TJ17)@hy6>bAaC&EVX$G3<6t@*^nck7!i__Hd{d7MU! zo&0V`i3fMrvo^@cS(CE{gMFZ?CGq=E?c0;@W8>agx8C31e@`w~x^BZvUU#!@uj(QQ z`)`f1Ig5a{XDcw_6Cv_HGFvLXB*ehT6a}{^!FW28vWJ+FSq6N}h7y5H_;+7g#b;M7 z{<+Fm2nbUDX^sQ+bzv!t{V|bP-?27@Mwo5( zL=;6uMg2GOr1RfMI2uYKt|=c*+Xc!cpF(R@`ei*NR!J!O;oDK!|=!3|5`?%GcdYySW9k1Wc)PvJFxEKGhI%3kG1 zz`gh`+6GE3`A_Pdot=v@5p<-F1~L6PyR-i|e4GX{R81%AD#uN6oVS?w(*LM`aYqq1 yAsIVc(*!V&X~3z^JpFeSjBQ(HV*fkbojp%#u{?FV))Pa(kCd3aXqm9#xBmr*KrONW delta 12921 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%0D< zKn082h^<fu|pfIC8KEzs8Yf65LfBlwMP{H|=V&;NE>u(${nr!d~kM|2SI^Fdlk Ks`Ra~@Baa8g&GS0 From 6cb66e31034dc28f5b02537a30cd45ba79aa1551 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 19 Nov 2016 18:40:43 +0000 Subject: [PATCH 27/55] Adds missing plant spawner Not entirely sure where/how this is used but compiler said it wanted it --- .../game/objects/effects/spawners/lootdrop.dm | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm index 51d1589..c9355d4 100644 --- a/code/game/objects/effects/spawners/lootdrop.dm +++ b/code/game/objects/effects/spawners/lootdrop.dm @@ -336,3 +336,34 @@ /obj/structure/closet/crate/secure/loot = 20, "" = 80 ) + +/obj/effect/spawner/lootdrop/plants +//Total of 279 items. (26/10/2015) + name = "plant_spawner" + loot = list( + /obj/item/weapon/reagent_containers/food/snacks/grown/corn = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/cherries = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/potato = 20, + /obj/item/weapon/reagent_containers/food/snacks/grown/grapes = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/cabbage = 15, + /obj/item/weapon/reagent_containers/food/snacks/grown/berries = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/sugarcane = 15, + /obj/item/weapon/reagent_containers/food/snacks/grown/apple = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/watermelon = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lemon = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lime = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/banana = 2, + /obj/item/weapon/reagent_containers/food/snacks/grown/chili = 2, + /obj/item/weapon/reagent_containers/food/snacks/grown/eggplant = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/soybeans = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/tomato = 15, + /obj/item/weapon/reagent_containers/food/snacks/grown/wheat = 30, + /obj/item/weapon/reagent_containers/food/snacks/grown/rice = 10, + /obj/item/weapon/reagent_containers/food/snacks/grown/carrot = 15, + /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/plumphelmet = 5, + /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/chanterelle = 5, + "" = 10 + ) From 9f3d0a98309fc088469315fb98078b0a7fbb3762 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Tue, 22 Nov 2016 22:55:44 +0000 Subject: [PATCH 28/55] Converted turf initialisations Now that turf's can parse the "initial_gas_mix" on New() I can use that on map load --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 347 +++++------------- 1 file changed, 98 insertions(+), 249 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index 45e759d..a8a7454 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -44036,9 +44036,7 @@ /obj/machinery/r_n_d/server/robotics, /turf/open/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bTl" = ( @@ -44050,9 +44048,7 @@ }, /turf/open/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bTm" = ( @@ -44560,9 +44556,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Server Walkway"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bUv" = ( @@ -44572,9 +44566,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Server Walkway"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bUw" = ( @@ -45390,9 +45382,7 @@ /obj/machinery/r_n_d/server/core, /turf/open/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bVQ" = ( @@ -45407,9 +45397,7 @@ }, /turf/open/floor/bluegrid{ name = "Server Base"; - nitrogen = 500; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=500;TEMP=80" }, /area/toxins/server) "bVR" = ( @@ -52160,9 +52148,8 @@ pump_direction = 0 }, /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "ciV" = ( @@ -52170,16 +52157,14 @@ c_tag = "Atmospherics Waste Tank" }, /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "ciW" = ( /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "ciX" = ( @@ -52747,9 +52732,8 @@ output = 63 }, /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "ckq" = ( @@ -52757,9 +52741,8 @@ dir = 4 }, /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "ckr" = ( @@ -53229,9 +53212,8 @@ pixel_y = 1 }, /turf/open/floor/engine{ - name = "vacuum floor"; - nitrogen = 0.01; - oxygen = 0.01 + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" }, /area/atmos) "clw" = ( @@ -55415,9 +55397,7 @@ "cpU" = ( /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cpV" = ( @@ -55425,9 +55405,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cpW" = ( @@ -55435,9 +55413,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cpX" = ( @@ -55457,9 +55433,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cpY" = ( @@ -55467,9 +55441,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cpZ" = ( @@ -55477,9 +55449,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqa" = ( @@ -55960,9 +55930,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqU" = ( @@ -55970,9 +55938,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqV" = ( @@ -55983,9 +55949,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqW" = ( @@ -55993,9 +55957,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqX" = ( @@ -56003,9 +55965,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cqY" = ( @@ -56185,11 +56145,8 @@ pump_direction = 0 }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "crr" = ( @@ -56197,11 +56154,8 @@ c_tag = "Atmospherics Plasma Tank" }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "crs" = ( @@ -56210,11 +56164,8 @@ pixel_x = -1 }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "crt" = ( @@ -56518,9 +56469,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "crX" = ( @@ -56528,9 +56477,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "crY" = ( @@ -56538,9 +56485,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "crZ" = ( @@ -56548,9 +56493,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "csa" = ( @@ -56623,21 +56566,15 @@ output = 11 }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "css" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "cst" = ( @@ -56645,11 +56582,8 @@ dir = 4 }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "csu" = ( @@ -56851,9 +56785,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "csR" = ( @@ -56869,9 +56801,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "csS" = ( @@ -56882,9 +56812,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "csT" = ( @@ -57107,20 +57035,14 @@ pixel_y = 1 }, /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "cts" = ( /turf/open/floor/engine{ - carbon_dioxide = 0; name = "plasma floor"; - nitrogen = 0; - oxygen = 0; - toxins = 70000 + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" }, /area/atmos) "ctt" = ( @@ -57395,9 +57317,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "ctV" = ( @@ -57410,9 +57330,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "ctW" = ( @@ -57423,9 +57341,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "ctX" = ( @@ -57434,9 +57350,7 @@ dir = 8; icon_state = "vault"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "ctY" = ( @@ -57448,9 +57362,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "ctZ" = ( @@ -57461,9 +57373,7 @@ }, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cua" = ( @@ -58026,9 +57936,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cvb" = ( @@ -58217,10 +58125,8 @@ pump_direction = 0 }, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cvx" = ( @@ -58228,18 +58134,14 @@ c_tag = "Atmospherics CO2 Tank" }, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cvy" = ( /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cvz" = ( @@ -58513,9 +58415,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cwa" = ( @@ -58523,9 +58423,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cwb" = ( @@ -58533,9 +58431,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cwc" = ( @@ -58748,19 +58644,15 @@ output = 35 }, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cwB" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cwC" = ( @@ -58768,10 +58660,8 @@ dir = 4 }, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cwD" = ( @@ -59062,9 +58952,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cxi" = ( @@ -59072,9 +58960,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cxj" = ( @@ -59082,9 +58968,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cxk" = ( @@ -59092,9 +58976,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cxl" = ( @@ -59363,10 +59245,8 @@ pixel_y = 1 }, /turf/open/floor/engine{ - carbon_dioxide = 50000; name = "co2 floor"; - nitrogen = 0; - oxygen = 0 + initial_gas_mix = "o2=0;n2=0;co2=50000" }, /area/atmos) "cxL" = ( @@ -59552,9 +59432,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cyi" = ( @@ -59562,9 +59440,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cyj" = ( @@ -59574,9 +59450,7 @@ /obj/machinery/light, /turf/open/floor/bluegrid{ name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cyk" = ( @@ -59584,9 +59458,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cyl" = ( @@ -59594,9 +59466,7 @@ /turf/open/floor/bluegrid{ icon_state = "dark"; name = "Mainframe Floor"; - nitrogen = 100; - oxygen = 0; - temperature = 80 + initial_gas_mix = "o2=0;n2=100;TEMP=80" }, /area/tcommsat/server) "cym" = ( @@ -62535,9 +62405,8 @@ id = "n2_in" }, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cEM" = ( @@ -62546,9 +62415,8 @@ id_tag = "n2_sensor" }, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cEN" = ( @@ -62564,9 +62432,8 @@ pump_direction = 0 }, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cEO" = ( @@ -62577,8 +62444,7 @@ }, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cEP" = ( @@ -62588,8 +62454,7 @@ }, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cEQ" = ( @@ -62606,8 +62471,7 @@ }, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cER" = ( @@ -62618,8 +62482,7 @@ }, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cES" = ( @@ -62630,8 +62493,7 @@ }, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cET" = ( @@ -62648,8 +62510,7 @@ }, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cEU" = ( @@ -62991,24 +62852,21 @@ network = list("SS13") }, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cFL" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cFM" = ( /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cFN" = ( @@ -63019,23 +62877,20 @@ }, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cFO" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cFP" = ( /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cFQ" = ( @@ -63050,23 +62905,20 @@ }, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cFR" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cFS" = ( /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cFT" = ( @@ -63362,25 +63214,22 @@ "cGI" = ( /obj/machinery/light/small, /turf/open/floor/engine{ - name = "n2 floor"; - nitrogen = 100000; - oxygen = 0 + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" }, /area/atmos) "cGJ" = ( /obj/machinery/light/small, /turf/open/floor/engine{ name = "o2 floor"; - nitrogen = 0; - oxygen = 100000 + initial_gas_mix = "o2=100000;n2=0" }, /area/atmos) "cGK" = ( /obj/machinery/light/small, /turf/open/floor/engine{ name = "air floor"; - nitrogen = 10580; - oxygen = 2644 + initial_gas_mix = "o2=2644;n2=10580" }, /area/atmos) "cGL" = ( From c67daf539ed3e7ed3c2ecbd16a44e6b4d4203adf Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 14:44:52 +0000 Subject: [PATCH 29/55] Re-adds the pool Had to work it into /tg/ using their procs. Will need to be tested thoroughly to make sure it's working exactly as before --- code/datums/wires/poolcontroller.dm | 60 +++ code/game/machinery/poolcontroller.dm | 358 +++++++++++++ code/game/machinery/pooldrain.dm | 152 ++++++ code/game/objects/structures/pool.dm | 485 ++++++++++++++++++ .../mob/living/simple_animal/hostile/shark.dm | 94 ++++ icons/turf/pool.dmi | Bin 0 -> 41516 bytes sound/effects/fillingwatter.ogg | Bin 0 -> 36733 bytes sound/effects/pooldrain.ogg | Bin 0 -> 28630 bytes sound/effects/splash.ogg | Bin 0 -> 19099 bytes sound/effects/water_wade1.ogg | Bin 0 -> 11450 bytes sound/effects/water_wade2.ogg | Bin 0 -> 10965 bytes sound/effects/water_wade3.ogg | Bin 0 -> 9065 bytes sound/effects/water_wade4.ogg | Bin 0 -> 10698 bytes sound/effects/watersplash.ogg | Bin 0 -> 11474 bytes sound/misc/crack.ogg | Bin 0 -> 5418 bytes sound/misc/crunch.ogg | Bin 0 -> 9517 bytes tgstation.dme | 5 + 17 files changed, 1154 insertions(+) create mode 100644 code/datums/wires/poolcontroller.dm create mode 100644 code/game/machinery/poolcontroller.dm create mode 100644 code/game/machinery/pooldrain.dm create mode 100644 code/modules/mob/living/simple_animal/hostile/shark.dm create mode 100644 icons/turf/pool.dmi create mode 100644 sound/effects/fillingwatter.ogg create mode 100644 sound/effects/pooldrain.ogg create mode 100644 sound/effects/splash.ogg create mode 100644 sound/effects/water_wade1.ogg create mode 100644 sound/effects/water_wade2.ogg create mode 100644 sound/effects/water_wade3.ogg create mode 100644 sound/effects/water_wade4.ogg create mode 100644 sound/effects/watersplash.ogg create mode 100644 sound/misc/crack.ogg create mode 100644 sound/misc/crunch.ogg diff --git a/code/datums/wires/poolcontroller.dm b/code/datums/wires/poolcontroller.dm new file mode 100644 index 0000000..8e28868 --- /dev/null +++ b/code/datums/wires/poolcontroller.dm @@ -0,0 +1,60 @@ +/datum/wires/poolcontroller + randomize = 4 + holder_type = /obj/machinery/poolcontroller + +var/const/POOL_WIRE_DRAIN = 1 +var/const/POOL_WIRE_EMAG = 2 +var/const/POOL_WIRE_ELECTRIFY = 4 + +/datum/wires/poolcontroller/interactable(var/mob/living/L) + var/obj/machinery/poolcontroller/P = holder + if(!istype(L, /mob/living/silicon)) + if(P.seconds_electrified) + if(P.shock(L, 100)) + return 0 + if(P.panel_open) + return 1 + return 0 + +/datum/wires/poolcontroller/interact(var/mob/living/user) + if(interactable(user)) + var/obj/machinery/poolcontroller/P = holder + P.attack_hand(user) + +/datum/wires/poolcontroller/ui_interact() + var/obj/machinery/poolcontroller/P = holder + . += ..() + . += "
The orange light is [P.drainable ? "blinking" : "off"].
" + . += "The blue light is [P.emagged ? "flashing" : "off"].
" + . += "The red light is [P.seconds_electrified ? "on" : "off"].
" + +/datum/wires/poolcontroller/on_pulse(var/index) + var/obj/machinery/poolcontroller/P = holder + switch(index) + if(POOL_WIRE_DRAIN) + P.drainable = 0 + if(POOL_WIRE_EMAG) + if(P.emagged) + P.emagged = 0 + if(!P.emagged) + P.emagged = 1 + if(POOL_WIRE_ELECTRIFY) + P.seconds_electrified = 30 + + +/datum/wires/poolcontroller/on_cut(var/index, var/mended) + var/obj/machinery/poolcontroller/P = holder + switch(index) + if(POOL_WIRE_DRAIN) + if(mended) + P.drainable = 0 + else + P.drainable = 1 + if(POOL_WIRE_EMAG) + if(mended) + P.emagged = 0 + if(POOL_WIRE_ELECTRIFY) + if(mended) + P.seconds_electrified = 0 + else + P.seconds_electrified = -1 \ No newline at end of file diff --git a/code/game/machinery/poolcontroller.dm b/code/game/machinery/poolcontroller.dm new file mode 100644 index 0000000..1147da8 --- /dev/null +++ b/code/game/machinery/poolcontroller.dm @@ -0,0 +1,358 @@ + +//Originally stolen from paradise. Credits to tigercat2000. +//Modified a lot by Kokojo. +/obj/machinery/poolcontroller + name = "Pool Controller" + desc = "A controller for the nearby pool." + icon = 'icons/turf/pool.dmi' + icon_state = "poolcnorm" + anchored = 1 + density = 1 + use_power = 1 + idle_power_usage = 75 + var/list/linkedturfs = list() //List contains all of the linked pool turfs to this controller, assignment happens on New() + var/temperature = "normal" //The temperature of the pool, starts off on normal, which has no effects. + var/srange = 6 //The range of the search for pool turfs, change this for bigger or smaller pools. + var/linkedmist = list() //Used to keep track of created mist + var/misted = 0 //Used to check for mist. + var/obj/item/weapon/reagent_containers/beaker = null + var/cur_reagent = "water" + //var/datum/wires/poolcontroller/wires = null + var/drainable = 0 + var/drained = 0 + var/bloody = 0 + var/lastbloody = 99 + var/obj/machinery/drain/linkeddrain = null + var/timer = 0 //we need a cooldown on that shit. + var/reagenttimer = 0 //We need 2. + var/seconds_electrified = 0//Shocks morons, like an airlock. + +/obj/machinery/poolcontroller/New() //This proc automatically happens on world start + wires = new(src) + for(var/turf/simulated/pool/water/W in range(srange,src)) //Search for /turf/simulated/beach/water in the range of var/srange + src.linkedturfs += W + for(var/obj/machinery/drain/pooldrain in range(srange,src)) + src.linkeddrain += pooldrain + ..() //Always call your parents when you're a new thing. + +/obj/machinery/poolcontroller/emag_act(user as mob) //Emag_act, this is called when it is hit with a cryptographic sequencer. + if(!emagged) //If it is not already emagged, emag it. + user << "\red You disable \the [src]'s temperature safeguards." //Inform the mob of what emagging does. + emagged = 1 //Set the emag var to true. + +/obj/machinery/poolcontroller/attackby(obj/item/weapon/W, mob/user) + ..() + if(isrobot(user)) + return + if(istype(W, /obj/item/weapon/screwdriver) && anchored) + panel_open = !panel_open + user << "You [panel_open ? "open" : "close"] the maintenance panel." + overlays.Cut() + if(panel_open) + overlays += image(icon, "wires") + updateUsrDialog() + return + else if(istype(W, /obj/item/device/multitool)||istype(W, /obj/item/weapon/wirecutters)) + if(panel_open) + attack_hand(user) + updateUsrDialog() + return + + else + if(stat & (NOPOWER|BROKEN)) + return + if (istype(W,/obj/item/weapon/reagent_containers/glass/beaker/large)) + if(beaker) + user << "A beaker is already loaded into the machine." + return + + if(W.reagents.total_volume >= 100 && W.reagents.reagent_list.len == 1) //check if full and allow one reageant only. + beaker = W + user.drop_item() + W.loc = src + user << "You add the beaker to the machine!" + updateUsrDialog() + for(var/datum/reagent/R in beaker.reagents.reagent_list) + cur_reagent = "[R.name]" + if(adminlog) + log_say("[key_name(user)] has changed the pool's chems to [R.name]") + message_admins("[key_name_admin(user)] has changed the pool's chems to [R.name].") + + + else + user << "This machine only accepts full large beakers of one reagent." + + + +/obj/machinery/vending/attack_paw(mob/user) + return attack_hand(user) + +//procs +/obj/machinery/poolcontroller/proc/shock(mob/user, prb) + if(stat & (BROKEN|NOPOWER)) // unpowered, no shock + return 0 + if(!prob(prb)) + return 0 + var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread + s.set_up(5, 1, src) + s.start() + if(electrocute_mob(user, get_area(src), src, 0.7)) + return 1 + else + return 0 + +/obj/machinery/poolcontroller/proc/wires() + return wires.ui_interact() + +/obj/machinery/poolcontroller/proc/poolreagent() + for(var/turf/simulated/pool/water/W in linkedturfs) + for(var/mob/living/carbon/human/swimee in W) + if(beaker && cur_reagent) + beaker.reagents.reaction(swimee, VAPOR, 0.03) //3 percent + for(var/datum/reagent/R in beaker.reagents.reagent_list) + swimee.reagents.add_reagent(R.id, 0.5) //osmosis + for(var/obj/objects in W) + if(beaker && cur_reagent) + beaker.reagents.reaction(objects, VAPOR, 1) + reagenttimer = 4 + + +/obj/machinery/poolcontroller/process() + updatePool() //Call the mob affecting proc) + if(timer > 0) + timer-- + updateUsrDialog() + if(reagenttimer > 0) + reagenttimer-- + if(stat & (NOPOWER|BROKEN)) + return + else if(reagenttimer == 0 && !drained) + poolreagent() + +/obj/machinery/poolcontroller/proc/updatePool() + if(!drained) + for(var/turf/simulated/pool/water/W in linkedturfs) //Check for pool-turfs linked to the controller. + for(var/mob/M in W) //Check for mobs in the linked pool-turfs. + if(isobserver(M)) + continue + + //End sanity checks, go on + switch(temperature) //Apply different effects based on what the temperature is set to. + if("Scalding") //Burn the mob. + M.bodytemperature = min(500, M.bodytemperature + 35) //heat mob at 35k(elvin) per cycle + // if(M.bodytemperature >= 400 && !M.stat) + // M << "You're boiling alive!" + + if("Frigid") //Freeze the mob. + M.bodytemperature = max(80, M.bodytemperature - 35) //cool mob at -35k per cycle, less would not affect the mob enough. + // if(M.bodytemperature <= 215 && !M.stat) + // M << "You're being frozen solid!" + + if("Normal") //Normal temp does nothing, because it's just room temperature water. + + if("Warm") //Gently warm the mob. + M.bodytemperature = min(360, M.bodytemperature + 20) //Heats up mobs till the termometer shows up + + if("Cool") //Gently cool the mob. + M.bodytemperature = max(250, M.bodytemperature - 20) //Cools mobs till the termometer shows up + var/mob/living/carbon/human/drownee = M + if(drownee.stat == DEAD) + continue + if(drownee && drownee.lying && !drownee.internal) + if(drownee.stat != CONSCIOUS) + drownee.adjustOxyLoss(9) + drownee << "You're quickly drowning!" + else + if(!drownee.internal) + drownee.adjustOxyLoss(4) + if(prob(35)) + drownee << "You're lacking air!" + + for(var/obj/effect/decal/cleanable/decal in W) + if(bloody < 800) + animate(decal, alpha = 10, time = 20) + spawn(25) + qdel(decal) + if(istype(decal,/obj/effect/decal/cleanable/blood) || istype(decal, /obj/effect/decal/cleanable/trail_holder)) + bloody++ + if(bloody > lastbloody) + changecolor() + +/obj/machinery/poolcontroller/proc/changecolor() + lastbloody = bloody+99 + switch(bloody) + if(0 to 99) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FFFFFF" + color1.watereffect.color = "#FFFFFF" + if(100 to 199) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FFDDDD" + color1.watereffect.color = "#FFDDDD" + if(100 to 199) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FFCCCC" + color1.watereffect.color = "#FFCCCC" + if(200 to 299) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FFBBBB" + color1.watereffect.color = "#FFBBBB" + if(300 to 399) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FFAAAA" + color1.watereffect.color = "#FFAAAA" + if(400 to 499) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF9999" + color1.watereffect.color = "#FF9999" + if(500 to 599) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF8888" + color1.watereffect.color = "#FF8888" + if(600 to 699) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF7777" + color1.watereffect.color = "#FF7777" + if(700 to 799) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF7777" + color1.watereffect.color = "#FF7777" + if(800 to 899) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF6666" + color1.watereffect.color = "#FF6666" + if(900 to INFINITY) + for(var/turf/simulated/pool/water/color1 in linkedturfs) + color1.color = "#FF5555" + color1.watereffect.color = "#FF5555" + src.bloody = 1000 + +/obj/machinery/poolcontroller/proc/miston() //Spawn /obj/effect/mist (from the shower) on all linked pool tiles + for(var/turf/simulated/pool/water/W in linkedturfs) + var/M = new /obj/effect/mist(W) + if(misted) + return + linkedmist += M + + misted = 1 //var just to keep track of when the mist on proc has been called. + +/obj/machinery/poolcontroller/proc/mistoff() //Delete all /obj/effect/mist from all linked pool tiles. + for(var/obj/effect/mist/M in linkedmist) + qdel(M) + misted = 0 //no mist left, turn off the tracking var + +/obj/machinery/poolcontroller/attack_hand(mob/user) + if(stat & (NOPOWER|BROKEN)) + return + else + user.set_machine(src) + var/dat = "" + if(panel_open) + dat += wires() + + dat += text({" +
Pool Controller Panel

+ Current temperature : [temperature]
+
Drain is [drainable ? "active" : "unactive"]
"}) + if(beaker) + dat += "
Remove Beaker
" + dat += "Duplicator filled with [cur_reagent].


" + if(!beaker) + dat += "No beaker loaded


" + + dat += text({"Pool status : "}) + if(timer < 45) + switch(drained) + if(0) + dat += "Full
" + if(1) + dat += "Drained
" + if(timer >= 45) + dat += "Warning. Do not approach drain!
" + + dat += "[timer] seconds left until pool can operate again.
" + + if(timer == 0 && drained == 0) + if(emagged) + dat += "Scalding
" + dat += "Warm
" + dat += "Normal
" + dat += "Cool
" + if(emagged) + dat += "Frigid
" + if(drainable && !drained && !timer) + dat += "Drain Pool
" + if(drainable && drained && !timer) + dat += "Fill Pool
" + + + + + var/datum/browser/popup = new(user, "Pool Controller", name, 350, 550) + popup.set_content(dat) + popup.open() + +/obj/machinery/poolcontroller/Topic(href, href_list) + if(!in_range(src, usr)) + return + if(!isliving(usr)) + return + if(href_list["beaker"]) + if(beaker) + var/obj/item/weapon/reagent_containers/glass/B = beaker + B.loc = loc + beaker = null + if(href_list["Scalding"]) + if(emagged) + timer = 10 + src.temperature = "Scalding" + src.icon_state = "poolcscald" + if(!misted) + miston() + if(!emagged) + message_admins("[key_name_admin(usr)] is trying to use href exploits with the poolcontroller") + if(href_list["Warm"]) + timer = 10 + src.temperature = "Warm" + src.icon_state = "poolcwarm" + mistoff() + if(href_list["Normal"]) + timer = 10 + src.temperature = "Normal" + src.icon_state = "poolcnorm" + mistoff() + if(href_list["Cool"]) + timer = 10 + src.temperature = "Cool" + src.icon_state = "poolccool" + mistoff() + if(href_list["Frigid"]) + if(emagged) + timer = 10 + src.temperature = "Frigid" + src.icon_state = "poolcfrig" + mistoff() + if(!emagged) + message_admins("[key_name_admin(usr)] is trying to use href exploits with the poolcontroller") + if(href_list["Activate Drain"]) + if(drainable) //Drain is activated + if(linkeddrain.active == 1) + return + if(timer > 0) + return + else + mistoff() + linkeddrain.active = 1 + linkeddrain.timer = 15 + timer = 60 + if(linkeddrain.status == 0) + new /obj/effect/whirlpool(linkeddrain.loc) + temperature = "None" + icon_state = "poolcnorm" + if(linkeddrain.status == 1) + new /obj/effect/effect/waterspout(linkeddrain.loc) + temperature = "Normal" + if(!drainable) + message_admins("[key_name_admin(usr)] is trying to use href exploits with the poolcontroller") + update_icon() + updateUsrDialog() diff --git a/code/game/machinery/pooldrain.dm b/code/game/machinery/pooldrain.dm new file mode 100644 index 0000000..8e35a9a --- /dev/null +++ b/code/game/machinery/pooldrain.dm @@ -0,0 +1,152 @@ +/obj/machinery/drain + name = "Drain" + icon = 'icons/turf/pool.dmi' + icon_state = "drain" + desc = "This removes things that clog the pool." + anchored = 1 + var/active = 0 + var/status = 0 //1 is drained, 0 is full. + var/timer = 0 + var/cooldown + var/obj/machinery/poolcontroller/poolcontrol = null + +/obj/machinery/drain/initialize() + for(var/obj/machinery/poolcontroller/control in range(5,src)) + src.poolcontrol += control + +/obj/machinery/drain/process() + if(!status) //don't drain an empty pool. + for(var/obj/item/absorbo in orange(1,src)) + if(absorbo.w_class == 1) + step_towards(absorbo, src) + spawn(7) //Gives them just the time to pick their items up. + for(var/obj/item/absorb in range(0,src)) + if(absorb.w_class == 1) + for(var/obj/machinery/poolfilter/filter in range(3,src)) + absorb.loc = filter + if(active) + if(status) //if filling up, get back to normal position + if(timer > 0) + playsound(src, 'sound/effects/fillingwatter.ogg', 100, 1) + timer-- + for(var/obj/whirlo in orange(1,src)) + if(!whirlo.anchored ) + step_away(whirlo,src) + for(var/mob/living/carbon/human/whirlm in orange(2,src)) + step_away(whirlm,src) + else if(timer == 0) + for(var/turf/simulated/pool/water/undrained in range(5,src)) + undrained.name = "poolwater" + undrained.desc = "You're safer here than in the deep." + undrained.icon_state = "turf" + undrained.drained = 0 + for(var/obj/overlay/water/undrained2 in range(5,src)) + undrained2.icon_state = "overlay" + for(var/obj/effect/effect/waterspout/undrained3 in range(1,src)) + qdel(undrained3) + poolcontrol.drained = 0 + if(poolcontrol.bloody < 1000) + poolcontrol.bloody /= 2 + if(poolcontrol.bloody > 1000) + poolcontrol.bloody /= 4 + poolcontrol.changecolor() + status = 0 + active = 0 + return + if(!status) //if draining, change everything. + if(timer > 0) + playsound(src, 'sound/effects/pooldrain.ogg', 100, 1) + playsound(src, pick('sound/effects/water_wade1.ogg','sound/effects/water_wade2.ogg','sound/effects/water_wade3.ogg','sound/effects/water_wade4.ogg'), 60, 1) + timer-- + for(var/obj/whirlo in orange(2,src)) + if(!whirlo.anchored ) + step_towards(whirlo,src) + for(var/mob/living/carbon/human/whirlm in orange(2,src)) + step_towards(whirlm,src) + if(prob(20)) + whirlm.Weaken(2) + for(var/i in list(1,2,4,8,4,2,1)) //swirl! + whirlm.dir = i + sleep(1) + if(whirlm.loc == src.loc) + if(whirlm.health <= -50) //If very damaged, gib. + whirlm.gib() + if(whirlm.stat != CONSCIOUS || whirlm.lying) // If + whirlm.adjustBruteLoss(5) + playsound(src, pick('sound/misc/crack.ogg','sound/misc/crunch.ogg'), 50, 1) + whirlm << "You're caught in the drain!" + continue + else + playsound(src, pick('sound/misc/crack.ogg','sound/misc/crunch.ogg'), 50, 1) + whirlm.apply_damage(4, BRUTE, pick("l_leg", "r_leg")) //drain should only target the legs + whirlm << "Your legs are caught in the drain!" + continue + + else if(timer == 0) + for(var/turf/simulated/pool/water/drained in range(5,src)) + drained.name = "Drained Pool" + drained.desc = "Don't fall in!" + drained.icon_state = "drained" + drained.drained = 1 + for(var/obj/overlay/water/drained2 in range(5,src)) + drained2.icon_state = "0" + for(var/obj/effect/whirlpool/drained3 in range(1,src)) + qdel(drained3) + for(var/obj/machinery/poolcontroller/drained4 in range(5,src)) + drained4.drained = 1 + drained4.mistoff() + status = 1 + active = 0 + +/obj/effect/whirlpool + name = "Whirlpool" + icon = 'icons/effects/96x96.dmi' + icon_state = "whirlpool" + layer = 5 + anchored = 1 + mouse_opacity = 0 + pixel_x = -32 + pixel_y = -32 + alpha = 90 + +/obj/effect/effect/waterspout + name = "Waterspout" + icon_state = "smoke" + opacity = 1 + color = "#3399AA" + layer = 5 + anchored = 1 + mouse_opacity = 0 + icon = 'icons/effects/96x96.dmi' + pixel_x = -32 + pixel_y = -32 + alpha = 255 + + +/obj/machinery/poolfilter + name = "Filter" + icon = 'icons/turf/pool.dmi' + icon_state = "filter" + desc = "The part of the pool that swallows dangerous stuff and ID's" + anchored = 1 + +/obj/machinery/poolfilter/emag_act(user as mob) + if(!emagged) + user << "\red You disable \the [src]'s shark filter. Run!" //you better + emagged = 1 + src.icon_state = "filter_b" + spawn(50) + if(prob(50)) + new /mob/living/simple_animal/hostile/shark(src.loc) + else + if(prob(50)) + new /mob/living/simple_animal/hostile/shark/kawaii(src.loc) + else + new /mob/living/simple_animal/hostile/shark/laser(src.loc) + + + +/obj/machinery/poolfilter/attack_hand(mob/user) + user << "You search the filter." + for(var/obj/O in contents) + O.loc = src.loc diff --git a/code/game/objects/structures/pool.dm b/code/game/objects/structures/pool.dm index 978fb87..987924a 100644 --- a/code/game/objects/structures/pool.dm +++ b/code/game/objects/structures/pool.dm @@ -5,3 +5,488 @@ /area/centcom/pool name = "\improper Centcomm Pool" icon_state = "pool" + +/mob + var/swimming = 0 + +/turf/simulated/pool + name = "pool" + icon = 'icons/turf/pool.dmi' + var/drained = 0 //Keeps track if the pool is empty or not + var/splashed = 0 //Making sure they don't get splashed too much + +/turf/simulated/floor/blob_act() + return + +//Put people out of the water +/turf/simulated/floor/MouseDrop_T(mob/M as mob, mob/user as mob) + if(isobserver(usr)) + return + if(user.stat || user.lying || !Adjacent(user) || !M.Adjacent(user)|| !iscarbon(M)) + if(isrobot(M)) + var/turf/T = get_turf(M) + if(istype(T, /turf/simulated/pool)) + M.visible_message("[M] begins to float.", \ + "You start your emergency floaters.") + if(do_mob(user, M, 20)) + M.forceMove(src) + user << "You get out of the pool." + return ..() + if(!M.swimming) //can't put yourself up if you are not swimming + return ..() + if(user == M) + M.visible_message("[user] is getting out the pool", \ + "You start getting out of the pool.") + if(do_mob(user, M, 20)) + M.swimming = 0 + M.forceMove(src) + user << "You get out of the pool." + else + user.visible_message("[M] is being pulled to the poolborder by [user].", \ + "You start getting [M] out of the pool.") + if(do_mob(user, M, 20)) + M.swimming = 0 + M.forceMove(src) + user << "You get [M] out of the pool." + return + +/turf/simulated/floor/CanPass(atom/movable/A, turf/T) + if(!has_gravity(src)) + return ..() + else if(istype(A, /mob/living) || istype(A, /obj/structure)) //This check ensures that only specific types of objects cannot pass into the water. Items will be able to get tossed out. + if(istype(A, /mob/living/simple_animal) || istype(A, /mob/living/carbon/monkey)) + return ..() + if (istype(A, /obj/structure) && istype(A.pulledby, /mob/living/carbon/human)) + return ..() + if(istype(get_turf(A), /turf/simulated/pool/water) && !istype(T, /turf/simulated/pool/water)) //!(locate(/obj/structure/pool/ladder) in get_turf(A).loc) + return 0 + return ..() + +/turf/simulated/pool/water/Exited(mob/M) + ..() + var/turf/T = get_turf(M) + if(istype(M) && istype(watereffect) && istype(T) && src.y != T.y) //We're checking for y variable here so layering isn't fucked when you move horizontally + watereffect.layer = M.layer - 0.1 //Always a step behind! + spawn(3) + watereffect.layer = initial(watereffect.layer) + + +/obj/overlay/water + name = "Water" + icon = 'icons/turf/pool.dmi' + icon_state = "overlay" + density = 0 + mouse_opacity = 0 + layer = 5 + anchored = 1 + +/turf/simulated/pool/water + name = "poolwater" + desc = "You're safer here than in the deep." + icon_state = "turf" + var/obj/overlay/water/watereffect + +/turf/simulated/pool/water/New() + ..() + for(var/obj/overlay/water/W in src) + if(W) + qdel(W) + watereffect = new /obj/overlay/water(src) + + +/turf/simulated/pool/water/ex_act(severity, target) + ..() + switch(severity) + if(1) + src.ReplaceWithLattice() + if(2) + src.ChangeTurf(/turf/open/floor/plating) + if(3) + return + +/turf/simulated/pool/water/Exited(mob/M) + ..() + var/turf/T = get_turf(M) + if(istype(M) && istype(watereffect) && istype(T) && src.y != T.y) //We're checking for y variable here so layering isn't fucked when you move horizontally + watereffect.layer = M.layer - 0.1 //Always a step behind! + spawn(3) + watereffect.layer = initial(watereffect.layer) + + +/turf/simulated/pool/water/ChangeTurf(path) + if(!path) return + if(path == type) return src + + SSair.remove_from_active(src) + src.watereffect = null + var/turf/W = new path(src) + if(istype(W, /turf/simulated)) + W:Assimilate_Air() + W.RemoveLattice() + W.levelupdate() + W.CalculateAdjacentTurfs() + +//put people in water, including you +/turf/simulated/pool/water/MouseDrop_T(mob/M as mob, mob/user as mob) + if(!has_gravity(src)) + return + if(user.stat || user.lying || !Adjacent(user) || !M.Adjacent(user)|| !iscarbon(M)) + return + if(!ishuman(user)) // no silicons or drones in mechas. + return + if(M.swimming == 1) //can't lower yourself again + return + else + if(user == M) + M.visible_message("[user] is descending in the pool", \ + "You start lowering yourself in the pool.") + if(do_mob(user, M, 20)) + M.swimming = 1 + M.forceMove(src) + user << "You lower yourself in the pool." + else + user.visible_message("[M] is being put in the pool by [user].", \ + "You start lowering [M] in the pool.") + if(do_mob(user, M, 20)) + M.swimming = 1 + M.forceMove(src) + user << "You lower [M] in the pool." + return + +//What happens if you don't drop in it like a good person would, you fool. +/turf/simulated/pool/water/Entered(atom/A, turf/OL) + ..() + if(!has_gravity(src)) //Fairly important + return + else if(drained) //KATHUNKS + if(ishuman(A)) + var/mob/living/carbon/human/H = A + if(H.swimming == 0) + if(locate(/obj/structure/pool/ladder) in H.loc) + H.swimming = 1 + if(H.swimming == 0 && !istype(H.head, /obj/item/clothing/head/helmet)) + if(prob(75)) + H.visible_message("[H] falls in the drained pool!", + "You fall in the drained pool!") + H.adjustBruteLoss(7) + H.Weaken(4) + H.swimming = 1 + playsound(src, 'sound/effects/woodhit.ogg', 60, 1, 1) + else + H.visible_message("[H] falls in the drained pool, and cracks his skull!", + "You fall in the drained pool, and crack your skull!") + H.apply_damage(15, BRUTE, "head") + H.Weaken(10) // This should hurt. And it does. + H.adjustBrainLoss(30) //herp + H.swimming = 1 + playsound(src, 'sound/effects/woodhit.ogg', 60, 1, 1) + playsound(src, 'sound/misc/crack.ogg', 100, 1) + else if(H.swimming == 0) + H.visible_message("[H] falls in the drained pool, but had an helmet!", + "You fall in the drained pool, but you had an helmet!") + H.Weaken(2) + H.swimming = 1 + playsound(src, 'sound/effects/woodhit.ogg', 60, 1, 1) + + else //BLUBLUB + ..() + if(ishuman(A)) + var/mob/living/carbon/human/H = A + H.adjustStaminaLoss(1) + H.wash() + H.ExtinguishMob() + if(H.swimming == 1) + playsound(src, pick('sound/effects/water_wade1.ogg','sound/effects/water_wade2.ogg','sound/effects/water_wade3.ogg','sound/effects/water_wade4.ogg'), 20, 1) + return + if(H.swimming == 0) + if(locate(/obj/structure/pool/ladder) in H.loc) + H.swimming = 1 + return + if (H.wear_mask && H.wear_mask.flags & MASKCOVERSMOUTH) + H.visible_message("[H] falls in the water!", + "You fall in the water!") + playsound(src, 'sound/effects/splash.ogg', 60, 1, 1) + H.Weaken(1) + H.swimming = 1 + return + else + H.drop_item() + H.adjustOxyLoss(5) + H.emote("cough") + H.visible_message("[H] falls in and takes a drink!", + "You fall in and swallow some water!") + playsound(src, 'sound/effects/splash.ogg', 60, 1, 1) + H.Weaken(3) + H.swimming = 1 + +/obj/structure/pool + name = "pool" + icon = 'icons/turf/pool.dmi' + anchored = 1 + +/obj/structure/pool/ladder + name = "Ladder" + icon_state = "ladder" + desc = "Are you getting in or are you getting out?." + layer = 5.1 + dir=4 + +/obj/structure/pool/ladder/attack_hand(mob/user as mob) + if(Adjacent(user) && user.y == src.y && user.swimming == 0) + user.swimming = 1 + user.forceMove(get_step(user, get_dir(user, src))) //Either way, you're getting IN or OUT of the pool. + else if(user.loc == src.loc && user.swimming == 1) + user.swimming = 0 + user.forceMove(get_step(user, reverse_direction(dir))) + +/obj/structure/pool/Rboard + name = "JumpBoard" + density = 0 + icon_state = "boardright" + desc = "The less-loved portion of the jumping board." + dir = 4 + +/obj/structure/pool/Rboard/CheckExit(atom/movable/O as mob|obj, target as turf) + if(istype(O) && O.checkpass(PASSGLASS)) + return 1 + if(get_dir(O.loc, target) == dir) + return 0 + return 1 + +/obj/structure/pool/Lboard + name = "JumpBoard" + icon_state = "boardleft" + desc = "Get on there to jump!" + layer = 5 + dir = 8 + var/jumping = 0 + var/timer + +/obj/structure/pool/Lboard/proc/backswim(obj/O as obj, mob/user as mob) //Puts the sprite back to it's maiden condition after a jump. + if(jumping == 1) + for(var/mob/jumpee in src.loc) //hackzors. + playsound(jumpee, 'sound/effects/splash.ogg', 60, 1, 1) + jumpee.layer = 4 + jumpee.pixel_x = 0 + jumpee.pixel_y = 0 + jumpee.stunned = 1 + jumpee.swimming = 1 + +/obj/structure/pool/Lboard/attack_hand(mob/user as mob) + if(iscarbon(user)) + var/mob/living/carbon/jumper = user + if(jumping == 1) + user << "Someone else is already making a jump!" + return + var/turf/T = get_turf(src) + if(user.swimming) + return + else + for(var/obj/machinery/poolcontroller/pc in range(4,src)) //Clunky as fuck I know. + if(pc.timer > 44) //if it's draining/filling, don't allow. + user << "This is not a good idea." + return + if(pc.drained == 1) + user << "That would be suicide" + return + if(Adjacent(jumper)) + jumper.visible_message("[user] climbs up \the [src]!", \ + "You climb up \the [src] and prepares to jump!") + jumper.canmove = 0 + jumper.stunned = 4 + jumping = 1 + jumper.layer = 5.1 + jumper.pixel_x = 3 + jumper.pixel_y = 7 + jumper.dir=8 + spawn(1) //somehow necessary + jumper.loc = T + jumper.stunned = 4 + spawn(10) + var/randn = rand(1, 100) + switch(randn) + if(1 to 20) + jumper.visible_message("[user] goes for a small dive!", \ + "You go for a small dive.") + sleep(15) + backswim() + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 1, 1) + + if(21 to 40) + jumper.visible_message("[user] goes for a dive!", \ + "You're going for a dive!") + sleep(20) + backswim() + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 2, 1) + + if(41 to 60) + jumper.visible_message("[user] goes for a long dive! Stay far away!", \ + "You're going for a long dive!!") + sleep(25) + backswim() + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 3, 1) + + if(61 to 80) + jumper.visible_message("[user] goes for an awesome dive! Don't stand in \his way!", \ + "You feel like this dive will be awesome") + sleep(30) + backswim() + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 4, 1) + if(81 to 91) + sleep(20) + backswim() + jumper.visible_message("[user] misses \his step!", \ + "You misstep!") + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 0, 1) + jumper.Weaken(5) + jumper.adjustBruteLoss(10) + + if(91 to 100) + jumper.visible_message("[user] is preparing for the legendary dive! Can he make it?", \ + "You start preparing for a legendary dive!") + jumper.SpinAnimation(7,1) + + sleep(30) + if(prob(75)) + backswim() + jumper.visible_message("[user] fails!", \ + "You can't quite do it!") + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 1, 1) + else + jumper.fire_stacks = min(1,jumper.fire_stacks + 1) + jumper.IgniteMob() + sleep(5) + backswim() + jumper.visible_message("[user] bursts into flames of pure awesomness!", \ + "No one can stop you now!") + var/atom/throw_target = get_edge_target_turf(src, dir) + jumper.throw_at(throw_target, 6, 1) + spawn(35) + jumping = 0 + else + return + +/turf/simulated/pool/water/attack_hand(mob/user) + if(!user.stat && !user.lying && Adjacent(user) && user.swimming && !src.drained && !src.splashed) //not drained, user alive and close, and user in water. + if(user.x == src.x && user.y == src.y) + return + else + playsound(src, 'sound/effects/watersplash.ogg', 8, 1, 1) + src.splashed = 1 + var/obj/effect/splash/S = new /obj/effect/splash(user.loc) + animate(S, alpha = 0, time = 8) + S.Move(src) + spawn(20) + qdel(S) + spawn(5) + src.splashed = 0 //Otherwise, infinite splash party. + + for(var/mob/living/carbon/human/L in src) + if(!L.wear_mask && !user.stat) //Do not affect those underwater or dying. + L.emote("cough") + L.adjustStaminaLoss(4) //You need to give em a break! + +/turf/simulated/pool/water/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/weapon/mop)) + W.reagents.add_reagent("water", 5) + user << "You wet [W] in [src]." + playsound(loc, 'sound/effects/slosh.ogg', 25, 1) + + +/obj/effect/splash + name = "splash" + desc = "Wataaa!." + icon = 'icons/turf/pool.dmi' + icon_state = "splash" + layer = MOB_LAYER + 0.1 + + + + +/proc/reverse_direction(var/dir) // Could not find an equivalent in this new TGcode. + switch(dir) + if(NORTH) + return SOUTH + if(NORTHEAST) + return SOUTHWEST + if(EAST) + return WEST + if(SOUTHEAST) + return NORTHWEST + if(SOUTH) + return NORTH + if(SOUTHWEST) + return NORTHEAST + if(WEST) + return EAST + if(NORTHWEST) + return SOUTHEAST + +/mob/living/carbon/proc/wash() //Fully wash the human. Goddamn we need a better code for this. + if(src.r_hand) + src.r_hand.clean_blood() + if(src.l_hand) + src.l_hand.clean_blood() + if(src.back) + if(src.back.clean_blood()) + src.update_inv_back(0) + if(ishuman(src)) + var/mob/living/carbon/human/H = src + var/washgloves = 1 + var/washshoes = 1 + var/washmask = 1 + var/washears = 1 + var/washglasses = 1 + if(H.wear_suit) + washgloves = !(H.wear_suit.flags_inv & HIDEGLOVES) + washshoes = !(H.wear_suit.flags_inv & HIDESHOES) + + if(H.head) + washmask = !(H.head.flags_inv & HIDEMASK) + washglasses = !(H.head.flags_inv & HIDEEYES) + washears = !(H.head.flags_inv & HIDEEARS) + + if(H.wear_mask) + if (washears) + washears = !(H.wear_mask.flags_inv & HIDEEARS) + if (washglasses) + washglasses = !(H.wear_mask.flags_inv & HIDEEYES) + + if(H.head) + if(H.head.clean_blood()) + H.update_inv_head(0) + if(H.wear_suit) + if(H.wear_suit.clean_blood()) + H.update_inv_wear_suit(0) + else if(H.w_uniform) + if(H.w_uniform.clean_blood()) + H.update_inv_w_uniform(0) + if(washgloves) + H.clean_blood()//We call this proc on human because clean_blood will automatically clean either gloves or hands. + H.update_inv_gloves(0) + if(washshoes) + H.clean_blood(1) //The number is a bool to clean shoes/feet. + H.update_inv_shoes(0) + + if(washmask) + if(H.wear_mask && H.wear_mask.clean_blood()) + H.update_inv_wear_mask(0) + if(H.glasses && washglasses) + if(H.glasses.clean_blood()) + H.update_inv_glasses(0) + if(H.ears && washears) + if(H.ears.clean_blood()) + H.update_inv_ears(0) + if(H.belt) + if(H.belt.clean_blood()) + H.update_inv_belt(0) + else + if(src.wear_mask) //if the mob is not human, it cleans the mask without asking for bitflags + if(src.wear_mask.clean_blood()) + src.update_inv_wear_mask(0) \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/hostile/shark.dm b/code/modules/mob/living/simple_animal/hostile/shark.dm new file mode 100644 index 0000000..929342f --- /dev/null +++ b/code/modules/mob/living/simple_animal/hostile/shark.dm @@ -0,0 +1,94 @@ +//shameless copies of carps. + +/mob/living/simple_animal/hostile/shark + name = "Space Shark" + desc = "The best terror of the seas, next to the kraken." + icon_state = "shark" + icon_living = "shark" + icon_dead = "shark_dead" + icon_gib = "carp_gib" + environment_smash = 0 + speak_chance = 0 + turns_per_move = 3 + butcher_results = list(/obj/item/weapon/reagent_containers/food/snacks/meat = 3) + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" + speed = 0 + maxHealth = 75 + health = 75 + harm_intent_damage = 18 + melee_damage_lower = 18 + melee_damage_upper = 18 + attacktext = "maims" + attack_sound = 'sound/weapons/bite.ogg' + gold_core_spawnable = 1 + //Space shark aren't affected by cold. + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) + minbodytemp = 0 + maxbodytemp = 1500 + + faction = list("shark") + +/mob/living/simple_animal/hostile/carp/Process_Spacemove(var/movement_dir = 0) + return 1 //No drifting in space for space sharks....either! +/mob/living/simple_animal/hostile/carp/FindTarget() + . = ..() + if(.) + emote("me", 1, "growls at [.]!") + +/mob/living/simple_animal/hostile/shark/AttackingTarget() + . =..() + var/mob/living/carbon/L = . + if(istype(L)) + if(prob(25)) + L.Weaken(1) + L.visible_message("\the [src] knocks down \the [L]!") + + +/mob/living/simple_animal/hostile/shark/laser + name = "Laser-Shark" + desc = "NOW we've jumped the shark." + icon_state = "lasershark" + icon_living = "lasershark" + icon_dead = "lasershark_dead" + icon_gib = "carp_gib" + ranged = 1 + retreat_distance = 3 + minimum_distance = 0 //Between shots they can and will close in to nash + projectiletype = /obj/item/projectile/beam/laser/heavylaser + projectilesound = 'sound/weapons/lasercannonfire.ogg' + maxHealth = 50 + health = 50 + +/mob/living/simple_animal/hostile/carp/ranged/New() + projectiletype = pick(typesof(initial(projectiletype))) + ..() + + +/mob/living/simple_animal/hostile/shark/kawaii + name = "Kawaii Shark" + desc = "Senpai~ Notice me.." + icon_state = "kawaiishark" + icon_living = "kawaiishark" + icon_dead = "kawaiishark_dead" + speak = list("Oh Senpai","Notice me senpai!","Oh my...","Kawaii~") + speak_emote = list("lovingly says","says") + speak_chance = 2 + turns_per_move = 3 + butcher_results = list(/mob/living/simple_animal/butterfly = 3) + maxHealth = 50 + health = 50 + maxbodytemp = INFINITY + + harm_intent_damage = 0 + melee_damage_lower = 0 + melee_damage_upper = 0 + attacktext = "violently hugs" + vision_range = 0 + +/mob/living/simple_animal/hostile/shark/kawaii/death() + visible_message("[src] says : Senpai, you noticed~!") + LoseAggro() + ..() + walk(src, 0) diff --git a/icons/turf/pool.dmi b/icons/turf/pool.dmi new file mode 100644 index 0000000000000000000000000000000000000000..5f49cc8069511d3bc08b8f4775da5a14d134924e GIT binary patch literal 41516 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 literal 0 HcmV?d00001 diff --git a/sound/effects/fillingwatter.ogg b/sound/effects/fillingwatter.ogg new file mode 100644 index 0000000000000000000000000000000000000000..99e372ee48371442467ef1620e7e6eec1e612846 GIT binary patch literal 36733 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 CboxaA literal 0 HcmV?d00001 diff --git a/sound/effects/pooldrain.ogg b/sound/effects/pooldrain.ogg new file mode 100644 index 0000000000000000000000000000000000000000..8576dedc3dcee9ac78f608405333246afe3ccec5 GIT binary patch literal 28630 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 DFDxZ# literal 0 HcmV?d00001 diff --git a/sound/effects/splash.ogg b/sound/effects/splash.ogg new file mode 100644 index 0000000000000000000000000000000000000000..ebb9c090f1843bc91a75bcdffca2cba3404d4e92 GIT binary patch literal 19099 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 literal 0 HcmV?d00001 diff --git a/sound/effects/water_wade2.ogg b/sound/effects/water_wade2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..f9c15cab64a90f55452578312b1e6e5b78d1d77e GIT binary patch literal 10965 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 literal 0 HcmV?d00001 diff --git a/sound/effects/water_wade4.ogg b/sound/effects/water_wade4.ogg new file mode 100644 index 0000000000000000000000000000000000000000..7ba705f4991f01e54a42f1815a8166e423c09a66 GIT binary patch literal 10698 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 V3Q$RRfglV-zVrB+wB=0#{{uJ`$J77- literal 0 HcmV?d00001 diff --git a/sound/effects/watersplash.ogg b/sound/effects/watersplash.ogg new file mode 100644 index 0000000000000000000000000000000000000000..fef8bc77da379c4880a6b8ee1582d8390c401208 GIT binary patch literal 11474 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 literal 0 HcmV?d00001 diff --git a/sound/misc/crack.ogg b/sound/misc/crack.ogg new file mode 100644 index 0000000000000000000000000000000000000000..1fb5738051eacfbd7f2206a2a794287f3019dcef GIT binary patch literal 5418 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 literal 0 HcmV?d00001 diff --git a/sound/misc/crunch.ogg b/sound/misc/crunch.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c73e1fae609430fedb65a2a4bb6e55de5d116ba1 GIT binary patch literal 9517 zcmd6LcUV)=vhNOEiXzf$C`zxQ6e&`r_fW*piXXxef^z0kS8pNX4zi}y6Nw4J;eBA=6_x%Ga=xpj-kH#-0MI8e#wyj#SsO? z)*gPhC5-*uq23-&mZ#`YU8szdw2YLD)McoUF~Y~g&)*g4>Vpy{1J%!hw}qLShQ1NZ zP+iMRS^5g?2}jq$Kug)#KfuTN_9bwv;p-Rd@8NzMrF_}n1*+-l?(gafHSza#32;Vv z`1&Blz$ZvapK2N#8fqC?m@7Nqc6IiG`Uaq&K|w(hj?Nw~e%_8gt|$p-Uj#3N{O^K! z)HN(Yn;-zIvxTsBy4i@{BQ|8Rw062vlHQ}jC}wq?EF`0OiNa*2S6M?1G>V?x+(ei> z-7LY(gUvbdgre8iy@+B^6wGp_x7B?&k>>SSt(G&24r68@+?i|^r%uIY9xwbp*-THJ z@*?W2;tHpEf}W6CeI~NBCNTzze19;F7v4h zxaIT!(B{Xe`;76!YXSWcG5t|ZQ&{-;RTykP06uxrpt3Hfn|fWRIK7Y^+D_}jN=0Ww z4nRSdYYVm0lm62^fRm6y?4|0JFl0ico5F38_bVtrzVQ`ZACZ-nOyr<~Ux#^?M0#Yh$#i2;`6W+h{{<;UWSB>@R!#l-Lo$UPk ztXi=iJq47r`5gkcY5l27Zsg}bGh2fuTXg9PXZ^LD3IKSc7|nEeqyN#x@;+pB>Jcu^ zd_XNyQjixX(<}C-U#9P*BUZi{R9u(pq}QM=uV&CUtQogR_A_cLe6s& z^?#ZP1s~XE%K83|zzu(a4@qLW&t>)BC=HA%8GhF^Wi%YM(6T~l%~oqoCmT+p45v{r zn;N)HEn<2CVV{baKM4P~7Ql6Cq7DG8>Le8C#1-fyEXgMcKyrCY0f6l!Mup93v{u|HhFHIMeZTEmn5eu*Z-a(03d|&?6(&kCW8Dq>^B z|I{Q-13VD`hM#eMc*Y3^xGqRQPQ44}0tw(p+nopoJs9!-u+jKC=ur4a@_*j|0FV;s zFcZ6hl+{hP(66yDtg+B%f*Hg9r|XL0sH`FA*o$D+0c}oC-Yr9UFJ4@pqi?5wj+MT| zTVuyd_AF^mnt~}3E0ag-Kc~J#AIS|m?L43fo;6+2ZhB;o!i|#W3<`vosAP5mXJLYw zyYTxorvagqDYLRC$ON++<@w1@V&Z|xW=~4Gz-S@i1aGk@aQS3_DF8%C>j)PxI>jp# zXKKU?6Vi|mrB^tS2?~T9l$i)26J?~=$qEjOGm&PBf+xT!3Baz|6VdLNs zJUddgVB?6u3N1pW+G+a-BZ7GKzwa!d$0O@aaHTt2(&Ne)woW^n8k|y_KsC zYasj}+IBK!83muUa1K?~vvxNS}E!ys_g2Ud?afEYv_^geaeNe(8t77Z7r4rn$j0#cOVlkT54Pw`u z!Q4+K~1b8a&D9^CdM68 zRN;-!^Ee%PV~WI@s!H({>uZe#Hbo`DSPxGu2z9DlQ5uZ(48h*UVTEuwPaLishZC~} zrI^){BEdM2Q&f(@iS!lWW~w}Jwca=!q6xSDs|rDE1XqH<6^UoyJWr6T#PE%h;HplL zF@*FYa2ehhoTx3f7;}QW@~8*|7t1KZ^`;WiaUk;ABdpgcvgZuW19O5bo>3&ySAjTe zA@)}J;Bej`GVx@Q-hC}wy|~R&15cMxC62G!>Z>X{JT>rS890f)Dg?(H@59F1n18HF z1Yae7*a)s_tGB|p6jw$(8E*cn@FO-#y{+;-#FhPO6va3C5@qoF;hJCwnqNWS!8`#& zaNiYVeUwGm!eF*n4aaL;!4L$GR7Y9EX)uc>49BYxHmL~5TGvHTxz5#gKVUK?zmzv0u^s^639zVmLWislgy|<>Lv|ua}T?64izSRo3!l-OPgP6xLDU+en`Jl$Ki4%?rV6B{Lt z+NEi4K!AlaXMyYFSIZLo%w(CZZ};c{P*MObMZp_MuTH@mm1w5NTbRrM9@h)tYt=!W zO-R;73!oPS9ikyzaPrPQeewS9oz8zJ_%COa{GXuy%NhSy@c$nur~LP>`hT&H8c2-u z0}@028JRj@kj0zo33p{i(o3(fIuGj#2|M*Gba8^AxXc+vZ{{Ih*9*pI!I&8$9cgy+ zF{pHzP*A{VJD?C_X7>2?3dU=*pxV-_;tJvB&C)BAnaF{LYG$trunI@^NrN3&_p$z? z_#+1vWaR-g_f(}~yY5G8hku4N30vWb$|}8CyaEAyC|~r+kc!vhWQd|yf60nG$&;wW zQz=+DA*U@yP z{F#hT$eB-)6D&c{oT)ixgHdV;YES9ZdQC6WsT(MKOm{N!yv$^ts6d~EVqo)Bo3@jo z0Z(rz0Bs|qXN3y=P^XHO28-C(e)==fu*$X^T6WGANE@kUlqQgvmZQ^DkCq_4HT)h< zsZOO%|G=8_I^>MJ{Nh8wxo=S%nK|YbYbS*s0MG&pU|Qt>e0-SF%KEmR;i-kyZ(xZC zUd+G`0FYNf$HuORh)GDv$X=CKRQk`aLo^zFs&yUg(dfV5e`wEB7I5BNC<>83oU}NWia`SMq^YBD+Lb*6Nx%qgaS=qRFLhf>LaBx7O zQ2}0e!vc^&ckgj=a&kjCc({3acp0aOYeO1mxB=^-nwj=gl(#He$wBEoMH?)G-s;Gt#JYB_EGQG9C|d zvpy?tM=QT6`iyd87GON{rS;G8$8X1fJXYnGGQ=$}Lcgi{m_##9Mrfy01}Q1J=v;W{ zc1u?1))tX3o`!ac!tb)n!*43xhe6Mcy5&l1{1d*;70E(w5%9@J=*6oJZAQ9ARG&L$ zY}0o}Kl^@BEdyj|C!bG$b4IsHRem{sbN+(X%Za@fqv3OJ3}_rm-X}=`InCj9cX}cs z5r+rq;k1*CD?#s<6(*8Be)$*&zGJf3=u9xU-K^_6Dt@>mVFRQ;uN<9BZHUOPY zLb0}twJ3Q*8~Nt>li-#W*<^^zSIV6uP{y^;r`h*1rR%u0g~qK0dwIyN89)&zd*99v zl5w_^0H3{l#tNRK9RFT&)iFk=8+$LtNH?mQ7(57@7+JZZDhJ3%T!1}n|5g4zETSsc zST-k~@q*p&`MDIkV9J z%B%6E>8I??3_iZK-QAcQBgdSo5oeGj@dV~qk^&nSepEX4_6aC-Zf?|@QmD=Kv<4du zCyjF_zB-W`gqM0 z#uKnzgeIBLO;#w;yDCe8O zq56*)6@X%Rx!Y5zpyv7oS*{5yrec%UmX&$pV*r(do_jBf9ReO^PcV7=9YXnXKWuT zo~@Jl(Ov)eHZIkAt)RZk*M&{#>s_X^l8DCxnUcTWvIoAxUZ~}jUgPX^5G@SEEv0Fc zq_JOh&!(aDWU*Tae4wjZ_(F|~YUm~<0e{AA^k|JdFno)nlt$X&!8N~c`JV?@TLj|- z6bZppu@t+(4DD+J`E!R{*jA6voIw_EZSw~kt46mF)cnl1bLBdAyLZO4d@9$zH`<={ zwZ9|e;D6*RM&W1aOde?ww9X}WfPc8e_T$cwDy5{R*sy{%d6*(cW7NEKee!*qk1a1D zooSMu*aWOb$r+d#&D*D%WfS|;_E(|*WTYZ@)+$r>CxOY46O+jx8x z61733-qUzg3$cChz#LQRGPr&zOQcx!&sUmf!Ktv0U%whj7~sb4vy|}XGNhyt+nl4X z%%xlTf|}g5e1M!xc3KT!Sgt7*_AKz;;xFiBw^d;?xWZ+Bl_I3wh6r(+smole#0GC@<>n{M83g8@c>c^+AZ-c4)UO} zM_JWxj!p1D*d7r&NKVTEIZ81vsnA}(YY(yQ{gdm?Z4Y>FA$7jfNxeJ^6~!-MV1&fKbQvWeJJ5@jX?cqy`(J06~4u z0BE6u`qTwX4Uu28OBI5CV0`$l03|5ky-Soj;EhB;I1X0=I`1ux?_(FN5kPhUWmwlB+mN8G4J>wmF)oUty$X7vigprTjKVDig9T*r!?cSgt)u0eWU$&zAQC%6cSD!RPI$HE;w(o`#-K{N3 z_999OzyJvSr7rR`|15UiPN8rR$$r+|g+R%^LP-m3pl!6sGbHqC-ze5Fh}7($J7l>2o8%ZSU1-@jGdmS+1?(tgZ@Km{ilN3k z?q4ff8u^a8;}H__`OV95eM^xT2rv{!XHRx09d*=|<2b8! z{R0AOfw;&kz_^}tv#VL@HYMP_M_d>L?H>Tt5x->2;*ngvmmk{&Q%3C(l?F-Cz%WBw zP#^1ZdnYV~5G8>x1)?@$R=-D%Gql0`gnCTh(jOCQxdbmi!x$WQOhUqTiE*KjQ3KK` z4v9D|J;r(C^u8*8AGk&b580<&)|oKLgM3ayyhZ?bee}p5g+T@5;%p=1>?i#GuA~h5 z?eQc)ORWq+5`KVmyJeKo?+U$|kQUI=rWAo0>eg&X8$DD)D(@Z%o6jUM9Vh^T;iRnw9nRQ1APi;|U1toL?W&K_$E2@Q7l+@yCj`fMQ5V;0zi8BPz$y9T&!Svo)TJf; zDIwl_k~gO*(U3L+hP!4K%Yk|VukCj}F$Q6?2PXm4-YcOZ(D#=Cck%Gd#EmxdoWNV* zCZ1KYU@Azi%5X~o)rJcLiBpz~P9-gc5-SbHzZ*zy?TtczlaT^N0^gk59`EAb7E64< zaz&;+#LKws#&q~!;NwrI-Kr+DAEJHD=EQ*j27T|vwM76;N7qgF>5m;LakzIT;*ak* zHRRth)~5UuU9xnfKA_pCc*TdgqkZlA1Qa@%xKrQj^<}OUF|zH|y9te<0PMh`;Mk1) zJXWRQo`C-@6Ac&N1UCg>BBqqaO9_lgzx^6++wAcorDN?;7#*O=<<}gh#i6}_xO`{N zMYK!ktJLeuBI7^Gg+H)tBk>tQ56{KRClB22ooJo!ml$K=ggtf=5DBrh+;DX$zJ&WB zFWMBT^we=KY@X+!k!j^oVZ?LOFLuY>RSl(nSMd!)1=$H(S)+Ks0(N+{!jtHaxZ10BGp36Bc%vJJC^_`*-!oGI6% z*>*cDFVdMj#R6Edc^Kvx#>@N z!PX4F-5kY-QPD(InAkUj^GM3;#V41C!fJG6*`G|hx5_=~)0k^C)IfDVvKP-VsVj=r zD!mc&#@sLFNQUXcSluA%Kw3rWPM5Xl5*;uXX3u@ds`cyqwrWFsXE@1NwW3?nO#xaU zvDsr-VQpfkyzz(qctZnD$|}$|7d!gtynRHj-4xCugmLp&N;E})sYygaVpaB)$k_mu zB#EayHEbp?ri3DJRMhu*seR{7?Tj8Ab;4rgT+>BAq<0qElUZn9y2J|AvOj>R~?$y9mp zE{;pdzkL(!ws)n}Tdn(=NTorLqldkjMYhgIzN55cKqdAaeVW){J>~rYNO#;TF@tZa z^PfAc%~!Ku+ylPn1n7uo1knO5cr4FoBLmT}$=LYy4%52NLq&c9b2H#z^G?eRxLy}r z&badDq1=?vPcSKV~BzYqVVR{Ph%%9}fFb8mE$?tguuzDu@=nRAe95CX1> zR%`{kDn^b8M6DuBUZgC4*L>Ze|E#bBK+AQUA6o8O3dZbi{;3F3R_;>mZk?OZV60B$ z@fjyGU9fY@O8?;-_@k+FKsEg#;e*Zur2NCv*Ir%eOk6V-CCh0kY9o z@l_crXLhs!Ajh^PuTlO%wXnCi`h;cx9pflR!KMb1f(Y%aG&N`b!Qfcd!^6%rK`gz4$Ue@Xc*Lt*gs#dHbzSxNx#48Je^ zZiD5A!||RonU(DZ$;eRO1z7^orxko|5v2V6JH8u9>AH0{f2THw{vp!rIRXN+lvD&> z9{JpEZ4%(Z^%~s743GB#oukdGX5q!(mYJkSV^-wuPtPT?oWBD2t?g4tgi7eXdX`b2 zm(c$$*q!2N%$8{j{IVxs*mf~d=Kw@WYeg*w$4x1k>WjP0&{{KMMlliazA4ow` zw&wLEChk~Y-#e&4|G*$lUI8>SGaDz;81jA0w)yv0-!nac!};;qpFVYc_)nqNws$%Ze{<6z&%N8d5+z9Bpn`wiOWo2%w5=-s?tP7nBXAjP6-)!~y z74mbx*-}*ULRj}_hM9c*Uz-6Ra%J#~G>#Kf3uj;XR$Yl#+{29;GCr@6&3|T88{n2{ zclRQHg>{FaFDYZq&W=!TOfzabcPu91(iEOCHlaL829m~Tl4jRyxHW#(<=SlQu9w$` z^woKz5k<{e84pW{lyC64dn&apa{IIPTpx%(h=iimT+bdu0gH_7JU3*BL%rpC(0$jP zvtL?|gJw7V@BIdvXC7zmI+15+sIrpz>5YrEHJ0ChAKozJA>($S0J$_3MS0vaPOO4+ zu-y9jIEy1~!RPAgI9EnGtELVa^ppM9-w*Yvw<@~c{@A%UUv8{1K4@++Tc!vT{Y>rk zym~5HYuPiPxUMu`YGPx>A%a%T+`(vrJ}+fDSxfr+lz7k=GzkF z!j61WCd(0MuQ@PbiJi7LV3B2bvFf|b6SmN4DfxLPy8z-)aZ6{s$-&x2gquHMu`Xku zrQfIS4CR*k{a@X)X{Mqc?i$}WApo5t3ASg?>MMn;O3cKpbn3Mnuh+YQ_`->^mjRWv z-{Hp{&cEFE-oz~FqrA5gm;&>|$=|klPop9wKH~MelX%`W4GQWt`tR`v_uVP7c^0ra z9D^*w#xW%y>RoLU>?(+}k-32T(7C;M!DRE%V0gst{hwPG02*)LUXQro4xQ7Xdy>cb zaBg8m&ZwI_3}|*EZ=lShyZ31}UUhEScbqS*VUjpPsxs`JI>Xz=u=QBOaTHZM zrLaQf|DS#eCA~Hs2iR=}3i>L-Z>6Q57Z0X# zVs;7kmUJD{Ghb`A*^oS8%*5U)&VB`3I|Vwriip&eillbp+k5!ZhS>{3mCQYnWu`90YP8KhYEg6F2+>Nyq>L zwA}keRgM~*u9v7GedYv>qg+hxPm6=tAJ_I%Ll)@LW=bfNC#+nDqCTEqO=n?ge~#}@ zuXsJ%_wM{fAbt!ldh~(DnaX5&Zkc#>Mb=XJyVUwE0UxJM5=;-A2k(1J5%X18xgJ2< z)r$?W;sAi!M0GT*7GCo{HuQb(ufXdV;YiBbj!WfztI38#`Nq!{au_zf=P9(_o>7(i zesmrtX-^qRXA?hI;;_hSaQBO{dyIeK<4j$9pLG=ORz%NMBH6G9vlN6qr$YnG#NS&l z?Q5y4BL$0w)tLaQwv3ORMwj;c)CdB}uih2{;RjvYy{^sjtwrCy1g#DO{lTG~330th c$3BvJWNGYWjhqE$`K)phTqT;KjpXcq02~!wwg3PC literal 0 HcmV?d00001 diff --git a/tgstation.dme b/tgstation.dme index f7929f5..909e880 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -262,6 +262,7 @@ #include "code\datums\wires\explosive.dm" #include "code\datums\wires\mulebot.dm" #include "code\datums\wires\particle_accelerator.dm" +#include "code\datums\wires\poolcontroller.dm" #include "code\datums\wires\r_n_d.dm" #include "code\datums\wires\radio.dm" #include "code\datums\wires\robot.dm" @@ -438,6 +439,8 @@ #include "code\game\machinery\newscaster.dm" #include "code\game\machinery\overview.dm" #include "code\game\machinery\PDApainter.dm" +#include "code\game\machinery\poolcontroller.dm" +#include "code\game\machinery\pooldrain.dm" #include "code\game\machinery\recharger.dm" #include "code\game\machinery\rechargestation.dm" #include "code\game\machinery\recycler.dm" @@ -779,6 +782,7 @@ #include "code\game\objects\structures\musician.dm" #include "code\game\objects\structures\noticeboard.dm" #include "code\game\objects\structures\plasticflaps.dm" +#include "code\game\objects\structures\pool.dm" #include "code\game\objects\structures\reflector.dm" #include "code\game\objects\structures\safe.dm" #include "code\game\objects\structures\showcase.dm" @@ -1515,6 +1519,7 @@ #include "code\modules\mob\living\simple_animal\hostile\nanotrasen.dm" #include "code\modules\mob\living\simple_animal\hostile\pirate.dm" #include "code\modules\mob\living\simple_animal\hostile\russian.dm" +#include "code\modules\mob\living\simple_animal\hostile\shark.dm" #include "code\modules\mob\living\simple_animal\hostile\skeleton.dm" #include "code\modules\mob\living\simple_animal\hostile\statue.dm" #include "code\modules\mob\living\simple_animal\hostile\stickman.dm" From b77e8c3c0a1ceea8112878c9954c0d418dbd1025 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 15:19:53 +0000 Subject: [PATCH 30/55] Adds AI scanning to portable turret Will now add humans to list of targets if "ai" option is enabled --- code/game/machinery/porta_turret/portable_turret.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index 2cdb8c4..10a1d10 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -46,6 +46,7 @@ var/auth_weapons = 0 //checks if it can shoot people that have a weapon they aren't authorized to have var/stun_all = 0 //if this is active, the turret shoots everything that isn't security or head of staff var/check_anomalies = 1 //checks if it can shoot at unidentified lifeforms (ie xenos) + var/ai = 0 //if active, will shoot at anything not an AI or cyborg var/attacked = 0 //if set to 1, the turret gets pissed off and shoots at people nearby (unless they have sec access!) @@ -468,6 +469,11 @@ if(emagged && C.stat == DEAD) continue + // If it's set to attack all non-silicons, target them! + if(ai) + targets += C + continue + //if the target is a human and not in our faction, analyze threat level if(istype(C, /mob/living/carbon/human) && !in_faction(C)) if(assess_perp(C) >= 4) From 9f8b6892ad2797d239fac36be999ae2e3414cefa Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 15:24:10 +0000 Subject: [PATCH 31/55] Added missing code --- code/game/machinery/porta_turret/portable_turret.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index 10a1d10..16a9f39 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -490,6 +490,9 @@ if(assess_perp(M.occupant) >= 4) targets += M + if(ai || emagged) + targets += M + return targets /obj/machinery/porta_turret/proc/tryToShootAt(list/atom/movable/targets) From cea47111dcc6b1e14b1f96d695046f33d703da38 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 15:53:03 +0000 Subject: [PATCH 32/55] Various map fixes Replaced some initial values with /tg/ appropriate ones --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 21 +++++++------------ 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index a8a7454..9507d77 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -6377,7 +6377,7 @@ height = 5; id = "laborcamp"; name = "perma prison shuttle"; - travelDir = 90; + port_angle = 90; width = 9 }, /obj/docking_port/stationary{ @@ -40961,7 +40961,7 @@ height = 5; id = "outpost"; name = "outpost shuttle"; - travelDir = 90; + port_angle = 90; width = 7 }, /turf/closed/wall/shuttle{ @@ -44100,7 +44100,7 @@ /area/toxins/server) "bTp" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - current_temperature = 80; + target_temperature = T0C + 80; dir = 2; on = 1 }, @@ -48955,7 +48955,7 @@ height = 5; id = "mining"; name = "mining shuttle"; - travelDir = 90; + port_angle = 90; width = 7 }, /obj/docking_port/stationary{ @@ -50953,7 +50953,7 @@ }, /obj/machinery/meter{ frequency = 1443; - id = "wloop_atm_meter"; + id_tag = "wloop_atm_meter"; name = "Waste Loop" }, /turf/open/floor/plasteel, @@ -50975,7 +50975,7 @@ }, /obj/machinery/meter{ frequency = 1443; - id = "dloop_atm_meter"; + id_tag = "dloop_atm_meter"; name = "Distribution Loop" }, /turf/open/floor/plasteel, @@ -52729,7 +52729,6 @@ /obj/machinery/air_sensor{ frequency = 1441; id_tag = "waste_sensor"; - output = 63 }, /turf/open/floor/engine{ name = "vacuum floor"; @@ -56563,7 +56562,6 @@ /obj/machinery/air_sensor{ frequency = 1441; id_tag = "tox_sensor"; - output = 11 }, /turf/open/floor/engine{ name = "plasma floor"; @@ -58641,7 +58639,6 @@ /obj/machinery/air_sensor{ frequency = 1441; id_tag = "co2_sensor"; - output = 35 }, /turf/open/floor/engine{ name = "co2 floor"; @@ -60760,7 +60757,6 @@ input_tag = "air_in"; name = "Mixed Air Supply Control"; output_tag = "air_out"; - pressure_setting = 2000; sensors = list("air_sensor" = "Tank") }, /turf/open/floor/plasteel{ @@ -62118,7 +62114,7 @@ /obj/structure/grille, /obj/machinery/meter{ frequency = 1443; - id = "mair_in_meter"; + id_tag = "mair_in_meter"; name = "Mixed Air Tank In" }, /turf/closed/wall/r_wall, @@ -62128,7 +62124,7 @@ /obj/structure/grille, /obj/machinery/meter{ frequency = 1443; - id = "mair_out_meter"; + id_tag = "mair_out_meter"; name = "Mixed Air Tank Out" }, /turf/closed/wall/r_wall, @@ -62489,7 +62485,6 @@ /obj/machinery/air_sensor{ frequency = 1443; id_tag = "air_sensor"; - output = 7 }, /turf/open/floor/engine{ name = "air floor"; From 18888c9733027df3fa3ed7d29c69446ef22985b4 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 15:55:59 +0000 Subject: [PATCH 33/55] Decided to remove altogether Unable to fiund equivalent in /tg/ or original in Hippie --- _maps/map_files/TgStation2/tgstation.2.1.3.dmm | 1 - 1 file changed, 1 deletion(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index 9507d77..ca8640e 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -44100,7 +44100,6 @@ /area/toxins/server) "bTp" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - target_temperature = T0C + 80; dir = 2; on = 1 }, From 236866507a585fa8a5244a0e491beead01cea88a Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 16:19:45 +0000 Subject: [PATCH 34/55] Re-adds wheelchairs Need to test to make sure it works --- .../objects/structures/beds_chairs/chair.dm | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index 395b9b0..2291b9d 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -326,3 +326,56 @@ desc = "You sit in this. Either by will or force. Looks REALLY uncomfortable." icon_state = "chairold" item_chair = null + +// Wheeled chairs +/obj/structure/chair/withwheels + var/delay = 10 + var/cooldown = 0 + var/reverse_direction = 1 + +/obj/structure/chair/withwheels/relaymove(mob/user, direction) + if((!Process_Spacemove(direction)) || (!has_gravity(src.loc)) || (cooldown) || user.stat || user.stunned || user.weakened || user.paralysis || (user.restrained())) + return + + step(src, direction) + if(has_buckled_mobs()) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + + if(reverse_direction) + switch(direction) + if(NORTH) + buckled_mob.dir = SOUTH + if(WEST) + buckled_mob.dir = EAST + if(SOUTH) + buckled_mob.dir = NORTH + if(EAST) + buckled_mob.dir = WEST + + buckled_mob.setDir(direction) + + handle_rotation() + handle_layer() + cooldown = 1 + spawn(delay) + cooldown = 0 + +// Wheelchair +/obj/structure/chair/withwheels/wheelchair + name = "Wheelchair" + desc = "Chances are you don't really need this." + icon_state = "wheelchair" + anchored = 0 + delay = 4 + reverse_direction = 0 + +/obj/structure/chair/withwheels/wheelchair/handle_rotation() + overlays = null + var/image/O = image(icon = 'icons/obj/objects.dmi', icon_state = "wheelchair_overlay", layer = FLY_LAYER, dir = src.dir) + overlays += O + + if(has_buckled_mobs()) + for(var/m in buckled_mobs) + var/mob/living/buckled_mob = m + buckled_mob.setDir(dir) \ No newline at end of file From ddd299bcf4f2227570ff243a4968fec19a78dabf Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 16:25:14 +0000 Subject: [PATCH 35/55] Added icons --- icons/obj/objects.dmi | Bin 98797 -> 102066 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index 505eae306ab4c5db0c763c56bdaae1b1c8c2671d..908703d2b817eae26f43a417a9954c2b59f28090 100644 GIT binary patch delta 9267 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

-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 delta 5972 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 From f2c583bc97240fbf72ecd8fa3750afc270724c0a Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 16:30:24 +0000 Subject: [PATCH 36/55] Adds blue wardrobe As it says on the box. Just adds closet with blue clothing --- .../structures/crates_lockers/closets/wardrobe.dm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index 98a43f6..354e446 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -11,6 +11,19 @@ new /obj/item/clothing/shoes/sneakers/brown(src) return +/obj/structure/closet/wardrobe/blue + name = "wardrobe" + desc = "It's a storage unit for standard-issue Nanotrasen attire." + icon_door = "blue" + +/obj/structure/closet/wardrobe/blue/New() + ..() + for(var/i in 1 to 3) + new /obj/item/clothing/under/color/blue(src) + for(var/i in 1 to 3) + new /obj/item/clothing/shoes/sneakers/blue(src) + return + /obj/structure/closet/wardrobe/pink name = "pink wardrobe" icon_door = "pink" From 063cc815e4d4102e9d0928a0b188cf8a47715f3a Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 17:34:35 +0000 Subject: [PATCH 37/55] Adds eponymous items Should be in two different branches but made mistake --- .../game/machinery/computer/buildandrepair.dm | 3 + code/modules/mining/mine_items.dm | 7 +++ code/modules/reagents/reagent_dispenser.dm | 57 ++++++++++++++++++- 3 files changed, 66 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 852d4a6..dd45de8 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -380,6 +380,9 @@ /obj/item/weapon/circuitboard/computer/mining_shuttle name = "circuit board (Mining Shuttle)" build_path = /obj/machinery/computer/shuttle/mining +/obj/item/weapon/circuitboard/outpost_shuttle + name = "circuit Board (Outpost Shuttle)" + build_path = /obj/machinery/computer/shuttle/outpost /obj/item/weapon/circuitboard/computer/white_ship name = "circuit board (White Ship)" build_path = /obj/machinery/computer/shuttle/white_ship diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index 5152127..fa4a498 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -67,6 +67,13 @@ return ..() +/obj/machinery/computer/shuttle/outpost + name = "Outpost Shuttle Console" + desc = "Used to call and send the research outpost shuttle." + circuit = /obj/item/weapon/circuitboard/outpost_shuttle + shuttleId = "outpost" + possible_destinations = "outpost_home;outpost_away" + /*********************Pickaxe & Drills**************************/ /obj/item/weapon/pickaxe diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm index 554cf9c..21fdf2f 100644 --- a/code/modules/reagents/reagent_dispenser.dm +++ b/code/modules/reagents/reagent_dispenser.dm @@ -6,6 +6,7 @@ density = 1 anchored = 0 pressure_resistance = 2*ONE_ATMOSPHERE + //var/list/brokenvars = list("storage tank", "chemtank", /obj/structure/reagent_dispensers)// when it blows up,what will it become,made it qdel src and make a statuelike thing to avoid having to change syringes,droppers,glasses etc with snowflakey checks var/tank_volume = 1000 //In units, how much the dispenser can hold var/reagent_id = "water" //The ID of the reagent that the dispenser uses @@ -183,4 +184,58 @@ desc = "A dispenser of low-potency virus mutagenic." icon_state = "virus_food" anchored = 1 - reagent_id = "virusfood" \ No newline at end of file + reagent_id = "virusfood" + +//honkcooler +/obj/structure/reagent_dispensers/honk_cooler + name = "Honk-Cooler" + desc = "A machine filled with the clown's thick juice! NICE!" + icon = 'icons/obj/vending.dmi' + icon_state = "honk_cooler" + anchored = 1 + var/cups = 50 + //brokenvars = list("honk-cooler", "honk_cooler", /obj/structure/reagent_dispensers/honk_cooler) + +/obj/structure/reagent_dispensers/honk_cooler/New(loc, empty = 0) + ..() + if(!empty) reagents.add_reagent("banana",500) + +/obj/structure/reagent_dispensers/honk_cooler/attack_hand(mob/living/carbon/human/user) + if((!istype(user)) || (user.stat)) + return + if(cups <= 0) + user << "What? No cups?" + return + cups-- + user.put_in_hands(new /obj/item/weapon/reagent_containers/food/drinks/sillycup) + user.visible_message("[user] gets a cup from [src].","You get a cup from [src].") + +/obj/structure/reagent_dispensers/honk_cooler/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/weapon/paper)) + if(!user.drop_item()) + return + qdel(I) + cups++ + return + + if (istype(I, /obj/item/weapon/wrench)) + if (!anchored && !isinspace()) + playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1) + user << " You begin to tighten \the [src] to the floor..." + if (do_after(user, 20, target = src)) + user.visible_message( \ + "[user] tightens \the [src]'s casters.", \ + "You tighten \the [src]'s casters. Anchoring it down.", \ + "You hear ratchet.") + anchored = 1 + else if(anchored) + playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1) + user << " You begin to loosen \the [src]'s casters..." + if (do_after(user, 40, target = src)) + user.visible_message( \ + "[user] loosens \the [src]'s casters.", \ + "You loosen \the [src]. Now it can be pulled somewhere else.", \ + "You hear ratchet.") + anchored = 0 + else + ..() From b1783498632343083be8e1e576b1c1e6dbf3ec53 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 18:58:45 +0000 Subject: [PATCH 38/55] Adds atmos autolathe This means the game compiles! But probably doesn't work! --- code/__DEFINES/machines.dm | 1 + code/game/machinery/autolathe.dm | 14 +- code/game/machinery/constructable_frame.dm | 11 +- .../research/designs/autolathe_designs.dm | 122 +++++++++++++++++- code/modules/research/research.dm | 14 ++ 5 files changed, 158 insertions(+), 4 deletions(-) diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index 429ea0b..ce80aeb 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -22,4 +22,5 @@ #define CRAFTLATHE 8 //Uses fuck if I know. For use eventually. #define MECHFAB 16 //Remember, objects utilising this flag should have construction_time and construction_cost vars. #define BIOGENERATOR 32 //Uses biomass +#define ATMOSLATHE 64 // Used for crafting atmos items in atmoslathe //Note: More then one of these can be added to a design but imprinter and lathe designs are incompatable. \ No newline at end of file diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 1b2da62..76b5b85 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -45,16 +45,26 @@ "Imported" ) + var/obj/item/weapon/circuitboard/machine/board = /obj/item/weapon/circuitboard/machine/autolathe + /obj/machinery/autolathe/New() ..() materials = new /datum/material_container(src, list(MAT_METAL, MAT_GLASS)) - var/obj/item/weapon/circuitboard/machine/B = new /obj/item/weapon/circuitboard/machine/autolathe(null) - B.apply_default_parts(src) + board = new board(null) + board.apply_default_parts(src) wires = new /datum/wires/autolathe(src) files = new /datum/research/autolathe(src) matching_designs = list() +/obj/machinery/autolathe/atmos + name = "atmospheric fabricator" + desc = "It produces atmospheric related items using metal and glass." + icon_state = "mechfab1" + categories = list("Atmos") + board = /obj/item/weapon/circuitboard/machine/atmoslathe + files = /datum/research/atmoslathe + /obj/item/weapon/circuitboard/machine/autolathe name = "circuit board (Autolathe)" build_path = /obj/machinery/autolathe diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 327abfa..a9e72bf 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -276,4 +276,13 @@ micro-manipulator, console screen, beaker, Microlaser, matter bin, power cells. /obj/item/weapon/circuitboard/machine/clockwork name = "clockwork board (Report This)" - icon_state = "clock_mod" \ No newline at end of file + icon_state = "clock_mod" + +/obj/item/weapon/circuitboard/machine/atmoslathe + name = "circuit board (Atmos Autolathe)" + build_path = /obj/machinery/autolathe/atmos + origin_tech = "engineering=3;programming=2" + req_components = list( + /obj/item/weapon/stock_parts/matter_bin = 3, + /obj/item/weapon/stock_parts/manipulator = 1, + /obj/item/weapon/stock_parts/console_screen = 1) \ No newline at end of file diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index c9ed9a6..c274a92 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -750,4 +750,124 @@ build_type = AUTOLATHE materials = list(MAT_METAL = 250) build_path = /obj/item/stack/teeth/replacement - category = list("initial", "Medical") \ No newline at end of file + category = list("initial", "Medical") + +/datum/design/emergencyoxy + name = "Emergency oxygen tank" + id = "emergencyoxy" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 1000) + build_path = /obj/item/weapon/tank/internals/emergency_oxygen + category = list("initial", "Atmos") + +/datum/design/emergencyoxyyellow + name = "Extended-capacity emergency oxygen tank" + id = "emergencyoxyyellow" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 2000) + build_path = /obj/item/weapon/tank/internals/emergency_oxygen/engi + category = list("initial", "Atmos") + +/datum/design/emergencyoxydouble + name = "Double emergency oxygen tank" + id = "emergencyoxydouble" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 4000) + build_path = /obj/item/weapon/tank/internals/emergency_oxygen/double + category = list("initial", "Atmos") + +/datum/design/oxytank + name = "Blue oxygen tank" + id = "oxytank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/weapon/tank/internals/oxygen + category = list("initial", "Atmos") + +/datum/design/yellowtank + name = "Yellow oxygen tank" + id = "yellowtank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/weapon/tank/internals/oxygen/yellow + category = list("initial", "Atmos") + +/datum/design/redtank + name = "Red oxygen tank" + id = "redtank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/weapon/tank/internals/oxygen/red + category = list("initial", "Atmos") + +/datum/design/anesthetictank + name = "Anesthetic tank" + id = "anesthetictank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/weapon/tank/internals/anesthetic + category = list("initial", "Atmos") + +/datum/design/plasmatank + name = "Plasma tank" + id = "plasmatank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000) + build_path = /obj/item/weapon/tank/internals/plasma + category = list("initial", "Atmos") + +/datum/design/extinguisher + name = "Fire extinguisher" + id = "extinguisher" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 500) + build_path = /obj/item/weapon/extinguisher + category = list("initial", "Atmos") + +/datum/design/miniextinguisher + name = "Pocket fire extinguisher" + id = "miniextinguisher" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 300) + build_path = /obj/item/weapon/extinguisher/mini + category = list("initial", "Atmos") + +/datum/design/pipepainter + name = "Pipe painter" + id = "pipepainter" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000, MAT_GLASS = 2000) + build_path = /obj/item/device/pipe_painter + category = list("initial", "Atmos") + +/datum/design/firehelmet + name = "Firefighter helmet" + id = "firehelmet" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 1000, MAT_GLASS = 200) + build_path = /obj/item/clothing/head/hardhat/red + category = list("initial", "Atmos") + +/datum/design/watertank + name = "Backpack firefighter tank" + id = "watertank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 5000, MAT_GLASS = 3000) + build_path = /obj/item/weapon/watertank/atmos + category = list("initial", "Atmos") + +/datum/design/chemtank + name = "Chemical storage tank" + id = "chemtank" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 10000, MAT_GLASS = 10000) + build_path = /obj/structure/reagent_dispensers + category = list("initial", "Atmos") + +/datum/design/rpd + name = "Rapid pipe dispenser (RPD)" + id = "rpd" + build_type = ATMOSLATHE + materials = list(MAT_METAL = 75000, MAT_GLASS = 37500) + build_path = /obj/item/weapon/pipe_dispenser + category = list("hacked", "Atmos") diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index cd04640..d13a857 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -163,6 +163,20 @@ research holder datum. return ..() +// Atmoslathe files +/datum/research/atmoslathe/New() + for(var/T in (subtypesof(/datum/tech))) + possible_tech += new T(src) + for(var/path in subtypesof(/datum/design)) + var/datum/design/D = new path(src) + possible_designs += D + if((D.build_type & ATMOSLATHE) && ("initial" in D.category)) + AddDesign2Known(D) + +/datum/research/atmoslathe/AddDesign2Known(datum/design/D) + if(!(D.build_type & ATMOSLATHE)) + return + ..() /*************************************************************** ** Technology Datums ** From 557822eb0098840b96f8f8bd98e83ad7bacfe0c7 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sat, 26 Nov 2016 20:43:01 +0000 Subject: [PATCH 39/55] Added the warning sprites back into floors.dmi Fixes #54 --- icons/turf/floors.dmi | Bin 397944 -> 407556 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/turf/floors.dmi b/icons/turf/floors.dmi index afff7e175bbf81a7532057a7c3206eb4994f60b0..cca718a0bf6b54ca8a3af6ce7ee72294d0d75d5b 100644 GIT binary patch literal 407556 zcmYg%1z1yo*ZvR*X$eU|q(uSg9)e1VgbLCvAT81{kP_*Z9H@XwH%N>U5F`ZY7~QbJ zfDJZw|HI$+`~KhaczN91@ZNLJdC&Wv_uLr0r|Q%cY!o06h+0$Qp#ca)ymWbxlM>#k z5x5Zy0+9{`Jb(H2p}m*w8z+yqPVR0XkY8?I&XC)@ELGn~R*BebX)TMcGCFDS)6Y*G z4V7XA_u}upczn8zwi-PB@&}2yr6k#rD5*2Rs3~Nb3Tp>0R*jDKHxn01Hzxfu zTY1rtJztq{ee?8IUf<{iogy7$?^RJ(^}MGRDWaA>G6Nntt-Lb_8$E9)R{@75yEcbp zw)f_?-^MA=?j}V#lo(|rR&jc)dMG_sGgQ%Je~wg!{Hj*+vz~hLb>5bm{jY!f=6&

6=X*WA|$V$8S)U-gLuQ*n_FYuw-!{ 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 z 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 Dcfa6T literal 397944 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/+8L}*JvcL~H{GVWNYW%Sr$Ap(el*G@e$#|g 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 H<`uGGHPyh5{N00qcCSYF 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

y|%b7%Yf_$C*A&ttQO(z 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�ICD1rAd-&5LUxOz_#*W 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

$t*rZd0ur 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�KflfZh^bba$zfshM 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 From 6dd75499094d2ce027bbe15eac5fc498bac16716 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Sun, 27 Nov 2016 22:11:52 +0000 Subject: [PATCH 40/55] Fixed throwing Was down to "throw_item" failing --- code/game/objects/items/weapons/baseball.dm | 3 -- code/game/objects/items/weapons/weaponry.dm | 11 +++++++ code/modules/mob/living/carbon/carbon.dm | 35 +++++++++++---------- 3 files changed, 30 insertions(+), 19 deletions(-) diff --git a/code/game/objects/items/weapons/baseball.dm b/code/game/objects/items/weapons/baseball.dm index 79f19ff..4011d24 100644 --- a/code/game/objects/items/weapons/baseball.dm +++ b/code/game/objects/items/weapons/baseball.dm @@ -28,9 +28,6 @@ w_class = 3 burn_state = 0 -// /mob/living/carbon/throw_item(atom/target) -// ..() - /obj/item/weapon/baseballbat/wood /obj/item/weapon/baseballbat/metal diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index ca677c7..a8a9a69 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -488,6 +488,17 @@ var/highlander_claymores = 0 w_class = 5 var/homerun_ready = 0 var/homerun_able = 0 + slot_flags = SLOT_BELT //Including the belt sprite to look cool + throw_speed = 3 + throw_range = 4 + special_throw = 1 + deflectItem = 1 + specthrowsound = 'sound/weapons/basebat.ogg' + throwrange_mult = 1.5 //Increases throw range by 1.5 + throwforce_mult = 1.2 //Multiply the throwforce of thrown object meagerly - don't make this too high + specthrow_maxwclass = 2 //Max weight class that you can throw + specthrowmsg = "batted" + burn_state = 0 /obj/item/weapon/melee/baseball_bat/homerun name = "home run bat" diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index c706f3e..f762f1d 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -209,23 +209,20 @@ /mob/living/carbon/throw_item(atom/target) throw_mode_off() + if(!target || !isturf(loc)) return + if(istype(target, /obj/screen)) return - var/atom/movable/thrown_thing - var/obj/item/I = src.get_active_hand() - var/range = I.throw_range - var/throw_speed = I.throw_speed - var/did = "thrown" - var/obj/item/E = I + var/atom/movable/item = get_active_hand() - if(!I) + if(!item) if(pulling && isliving(pulling) && grab_state >= GRAB_AGGRESSIVE) var/mob/living/throwable_mob = pulling if(!throwable_mob.buckled) - thrown_thing = throwable_mob + item = throwable_mob stop_pulling() var/turf/start_T = get_turf(loc) //Get the start and target tile for the descriptors var/turf/end_T = get_turf(target) @@ -233,7 +230,17 @@ var/start_T_descriptor = "tile at [start_T.x], [start_T.y], [start_T.z] in area [get_area(start_T)]" var/end_T_descriptor = "tile at [end_T.x], [end_T.y], [end_T.z] in area [get_area(end_T)]" add_logs(src, throwable_mob, "thrown", addition="from [start_T_descriptor] with the target [end_T_descriptor]") - if(I) + + if(item) + var/obj/item/I = get_inactive_hand() + var/range = item.throw_range + var/throw_speed = item.throw_speed + var/did = "thrown" + + if(item.flags & (NODROP|ABSTRACT)) + return + + var/obj/item/E = item if(istype(I) && I.special_throw && istype(E) && I.specthrow_maxwclass >= E.w_class) //For special items that multiply something's throw range when in inactive hand (example: baseball bat) range = round(range * I.throwrange_mult) if(I.specthrowmsg) @@ -244,14 +251,10 @@ E.throwforce = round(E.throwforce * I.throwforce_mult) E.mult = 1 //Tell the code we have modified this item's throwforce and would like for it to be set back to normal after it hits something. - else if(!(I.flags & (NODROP|ABSTRACT))) - thrown_thing = I - unEquip(I) - - if(thrown_thing) - visible_message("[src] has [did] [thrown_thing].") + visible_message("[src] has [did] [item].") + unEquip(item) newtonian_move(get_dir(target, src)) - thrown_thing.throw_at(target, range, throw_speed, src) + item.throw_at(target, range, throw_speed, src) /mob/living/carbon/restrained(ignore_grab) . = (handcuffed || (!ignore_grab && pulledby && pulledby.grab_state >= GRAB_AGGRESSIVE)) From 1fd577be76682df348e9990b0757dfbbde98d721 Mon Sep 17 00:00:00 2001 From: JohnGinnane Date: Wed, 30 Nov 2016 22:25:10 +0000 Subject: [PATCH 41/55] Fixed wheelchairs Also made office chairs a "withwheels" type so now you can push yourself in the direction you want to travel if you're buckled to an office chair --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 112 +++++++++--------- _maps/map_files/generic/lavaland.dmm | 2 +- _maps/map_files/generic/z2.dmm | 22 ++-- .../items/stacks/sheets/sheet_types.dm | 2 +- .../objects/structures/beds_chairs/chair.dm | 39 +++--- icons/obj/chairs.dmi | Bin 28250 -> 31945 bytes icons/obj/objects.dmi | Bin 102066 -> 98796 bytes 7 files changed, 88 insertions(+), 89 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index ca8640e..e73e055 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -3098,7 +3098,7 @@ }, /area/security/main) "afz" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /turf/open/floor/plasteel, @@ -4399,7 +4399,7 @@ }, /area/security/brig) "ahR" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark/start{ name = "Warden" }, @@ -5368,7 +5368,7 @@ pixel_y = -26; req_access_txt = "1" }, -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /turf/open/floor/plasteel/shuttle{ @@ -6645,7 +6645,7 @@ /turf/open/floor/plasteel, /area/security/brig) "alQ" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) @@ -8479,7 +8479,7 @@ /turf/open/floor/plating, /area/maintenance/fpmaint) "apq" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark/start{ name = "Detective" }, @@ -8565,7 +8565,7 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "apy" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -10580,7 +10580,7 @@ /turf/open/floor/plating, /area/maintenance/fpmaint) "atv" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/effect/landmark/start{ @@ -13101,7 +13101,7 @@ icon_state = "0-4"; d2 = 4 }, -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark/start/depsec/medical, /turf/open/floor/plasteel{ icon_state = "red"; @@ -13493,7 +13493,7 @@ name = "Speakeasy" }) "azP" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/effect/landmark/start/depsec/supply, @@ -15730,7 +15730,7 @@ /turf/closed/wall, /area/maintenance/fpmaint2) "aHv" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /turf/open/floor/plasteel{ @@ -21672,7 +21672,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint2) "aVo" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /turf/open/floor/plasteel, @@ -23012,7 +23012,7 @@ /turf/open/floor/wood, /area/library) "aYp" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/machinery/camera{ c_tag = "Library North"; dir = 2; @@ -23024,7 +23024,7 @@ /turf/open/floor/wood, /area/library) "aYq" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -23368,7 +23368,7 @@ /turf/open/floor/plasteel/black, /area/mime) "aZg" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -23717,7 +23717,7 @@ /turf/open/floor/wood, /area/library) "aZU" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /turf/open/floor/wood, @@ -23734,7 +23734,7 @@ /turf/open/floor/wood, /area/library) "aZX" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /turf/open/floor/wood, @@ -24983,13 +24983,13 @@ /turf/open/floor/wood, /area/library) "bcV" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /turf/open/floor/wood, /area/library) "bcW" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/structure/disposalpipe/segment, @@ -28322,7 +28322,7 @@ /obj/effect/landmark/start{ name = "Librarian" }, -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/wood, /area/library) "bln" = ( @@ -28497,7 +28497,7 @@ /turf/open/floor/wood, /area/security/vacantoffice) "blG" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -28515,7 +28515,7 @@ /turf/open/floor/wood, /area/security/vacantoffice) "blJ" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /turf/open/floor/wood, @@ -30764,7 +30764,7 @@ /turf/open/floor/wood, /area/security/vacantoffice) "bqH" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -30778,7 +30778,7 @@ /turf/open/floor/carpet, /area/security/vacantoffice) "bqJ" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ tag = "icon-manifold-r-f (EAST)"; dir = 4 @@ -34978,7 +34978,7 @@ }, /area/medical/chemistry) "bAF" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /obj/effect/landmark/start{ @@ -35128,7 +35128,7 @@ }, /area/assembly/robotics) "bAX" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 1 }, /obj/effect/landmark/start{ @@ -37211,7 +37211,7 @@ }, /area/medical/medbay) "bFL" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 8 }, /obj/machinery/button/door{ @@ -37230,7 +37230,7 @@ }, /area/medical/medbay) "bFM" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 1 }, /obj/structure/sign/nosmoking_2{ @@ -38611,7 +38611,7 @@ /obj/effect/landmark/start{ name = "Cargo Technician" }, -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38723,7 +38723,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads) "bIH" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /obj/structure/disposalpipe/segment{ @@ -39778,7 +39778,7 @@ }, /area/medical/genetics) "bKW" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /obj/effect/landmark/start{ @@ -41148,7 +41148,7 @@ }, /area/ai_monitored/nuke_storage) "bNw" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /turf/open/floor/plasteel{ @@ -41438,7 +41438,7 @@ }, /area/medical/genetics) "bNX" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /turf/open/floor/plasteel{ @@ -41788,7 +41788,7 @@ }, /area/crew_quarters/heads) "bOH" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/effect/landmark/start{ @@ -42218,7 +42218,7 @@ }, /area/toxins/explab) "bPD" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/effect/landmark/start{ name = "Scientist" }, @@ -42484,7 +42484,7 @@ /area/ai_monitored/nuke_storage) "bQf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/plasteel, /area/ai_monitored/nuke_storage) "bQg" = ( @@ -43553,7 +43553,7 @@ }, /area/crew_quarters/hor) "bSf" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 8 }, /obj/effect/landmark/start{ @@ -44290,7 +44290,7 @@ /turf/open/floor/plasteel, /area/quartermaster/qm) "bTK" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark/start{ name = "Quartermaster" }, @@ -44587,7 +44587,7 @@ }, /area/toxins/server) "bUy" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/machinery/atmospherics/pipe/simple{ dir = 4 }, @@ -44632,7 +44632,7 @@ /turf/open/floor/plasteel, /area/security/checkpoint/science) "bUD" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/effect/landmark/start/depsec/science, @@ -45820,7 +45820,7 @@ }, /area/medical/cmo) "bWO" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/effect/landmark/start{ name = "Chief Medical Officer" }, @@ -47743,7 +47743,7 @@ }, /area/medical/medbay) "caF" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_pump{ @@ -50479,7 +50479,7 @@ }, /area/medical/medbay) "cfL" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_scrubber{ @@ -51712,7 +51712,7 @@ }, /area/toxins/xenobiology) "cic" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/effect/landmark/start{ name = "Scientist" }, @@ -53065,7 +53065,7 @@ /turf/open/floor/plasteel, /area/atmos) "cle" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/effect/landmark/start{ @@ -55327,7 +55327,7 @@ }, /area/toxins/misc_lab) "cpM" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/effect/landmark/start{ name = "Scientist" }, @@ -55628,7 +55628,7 @@ }, /area/medical/virology) "cqr" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /obj/effect/landmark/start{ @@ -55983,7 +55983,7 @@ }, /area/tcommsat/computer) "cra" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /turf/open/floor/plasteel, @@ -56953,7 +56953,7 @@ }, /area/security/checkpoint/engineering) "ctj" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark/start/depsec/engineering, /obj/machinery/atmospherics/components/unary/vent_scrubber{ on = 1; @@ -58985,7 +58985,7 @@ }, /area/tcommsat/computer) "cxm" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -61362,7 +61362,7 @@ }, /area/engine/chiefs_office) "cCk" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /obj/effect/landmark/start{ @@ -61744,7 +61744,7 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/effect/landmark/start{ @@ -65476,7 +65476,7 @@ /turf/open/floor/plasteel, /area/engine/port_engineering) "cKZ" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/effect/landmark/start{ @@ -66165,7 +66165,7 @@ /turf/open/floor/plating, /area/engine/engineering) "cMr" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -68175,7 +68175,7 @@ }, /area/turret_protected/ai) "cQp" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /turf/open/floor/plasteel{ @@ -69218,7 +69218,7 @@ }, /area/engine/engine_smes) "cRX" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /obj/structure/cable{ @@ -69266,7 +69266,7 @@ }, /area/engine/supermatter) "cSa" = ( -/obj/structure/chair/office/light, +/obj/structure/chair/withwheels/office/light, /obj/effect/landmark/start{ name = "Station Engineer" }, diff --git a/_maps/map_files/generic/lavaland.dmm b/_maps/map_files/generic/lavaland.dmm index 5d5b80a..ea67868 100644 --- a/_maps/map_files/generic/lavaland.dmm +++ b/_maps/map_files/generic/lavaland.dmm @@ -713,7 +713,7 @@ }, /area/mine/laborcamp/security) "bC" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/structure/cable{ d1 = 1; d2 = 4; diff --git a/_maps/map_files/generic/z2.dmm b/_maps/map_files/generic/z2.dmm index 51875e9..ac73364 100644 --- a/_maps/map_files/generic/z2.dmm +++ b/_maps/map_files/generic/z2.dmm @@ -1619,7 +1619,7 @@ /turf/open/floor/plasteel/black, /area/centcom/ferry) "eQ" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /obj/effect/landmark{ name = "Emergencyresponseteam" }, @@ -1630,7 +1630,7 @@ /turf/open/floor/vault, /area/centcom/ferry) "eS" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /obj/effect/landmark{ @@ -1639,7 +1639,7 @@ /turf/open/floor/plasteel/black, /area/centcom/ferry) "eT" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 4 }, /obj/effect/landmark{ @@ -1667,7 +1667,7 @@ }, /area/centcom/ferry) "eY" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/plasteel/freezer{ dir = 2 }, @@ -1723,7 +1723,7 @@ }, /area/centcom/ferry) "ff" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /obj/effect/landmark{ @@ -1822,7 +1822,7 @@ /turf/open/floor/wood, /area/centcom/ferry) "ft" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/wood, /area/centcom/ferry) "fu" = ( @@ -2057,7 +2057,7 @@ }, /area/centcom/evac) "gh" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/plasteel/black, /area/centcom/evac) "gi" = ( @@ -2245,7 +2245,7 @@ }, /area/centcom/evac) "gP" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office/dark, /turf/open/floor/plasteel, /area/centcom/evac) "gQ" = ( @@ -2394,7 +2394,7 @@ /turf/open/floor/plasteel/black, /area/centcom/control) "hp" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 8 }, /turf/open/floor/plasteel/black, @@ -2698,7 +2698,7 @@ /turf/open/floor/plasteel, /area/tdome/tdomeobserve) "in" = ( -/obj/structure/chair/office/dark{ +/obj/structure/chair/withwheels/office/dark{ dir = 1 }, /turf/open/floor/plasteel, @@ -5744,7 +5744,7 @@ /turf/open/floor/plating, /area/shuttle/escape) "rR" = ( -/obj/structure/chair/office/light{ +/obj/structure/chair/withwheels/office/light{ dir = 4 }, /turf/open/floor/mineral/titanium, diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 6f18d32..29f421b 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -15,7 +15,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ new/datum/stack_recipe("stool", /obj/structure/chair/stool, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("bar stool", /obj/structure/chair/stool/bar, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("chair", /obj/structure/chair, one_per_turf = 1, on_floor = 1), \ - new/datum/stack_recipe("swivel chair", /obj/structure/chair/office/dark, 5, one_per_turf = 1, on_floor = 1), \ + new/datum/stack_recipe("swivel chair", /obj/structure/chair/withwheels/office/dark, 5, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("comfy chair", /obj/structure/chair/comfy/beige, 2, one_per_turf = 1, on_floor = 1), \ new/datum/stack_recipe("bed", /obj/structure/bed, 2, one_per_turf = 1, on_floor = 1), \ null, \ diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index 2291b9d..da10a41 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -173,17 +173,6 @@ /obj/structure/chair/comfy/lime color = rgb(255,251,0) -/obj/structure/chair/office - anchored = 0 - buildstackamount = 5 - item_chair = null - -/obj/structure/chair/office/light - icon_state = "officechair_white" - -/obj/structure/chair/office/dark - icon_state = "officechair_dark" - //Stool /obj/structure/chair/stool @@ -266,9 +255,6 @@ user.unEquip(src,1) //Even NODROP chairs are destroyed. qdel(src) - - - /obj/item/chair/hit_reaction(mob/living/carbon/human/owner, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK) if(attack_type == UNARMED_ATTACK && prob(hit_reaction_chance)) owner.visible_message("[owner] fends off [attack_text] with [src]!") @@ -287,7 +273,6 @@ C.Weaken(1) smash(user) - /obj/item/chair/stool name = "stool" icon_state = "stool_toppled" @@ -345,14 +330,15 @@ if(reverse_direction) switch(direction) if(NORTH) - buckled_mob.dir = SOUTH + direction = SOUTH if(WEST) - buckled_mob.dir = EAST + direction = EAST if(SOUTH) - buckled_mob.dir = NORTH + direction = NORTH if(EAST) - buckled_mob.dir = WEST + direction = WEST + dir = direction buckled_mob.setDir(direction) handle_rotation() @@ -361,6 +347,19 @@ spawn(delay) cooldown = 0 +// Office chair (one you can move about on) +/obj/structure/chair/withwheels/office + anchored = 0 + buildstackamount = 5 + item_chair = null + +/obj/structure/chair/withwheels/office/light + icon_state = "officechair_white" + +/obj/structure/chair/withwheels/office/dark + icon_state = "officechair_dark" + + // Wheelchair /obj/structure/chair/withwheels/wheelchair name = "Wheelchair" @@ -372,7 +371,7 @@ /obj/structure/chair/withwheels/wheelchair/handle_rotation() overlays = null - var/image/O = image(icon = 'icons/obj/objects.dmi', icon_state = "wheelchair_overlay", layer = FLY_LAYER, dir = src.dir) + var/image/O = image(icon = 'icons/obj/chairs.dmi', icon_state = "wheelchair_overlay", layer = FLY_LAYER, dir = src.dir) overlays += O if(has_buckled_mobs()) diff --git a/icons/obj/chairs.dmi b/icons/obj/chairs.dmi index a16797fa17ca239467f33832d159dca4fb15de9a..aa404bc6b46dcead9c7e47ae0743f75e8e548ccd 100644 GIT binary patch delta 9080 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 delta 5364 zcmZvgXH-)`w}ubBNRy6$G$~?10Vx6LHbgj@fxH9x4^tEyxCI8N>iSnZm+0PbcXk=2=-|)>8QFjCkZ| zMqj)Szv#yOgdrnv9KpJ25%M%gflE$sryxgX;r)Wll1yVlhrrz^VtHm$x4ol-)t0@S zYq(~%P>RdI(u1N!CW(>c!0+>vtrpDptpW9dG&3_ZaH2UxK{1OBFh7WJ9mu`27qVNA zq3&MOLlMUi?!g5Ut|KDTjR8zqMvRE(V=paNHzkERb?PEVKDJ7#41iT4Ne6>lXeet(vRy(D)ji}_L+y)-({nPbxpNlx%Z($1;&jPv%2-ybgKHJz}$ zgpgsZDNxR|@Sx?GW7l{i7Ncvu+F%pWz$5u4ztQ-mCTXVe@x#r9gv#p&o4pF`J+{<( z%+~IsRMcvUjs=U0VwSRN7D!&pdZN+=$|Od3TNZ?#?ONG-Dr-D6J|4F?n19B@OgbVW zA~Pq)<1W=f1RSJ2JJvWJN$}k2PsTryE<%PLp82!AecH$DQsvps{{&!CPI0Nm5V|cr z&J~3{CaS;$>@k-SH!sL_y2nq|EKp?c`SBqtc0Z?o?#)mT?Y3^=pRr2Ef;<(;iE$$I z$BrEf-Rf8Mn$bq?tC^g)d7HSm-n=nZC!Lv<)v>bTUL@HdHydxrAmIscwdDepMbL-*WsvLikwY4=+9i$%|6qJSk zK>m~_R#;JS%--HUQp#@_#8u1UX&X$H9J|ejtqS=44hwax7vaoo0qtRHaen*uQi$eF zh30(A;DWQ**R;b`K_*?xCFVi3do=>}xz4=tBZHLc0c|Ln=+RHp>|kGhce`H_KIDj= zER)w~K7`I%)6{grI=;ENxqn}E){gz%`}Yr0!<3HRyeL&yehGqed~oB=ga=mpJm{cd zbwYSjQW9R$^LR}hX(;x=xclJg&a@{8WsN(UFNoQ6-a%CMUYcGuHa3Kd3uDiHZd7Yr zh8fr3%gbHu?WmDI(VsgKpP}qr*Z$ZrbUPmJcJ#BA?{x3lL%O-S+1}2i*Vj5imYYVg zb?#B_Suf_RBfwU&@Jl+zmTyN>4Y0rI&V*PV2E-rHI ziEeMU^7~yY3P#^}G_7QoltRiA^U~6%37}9oG+3Doe)H!I45-&>a7;*`G z2RWme)%To&x2VWuV}R@P*>X7sy6Q?c&!C|C@_i#uf!jJ3gwp!yTMZI;xQ)#e*(|HH z*kZ6PlVdnBGu8c6irSltd?UH*->+9be2%wGsFXi7d=RY{s2&%EJt*>9Lu{H<^!A@3<#+>)D zlGwLwzUP^=VNmQ{Kk4>q3;fk5WJd2jgG+%BWJbSllI9zF++7yE%TnXd-R9E3sl2{B z-bZ6wIQ#9}x9ofOo_W)(toR++4Q(3hw(Yugt<+ujwb|a+xOMF`m)@x)loonG;cDb=uW_-y>EtX!1P z7_itdS-Da($ZXACi9B2t5-ESPfn59Q&s@Hy{4^r(Q`UYMZ-O{ErvjrF_ebWvIt~&FutoS^NjW)Nj0kshH+b zk%b@M?DlpLZ_<^s=gws{&J-6*f7%&~fJC*rx*7?4kHg*Deia>V7C*juwApf8cMXHV zczb#G~F zgZFG|BB`%BakueBQFfem8#@J_Idxh!;aVGek;d8wUjY;bw^v?u?90ZEd42I0C=UJD z=);~eGYb>E_Vsb-mxCdbOHcXreZAn3?4r?SotQ;RxRwcr9X3L* zGnUrKuJPfP3;30>U8kZGec>+robCcKJmgLXepcv(XSI$|!tCfe446Sv%8 zoSl*WR5m#}?_%Hw>|D<=rJd&-u-hDea-wr`ekvZ;Iw0o0N4Kj8((nu}r5Xg`Wy3zZ z)W(k9Uy_nF798jC3;Zyz_9Fg=wPY-TM2r%8))R?z3K4Okijvf-Wak9cA9jw#+JcoP zs2lc6Aipkwe8Z{7rS{|R-xp%z;wmhQxaO$rj)I+IRZ@8?2G;Q#=>wIB5N1Z4Zl5K( z`-x$e(Z^BN6TAph)ut;Z*oYBpht?-ARA@gP;1KR>3 z#Xv;=!UaqD`9(S(^9ZD$-*5o_WkCDAubNMLz}aX{E#~@J>N=r0HiOTs%Vx|V%j7qx|!7dUi_3T-+HqvsBuT3Y7 zqT)^?As7so&MQ0!KJJM=DCM$*L)&JJXI|nq&kLw`6d+C=xBRm@7W~?zbR~bh)OtBu zaFfL}i#g-6&xCA~5b@EKpCs*|m1i`-c$NJY;VLXoWq+Vkdad{CnNHm`S#B1)=3w>= z1vq1MkjP42q4lTS&tpg?KhOx0^vUOQF2#}fOWVO^$v#|NE{$vWm!kfGcjb8dP;c(~ zcld*lFhwg=)=Umh<({Q=sH@~5kXv7E?k43-7*-0~tZ~AQW#mO*B*V9U-6|&k98cM! zUa?j6o(5(y`|F!Odj-YBcD#$)6mq9~m7r+g3WN zw^~;HA+o@HP$nrWJ_Q>QQo{46A8s3nIQ1%cw$*}1NMkQERDwcFJQuN|mhV1jf@X%w zwYXBlzFy;QB3NqL(y*Fwm*I~)b(EdX!}*ePrhv=(CmE(ac8N|D?=oIZ7<)LSOCyt7 z=TtOlL~b3D^Lr6<6*>FL(ng2Dn|SQF)`U=3p{d$a67z9>x+&;7KibL6mo0`uF+zvNU|9 zmSA#ES-_IPV8ZKK2Tq`KrEncK5sZa%I{dLPs!`L_w5!KpvDm89f<63(QnS@7&RyjS zsfl0&W~s_*ERV;Fi3$^mJlk^nQdMhf>(cVFgR-40PHNUu#pAQHxKGBHU$-#tcn#_# zu;(%&TN?Hyzeafy$axRGk}v{=^Qjm z7GbUC#8Ky3NX~~@l*8VArTx`?DmxD?flLDfhM8ahH$4<_8{XetmAhX^Idp_2)HeDE zTe_CvwL}3?;0_(gFd=KTe((VIqPtWST62gdUTcVkKAP4jT$f1)8eAgMw3_~#Xi{3+ z{$!@elIl^}1FNgvR56fJd(nT>pomkGg%Mgy=ZqR)OuMEs`OcabBX#mqjRD&y?u%=w zR`g2OKi!AqoI>!+B!+yLfB!PR>jqj~U71A~2EagokK1Y#r_41tZU_ zpX>7Xy^3!zz;7kIR~N$&Oeg!_S&K_lvWlWkFwM%hOJ>u{OL_`0^nUIomx3Q};y3*# z0YL_yk%GEJy5GtY)VVoH)|e;?Zqne^dfK${`KM4X5q)L{iGG}|ur+u=V-+Jhc*ZgQ zx;28&xnt8shzZtN<{jW}n;OO4&_HQKNwG~E`Vbjj>YI% z90~IA=w*u<)1JMS5u^9|7f2hCa&>+1_wQ<_Z?R&z?)!&03=be~s-6FK0`v}65ql75 z3H2-2L*KJjTc_GAfX<|Pr`iBp zHT7f=)7Q1kq$mGeWk2ziH+7C0j9&(rSyC5y4IsdM8{8j%0dEJxxeCochD&<0E{w7V zb&wziU4uEf;QtyfTJXONJ8Tbjb=|5lm-n(WlJ&Z2|BJ`357S2nycOak<%!c4{Z*61 z4^uPL74y^gdZ{w&m*abkyF?$=A1ud4)+_ot{6fwq9d-5{Of2ZMNf-#CC<_GZvgCwE zoM6MG?pAB=046(MZlgK2m}JB>@=^m zd+W&<>>^y*(hO~*@5_I%^7in5H4|!HZa4oIek#fGr0tQJF!da&3Yj3Vm@;Y=5L8c@ z-Gj69880q17&FbbVCekM_!RT#ipEvn6TXJw+WuIIxqO#9(_2^QMr?GO!!UIgUYIXw5@#oIRr z|G>^5_1{X-IMvbvzf^=Cw(->{)Oc70LdJY7Q}A3A+9}fd8tsw&jLuuB$Rmor>|yi0 z$@2{?^3;VvugoJKV%p0H7|JHUknVv%XCMIe&hU^pW{FB&Sl$>Rra`8qQHn(Z{T^yS z|3QaE0yN;^Md&dP)Bo$0{|h4)iT~#@J@+gm0JU4z5WYT$&d}x>T9i21+6KJ5q~*B; zFiYI|hy~z~Jm9LVFhKA6SCVx5OoZR}$FA{5ibrfmup^{?OgsmQ1NFFc{wB)!KTrby zQHh1GcJNWmzd6hH5Z1Xbtz!M-!K>0SEPt=~FZvP`)6eM_(!GL)_#N4Iv~T~y0~*}C ztiA@Xp{GMc;JU9|`v-wQfJg-5Psp{OdNM?_6a*NsLkA2W8sI>cLR7m>KfDaY!{pl0 zTm>ww7bHORgQ&ke&R#0rrg?Lst8HVI9_Yh`9rYw0EV{UEiHL}!xrFT))Sep(dw2{` zXU;$Ot6sct*s7SO*U^|FE@{N1!|Y~Z#}Ep6^(JJ%?!b}Yq9Co~pZ33K0q|`CCZq0Jpb$ZeR$88ea^o2KKowxTKC#()#sD#gp4yY$6#AEex-_OfOkcBs{Eo<29PvBlopw*Q=0vAdH#RH(bLFwfk20%< z%BrR4OIyKDlSaq3=Uyk>a_8mS=W^O* zJPb7wqs-13!3SzN1=VxBN!r9>7I;|QlQB`Dg{1qtaK4YBRAvnt2Yd6?=WGd^4;d`5 zWRq~$>_DF~mEWy=a%xrZ!JUVaNz?_UjLE}XZE5^BmSM_nedD`+-(*@;=Js-vHc#i} zD@+B3zZARmuEjh^ASUujL&PK47tnC!Lb?;=vFuUpNcX7|?0| zu4&M${92%5se$~Kk_o@b56QxEO~K7j+T)PKU=9mqXz{fFs#oy%&F{6y>OMz z$1GcuVJ6R4e;7ZDmzR&X22FW=I6%hkXNbPhIFRGw#gyHCDUl8}FP@y)zxMII->g@y zhZR+sTJ8xmEh}|&7^rqHu!!2~UYOc3XQhgjG3ZTmD2CeXP(XT1k$c>rbSPeq>p&nZ zZW}_nsku2(z{J%+UF#Fh1zIkAReU{E-y!Ys&+PLWJ$?x%?!_mH?9jB)XalfewZt=@ zb4!-WJaS&oRE+k`Wv_GTo60j#sGJfbcq^ z<~kxsgcT82Lo?JC0;L2;mE|h2qpM5Z$Pj04d z;0Oy|#`_d(Q#s;NW5jz%q}I7?v@q{W^4GEbtGBilD7oAclp4efPMLpX$J&Ll>1uA4 z>STJXqq3K0)xk?sZ@-gek?Ff(KQ_isMJKjoLfRbt=$qC+9XtpqT~`E~@v`}ssD#br zZ#&!Q`CU-7>>bEA9Xe9jLOdMbMn-47;n;C=q&pjPSb`>lv0o~zYQZ{JQccc74T=Z- zJXaVg?sv==!d0T`>pi`_8_7retpdYxRPr(5ArdrSeHPsM;g1y8K9Ck?A>A^kwFkfM ztk}nl34#$yXjCNXf}#3I4W!@UM#k?&)shKYb^IX?ZH=v1ns#GBrUI=E98qt^dKZ8~ zZ=aXdP=?S}$cJlcc8xQ^`f(7XyUhrdIVO?X9x-7_VI`o5o#u=SEpkgrhn0qX!C|*2 zObZR4ENBb6_I%pgeVd#8n6cMX;<~gUG~f?4NZz;}4`kdn>W)?Hs~}RDPh2?n-)W|*PU#heMCaYfT%c>5QD)l0o+dJ-`h_il z@(gID)I*Lfby63z`H0a;WpH!T3H>r+VSJp6!)Tk@)bvr&uPHd+OZF$0M$*+n z5=&<(eVXpUXFsDbHriEcJVF^06*K^4HxRlrD z#%`w)(pU?KBrtXtc#~sjDRkEJoyNVtJnXf0DP_})B*q5{2+^yFPMWf0gKLcLl_V@5 zp*|2milmi@n~BYg|D1!=?htQpf2#WiZcU*{gD0I#{F zB`i?3GdY{Yn$3pT7DE=Y+WX|*g?B!|H|NsI%F03(E!0>y^Z0?U?8NVkaOt3?3pQ5L z%q6>TI4I~M@>)JNo{av>5W#M2t)x$udumFDb;>%x$5)Rma%*q#?U37qC+nhlaVvh$< zy*(Y~B5TZ1&DhH9I|vQ?D@Ldj`WoPp^=*g9%i_R%p)MMy;Z)6 zs34Up$65yzCM!wH%!beDsP3mei6Y9SZWCJn;6OtYEOh&Awffsy0S2_Eii1=Owp9|0 zJ=6rSiK}C#we)*wnT!ui%a{*-V|+!+6hpOR~zS(0=$Z8+NGwk<+a7d z*1Z(m4;iDUid6uUvk>oQqM|#mH>_S@IQe)xjX?`X*&j1I{9O|AJ*WkgD;E`=bG4cI z*736@zGVYIIvJV<(UaN)SL=D^@Pwk(m=NDJ7 z=5(t@nfSR>qlu8izl+ObLg-6p=eB!4!SioQto0VmLD%LxBL9{LMWG`?awmO4Zkjcd zfyu5o!M4AXcushTfB5=J0>=OJJHC}Tnht7>zrLvYR9c>5kMxB@3`)*{r(I>4ak!$vmzh$!#~2m_enbLMIMo=lOh|q zU+~t3{?)IR)uJ!i+om$8;IVYzB8%B<<4zG62%+Jefr&YL#)?}-)d0;0GWXzK*3>^!r!pSb6=&c{VlHtabVf+gQw zxqHu`-%$&{VqOxj0=3y<>Kedx!P=+*6HZ&tmP2Rbdb@u*;?KQ)Uqmq_X7I9!Y22Rv zpri-5bJ_#R!d&kL`YqBz`Y)`|Yks`SX6bVkCWe zO%0bpXI-7-4KTSMcH{cE0dV=F6Z8Ihl?_0tYAW26)>gq7zaqv&h;qX3jW`}yFstQ} zmoMq4GnlKzoMg95`|S|Qj_+A#vFf~YV`KCN+D!^;FYNm?jNYs8mx>-sKbRyj)h=R> z`8W%=g8)t=#1;^kxxm{$>Qmy}z}q`EflJAicMTN5NPpZwZ)WTpss~W!t5jwzK>^HO zZqjlnOVwlEZIPZXzFD$9!FJK^kae^YXV(&?m|AhRrO3ZKikT-Y1G<=+lHa{|w41c3 zg28c}EjZe=j0^`oTZ!RBOjQW$DhZ_4+gb>2Z!^-~a}-fl!fP~I`{9G=#Qc0-i^qx@ zIJ5tND}c`(4~>3cH8OGw>`aHcp)(N{M-LA7Dr#yT&0sM7G388M{5W-kS zvRjqF?G$57e2?E@Wk82Qw{06v_y(b#@&s+l}mQ|alZMQP}bGk{P_ki)eO0tHvo(oOx|_*Z0K(0c+<)7SR7P4~vE^F9Y72u! z!76Vw2eQ2Ip)`Ye1ZLwvN%~e4YfRZX;_F$NEfun~2J5iZZ$}zY6vB)`A)dMfk6O0& zs=uq*cXD!yAzDnMtUi)*xD-P2>udAA)d9P;BqM|}UY6S`w zkc1dsyHFMoX;aiZ{`3j;#*Q~-;I=d%A@+cvBGzeB7NJsR#;1IF)JztP*VVY$5|h4Q z6s{Bes!IVOr)6E_ww$Dinxn?1ck6elX9U$kb>lAlb@`?jx6Oiwr&vcMN9?3`USJ;& zK}{928zO*yVn`lfMw6f ztP^g&UWn5aPB&P!OIX_Tg^Gy@e#EWlNxvlN!SI4VZv(1Q0oQ_q+oe6lG-1r=-V#jM zCX7YCBu>I>coCp0L#&V#kdfsi z1JcsciavZ$+Qm#@FjT@u_6o2br~ZRML>rzt-rh};pWK-3Wc{m86_dXkdJ>>#ZGZEI zG0Ur^t1Vd)q3P(j(7ZPj%F<9HSO`w-&ZoDu*eM`+`W^E|wo_1$IG#czT(C&YWlp}Hk-uR%}4XU{Z3o*HGEWJ-Ta$x31G+rM!i zbezjCuMDB)? z$&yVSN?D+tq_uOI3}I}P>3r9RgAjgW^YbL7qeUepBxvwg02`g5+qdrU-8E4vk3VH! zcnJ%_Hmg2-;20Uv^FNw48k_JW%6}iUXKilo0Cv-~yk{eTqWvmLeoK}r zc3Fb8CgI{u&9JWac~EUt%@2jTpgXOLb}X%Ul2Pk>lw4KcW4WuqSug{^9WU zH)`7q*C`hq|IHI8O%PwFmyrMmWTcUy{_Hs@cXXBStn^1dju@Oc={$bNi9T9Pn{Ga9 znQ0yYKZ<3X4oBSTI?Mke75gt4p!zeMt{YKU{;I11Hct-tA4i|>?a-a@JpGOwBELDb zb#S$_q2fOUGF1{&v)}B(_KuH_C#k=>|Ad5=`l#2{%}q^5$1U)lX>b+n``J}O@EoC# za7DB&#w-8V?vpG`dCSYYB|QFK0j_FI$?2X8&l3!oo4WE%Cj6GFt&*}Gsv)6U0Cafg40EOlKmX9*SU{Qn)hYTsYDxGgH zRONo;XmF*1V1Y(**8fU#8tSM1u(FOCveD{7U=h4aKEKX6+_Yc!Kc?)|XeH8LhMvE- zEhvU)nwwU(NkacDedw6RyG&jIO#LVQp8C7ea>QOS-11f_YLL_%afAE>-ewcS5ELSHWHA;@Q(s1s rCAeid90-3W?0B(lM!1hqmX|ky{Q@1bO{bp#;d!X>NWDhQD(wFOjB279 delta 9267 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 From 93f04ff3e7d3195a6abb895aa5c0108ac7f18dd6 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sat, 24 Dec 2016 21:55:07 -0800 Subject: [PATCH 42/55] Something about Mining --- _maps/map_files/generic/z5.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_maps/map_files/generic/z5.dmm b/_maps/map_files/generic/z5.dmm index b5fa974..b7597f5 100644 --- a/_maps/map_files/generic/z5.dmm +++ b/_maps/map_files/generic/z5.dmm @@ -2247,7 +2247,7 @@ /turf/open/floor/plasteel, /area/mine/laborcamp/security) "gn" = ( -/obj/structure/chair/office/dark, +/obj/structure/chair/withwheels/office, /obj/structure/cable{ d1 = 1; d2 = 2; From d2356b7c13b21ad33a4635af8038782635b543f3 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sat, 24 Dec 2016 23:22:46 -0800 Subject: [PATCH 43/55] Stuff1 --- code/game/turfs/simulated/river.dm | 10 +++++----- code/game/turfs/turf.dm | 6 +++--- code/modules/mining/mine_turfs.dm | 7 ++++--- .../mob/living/simple_animal/hostile/mining_mobs.dm | 2 +- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/code/game/turfs/simulated/river.dm b/code/game/turfs/simulated/river.dm index 9ab92d0..ed73c34 100644 --- a/code/game/turfs/simulated/river.dm +++ b/code/game/turfs/simulated/river.dm @@ -20,7 +20,7 @@ continue W.connected = 1 var/turf/cur_turf = get_turf(W) - cur_turf.ChangeTurf(turf_type) + cur_turf.ChangeTurf(turf_type,FALSE,TRUE) var/turf/target_turf = get_turf(pick(river_nodes - W)) if(!target_turf) break @@ -49,7 +49,7 @@ cur_turf = get_step(cur_turf, cur_dir) continue else - var/turf/river_turf = cur_turf.ChangeTurf(turf_type) + var/turf/river_turf = cur_turf.ChangeTurf(turf_type,FALSE,TRUE) river_turf.Spread(25, 11, whitelist_area) for(var/WP in river_nodes) @@ -85,16 +85,16 @@ for(var/F in cardinal_turfs) //cardinal turfs are always changed but don't always spread var/turf/T = F - if(!istype(T, logged_turf_type) && T.ChangeTurf(type) && prob(probability)) + if(!istype(T, logged_turf_type) && T.ChangeTurf(type,FALSE,TRUE) && prob(probability)) T.Spread(probability - prob_loss, prob_loss, whitelisted_area) for(var/F in diagonal_turfs) //diagonal turfs only sometimes change, but will always spread if changed var/turf/T = F - if(!istype(T, logged_turf_type) && prob(probability) && T.ChangeTurf(type)) + if(!istype(T, logged_turf_type) && prob(probability) && T.ChangeTurf(type,FALSE,TRUE)) T.Spread(probability - prob_loss, prob_loss, whitelisted_area) else if(istype(T, /turf/closed/mineral)) var/turf/closed/mineral/M = T - M.ChangeTurf(M.turf_type) + M.ChangeTurf(M.turf_type,FALSE,TRUE) #undef RANDOM_UPPER_X diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 020a7d2..4f07d07 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -134,7 +134,7 @@ qdel(L) //Creates a new turf -/turf/proc/ChangeTurf(path, defer_change = FALSE) +/turf/proc/ChangeTurf(path, defer_change = FALSE,ignore_air = FALSE) if(!path) return if(!use_preloader && path == type) // Don't no-op if the map loader requires it to be reconstructed @@ -145,11 +145,11 @@ var/turf/W = new path(src) if(!defer_change) - W.AfterChange() + W.AfterChange(ignore_air) W.blueprint_data = old_blueprint_data return W -/turf/proc/AfterChange() //called after a turf has been replaced in ChangeTurf() +/turf/proc/AfterChange(ignore_air = FALSE) //called after a turf has been replaced in ChangeTurf() levelupdate() CalculateAdjacentTurfs() diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index b9b5ed9..c38b0a7 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -71,7 +71,7 @@ if (prob(mineralChance)) var/path = pickweight(mineralSpawnChanceList) - var/turf/T = ChangeTurf(path) + var/turf/T = ChangeTurf(path,FALSE,TRUE) if(T && istype(T, /turf/closed/mineral)) var/turf/closed/mineral/M = T @@ -339,7 +339,7 @@ if(istype(tunnel)) // Small chance to have forks in our tunnel; otherwise dig our tunnel. if(i > 3 && prob(20)) - var/turf/open/floor/plating/asteroid/airless/cave/C = tunnel.ChangeTurf(data_having_type) + var/turf/open/floor/plating/asteroid/airless/cave/C = tunnel.ChangeTurf(data_having_type,FALSE,TRUE) C.going_backwards = FALSE C.produce_tunnel_from_data(rand(10, 15), dir) else @@ -364,7 +364,7 @@ return SpawnMonster(T) - T.ChangeTurf(turf_type) + T.ChangeTurf(turf_type,FALSE,TRUE) /turf/open/floor/plating/asteroid/airless/cave/proc/SpawnMonster(turf/T) if(prob(30)) if(istype(loc, /area/mine/explored) || istype(loc, /area/lavaland/surface/outdoors/explored)) @@ -884,6 +884,7 @@ icon = 'icons/turf/floors.dmi' icon_state = "necro1" baseturf = /turf/open/indestructible/necropolis + initial_gas_mix = "o2=14;n2=23;TEMP=300" /turf/open/indestructible/necropolis/New() ..() diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm index 2bca35a..0c71e7b 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs.dm @@ -1013,7 +1013,7 @@ for(var/F in RANGE_TURFS(1, src)) if(istype(F, /turf/closed/mineral)) var/turf/closed/mineral/M = F - M.ChangeTurf(M.turf_type) + M.ChangeTurf(M.turf_type,FALSE,TRUE) gps = new /obj/item/device/gps/internal(src) /mob/living/simple_animal/hostile/spawner/lavaland/Destroy() From 24a44e6fac0d850f7cdc446a985ef95015b16981 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sat, 24 Dec 2016 23:27:32 -0800 Subject: [PATCH 44/55] REEEEEEE ATMOS --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 79790 ++-------------- 1 file changed, 7600 insertions(+), 72190 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index e73e055..d533981 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -1,72187 +1,7598 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aad" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aae" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aag" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aah" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aai" = ( -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aak" = ( -/obj/machinery/door/poddoor{ - id = "executionspacevent" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aal" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aam" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/open/space, -/area/space) -"aan" = ( -/obj/machinery/flasher{ - id = "executionflasher"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aao" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/processing) -"aap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/processing) -"aar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/security/transfer) -"aas" = ( -/obj/machinery/sparker{ - id = "executionsparker"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aat" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/chair, -/turf/open/floor/engine, -/area/security/transfer) -"aau" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aax" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aay" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northwest"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/processing) -"aaD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaE" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aaF" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaH" = ( -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - heat_proof = 1; - name = "Prisoner Transfer Chamber"; - req_access_txt = "2" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaL" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"aaM" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 10000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaN" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaO" = ( -/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaP" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/razor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaR" = ( -/obj/machinery/button/flasher{ - id = "executionflasher"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "executionspacevent"; - name = "vent to space"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaS" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/weapon/tank/internals/anesthetic, -/obj/item/weapon/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaV" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northeast"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaW" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaX" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaY" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aba" = ( -/obj/machinery/button/ignition{ - id = "executionsparker"; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abd" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"abe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abf" = ( -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"abg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abi" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/transfer) -"abk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/door/window/northleft{ - dir = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abq" = ( -/obj/machinery/door/airlock/security{ - name = "Prisoner Transfer"; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abw" = ( -/obj/structure/table, -/obj/item/device/electropack, -/obj/item/clothing/head/helmet, -/obj/item/device/assembly/signaler, -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Transfer Center APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aby" = ( -/obj/structure/closet/secure_closet/injection, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abz" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abF" = ( -/turf/closed/wall/r_wall, -/area/security/lockers) -"abG" = ( -/turf/closed/wall/r_wall, -/area/security/hos) -"abH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/hos) -"abI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abK" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Brig Interrogation" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/processing) -"abO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/carpet, -/area/security/hos) -"abQ" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"abT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/carpet, -/area/security/hos) -"abU" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"abV" = ( -/obj/machinery/computer/card/minor/hos, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abW" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/lockers) -"abX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/plasteel, -/area/security/lockers) -"abY" = ( -/turf/open/floor/plasteel, -/area/security/lockers) -"abZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Cappers! Fairly unremarkable really."; - name = "\improper Officer Cappers" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aca" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Camilla! He constantly seeks validation."; - name = "\improper Officer Camilla" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acb" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acd" = ( -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ace" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acg" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ach" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aci" = ( -/obj/structure/table, -/obj/item/weapon/lighter, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"ack" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"acl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acm" = ( -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Prison Shuttle Dock APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aco" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acp" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acr" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"act" = ( -/obj/structure/closet/ammunitionlocker, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acu" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acw" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/deputy, -/obj/item/weapon/storage/box/seccarts, -/turf/open/floor/carpet, -/area/security/hos) -"acx" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"acy" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acz" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acA" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acB" = ( -/turf/open/floor/carpet, -/area/security/hos) -"acC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acD" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acE" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acF" = ( -/obj/structure/table, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acG" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"acI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acP" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/recharger, -/turf/open/floor/carpet, -/area/security/hos) -"acQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/adamantine, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acR" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/security/hos) -"acS" = ( -/obj/structure/closet/secure_closet/hos, -/turf/open/floor/carpet, -/area/security/hos) -"acT" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Brig Locker Room West"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/lockers) -"acY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"ada" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"add" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"ade" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"adi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adj" = ( -/obj/structure/closet/ammunitionlocker, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/security/hos) -"adn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/security/hos) -"ado" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adp" = ( -/turf/closed/wall, -/area/security/transfer) -"adq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/transfer) -"ads" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Security Locker Room APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adw" = ( -/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/open/floor/plasteel, -/area/security/lockers) -"adx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/brig) -"ady" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"adz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"adA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adE" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/red, -/obj/item/weapon/stamp/hos, -/turf/open/floor/carpet, -/area/security/hos) -"adF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Brig Riot Equipment"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -24 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"adI" = ( -/turf/closed/wall, -/area/security/hos) -"adJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adK" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/carpet, -/area/security/hos) -"adL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adM" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adO" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"adP" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adQ" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adR" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/metal{ - amount = 20 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/security/lockers) -"adT" = ( -/obj/structure/table, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/machinery/camera{ - c_tag = "Brig Locker Room East"; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adU" = ( -/obj/machinery/vending/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/isolation) -"adW" = ( -/obj/machinery/vending/medical{ - pixel_x = -2; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitered" - }, -/area/security/isolation) -"adX" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitered" - }, -/area/security/isolation) -"adY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"adZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aea" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aed" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aef" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor Northwest"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"aeg" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/storage/box/flashbangs, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeh" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/teargas, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aei" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/camera/motion{ - c_tag = "Armory"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aej" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aek" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"ael" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aem" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/hos) -"aen" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/turf/open/floor/carpet, -/area/security/hos) -"aeo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/hos) -"aep" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aer" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/main) -"aes" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"aet" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"aeu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"aev" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aew" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Brig Medbay"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/isolation) -"aex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"aey" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aez" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aeG" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/chemimp, -/obj/item/weapon/storage/box/trackimp, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeK" = ( -/obj/machinery/button/door{ - id = "riotequipment"; - name = "Riot Equipment Shutters"; - pixel_x = 24; - pixel_y = 32; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeN" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/hos) -"aeQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"aeS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aeT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aeU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeV" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeW" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/main) -"afa" = ( -/obj/machinery/computer/security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"afb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afc" = ( -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afd" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afe" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"aff" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"afh" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afi" = ( -/obj/structure/bed, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"afj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fpmaint) -"afm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afp" = ( -/obj/structure/rack, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afq" = ( -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; - name = "\improper Officer Lock n Lode" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afs" = ( -/obj/structure/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aft" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Armory APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afv" = ( -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"afw" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"afx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"afy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"afz" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afA" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afB" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afC" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afD" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"afF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afG" = ( -/obj/machinery/camera{ - c_tag = "Brig Medbay"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afI" = ( -/turf/closed/wall, -/area/security/main) -"afJ" = ( -/obj/structure/grille, -/turf/open/space, -/area/space) -"afK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 6" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afO" = ( -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Secure Cell 2"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afR" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afS" = ( -/obj/machinery/door/window/brigdoor{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afT" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afU" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/ecase, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afV" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/shotgun, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afW" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "2" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aga" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"agc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"age" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/main) -"agf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"agh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Security Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"agi" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agj" = ( -/obj/machinery/door/airlock{ - name = "Showers"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agl" = ( -/obj/machinery/camera{ - c_tag = "Brig Showers"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agm" = ( -/turf/open/floor/plasteel, -/area/security/main) -"agn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"ago" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitered" - }, -/area/security/isolation) -"agp" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitered" - }, -/area/security/isolation) -"agq" = ( -/obj/structure/table, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitered" - }, -/area/security/isolation) -"agr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"ags" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"agt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Medbay APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"agu" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agv" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agw" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall14"; - dir = 2 - }, -/area/shuttle/pod_3) -"agx" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/pod_3) -"agz" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agA" = ( -/obj/machinery/flasher{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"agC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell2"; - name = "Secure Cell 2"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"agE" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"agJ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agK" = ( -/obj/vehicle/secway, -/obj/item/key/security, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agL" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/weapon/gun/energy/laser/practice, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"agM" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/main) -"agP" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Security Office West"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/open/floor/plasteel, -/area/security/main) -"agR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/camera{ - c_tag = "Security Office East"; - dir = 8; - network = list("SS13") - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"agT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aha" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahc" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahd" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc4" - }, -/area/shuttle/pod_3) -"ahe" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahf" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahg" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahi" = ( -/obj/structure/chair, -/obj/item/weapon/storage/pod{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahj" = ( -/obj/structure/chair, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahk" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aho" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahp" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aht" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahx" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"ahy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahA" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahB" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -31; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahC" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall1"; - dir = 2 - }, -/area/shuttle/labor) -"ahD" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"ahF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahG" = ( -/obj/structure/rack, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahR" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahS" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/button/door{ - id = "armorylockdown"; - name = "Brig Control Lockdown"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahV" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahW" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Brig Control APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahX" = ( -/turf/closed/wall, -/area/security/warden) -"ahY" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahZ" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/item/device/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/main) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aib" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aid" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - dwidth = 2; - height = 9; - id = "pod3"; - name = "escape pod 3"; - width = 5 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aie" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aif" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Brig Escape Shuttle"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aig" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aih" = ( -/obj/docking_port/stationary/random{ - dir = 4; - dwidth = 2; - height = 9; - id = "asteroid_pod3"; - width = 5 - }, -/turf/open/space, -/area/space) -"aii" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aij" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aik" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window/westleft{ - name = "Security Delivery"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/main) -"ail" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aim" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ain" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/main) -"aio" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aip" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiq" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"air" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ais" = ( -/obj/structure/table, -/obj/item/baseball, -/obj/item/baseball, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ait" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiv" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiy" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 5" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiz" = ( -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Secure Cell 1"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"aiA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aiB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aiC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aiE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aiL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiM" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiN" = ( -/obj/machinery/flasher{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell1"; - name = "Secure Cell 1"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Brig APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) -"aiR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aiY" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc1" - }, -/area/shuttle/pod_3) -"aiZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aja" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ajb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "brigshuttleflash"; - name = "Flash Control"; - pixel_x = -4; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 0; - pixel_y = -31 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod3"; - shuttleId = "pod3" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajd" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajn" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"ajp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"ajs" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aju" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Courtroom North"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajv" = ( -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/courtroom) -"ajx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice{ - pixel_y = 4 - }, -/obj/item/weapon/dice/d8{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajy" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajA" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ajB" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d20, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ajD" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/brig) -"ajG" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajI" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajL" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajM" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ajZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aka" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall13"; - dir = 2 - }, -/area/shuttle/pod_3) -"akb" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/pod_3) -"akc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"akd" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"ake" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akg" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aki" = ( -/obj/structure/table/wood, -/obj/item/weapon/gavelblock, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akj" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d12, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akk" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"akm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"akn" = ( -/turf/closed/wall, -/area/security/isolation) -"ako" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 4"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akq" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall7"; - dir = 2 - }, -/area/shuttle/labor) -"akr" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 3"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"aks" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall11"; - dir = 2 - }, -/area/shuttle/labor) -"akt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aku" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akv" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 1"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akw" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Evidence"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aky" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akC" = ( -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akE" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"akG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akI" = ( -/obj/structure/table/wood/poker, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akJ" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d10, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akL" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akM" = ( -/obj/structure/chair/comfy/brown, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/cheesie, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/weapon/mop, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akO" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/ian, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akP" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akS" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akX" = ( -/turf/closed/wall, -/area/maintenance/fsmaint) -"akY" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"akZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"ala" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Front Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/crew_quarters/courtroom) -"alc" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ald" = ( -/turf/closed/wall/r_wall, -/area/security/isolation) -"ale" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alf" = ( -/obj/item/weapon/dice/d4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"alg" = ( -/obj/structure/grille, -/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ali" = ( -/obj/item/stack/teeth/lizard{ - amount = 3 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"all" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aln" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alo" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alp" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "perma prison shuttle"; - port_angle = 90; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"alq" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alr" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/rack, -/obj/item/clothing/head/bowler, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/computer/security, -/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/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aly" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/crew_quarters/courtroom) -"alz" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 8; - name = "Courtroom APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alB" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alD" = ( -/obj/item/trash/can, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alE" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigars, -/obj/item/weapon/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alF" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 4"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alG" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 4" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alH" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 3" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alI" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 3"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alJ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alK" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 1" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alM" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alN" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"alP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alQ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/camera{ - c_tag = "Brig Lobby Desk"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/flasher{ - id = "lobbyflash"; - pixel_y = -4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "lobbylockdown"; - name = "Lobby Lockdown"; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"alV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"alY" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/space) -"alZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ama" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amb" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/weapon/gun/magic/staff, -/obj/item/weapon/gun/magic/wand, -/obj/item/weapon/sord, -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amc" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/clothing/suit/armor/riot/knight, -/obj/item/clothing/head/helmet/knight, -/obj/item/clothing/head/wizard/fake, -/obj/item/clothing/suit/wizrobe/fake, -/obj/item/clothing/head/helmet/roman, -/obj/item/clothing/shoes/roman, -/obj/item/clothing/under/roman, -/obj/item/clothing/suit/space/pirate, -/obj/item/clothing/under/kilt, -/obj/item/clothing/under/pirate, -/obj/item/clothing/under/gladiator, -/obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amd" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ame" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amg" = ( -/obj/structure/grille, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ami" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"amj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aml" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"amm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"amn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ams" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amt" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amw" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amx" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amz" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Brig Lobby" - }, -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amF" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amH" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"amJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"amN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amO" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amS" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amU" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"amV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"amW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amY" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amZ" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ana" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anb" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"and" = ( -/obj/structure/table, -/obj/item/weapon/stamp, -/obj/item/weapon/poster/legit, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ane" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ang" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anh" = ( -/obj/structure/rack, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ani" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ano" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anp" = ( -/obj/machinery/atmospherics/pipe/manifold, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ans" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ant" = ( -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anv" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"anw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"any" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Courtroom"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anA" = ( -/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"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anE" = ( -/obj/structure/table, -/obj/item/clothing/glasses/monocle, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anF" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/pill/morphine, -/obj/item/weapon/reagent_containers/pill/morphine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anG" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"anN" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"anO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anP" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anQ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anS" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aob" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aoc" = ( -/turf/closed/wall, -/area/security/brig) -"aod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"aoe" = ( -/obj/machinery/camera{ - c_tag = "Cargo North"; - dir = 4; - network = list("perma") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"aof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology North"; - dir = 8; - network = list("perma") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"aog" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoi" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aok" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aol" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aom" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aon" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aoo" = ( -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aop" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aoq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aor" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aos" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/main) -"aot" = ( -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aou" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aov" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/matches, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aow" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 1; - color = "red"; - dir = 1 - }, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aox" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/bag/tray{ - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoy" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/photo_album, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoA" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoC" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoD" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoE" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoG" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"aoH" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"aoJ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Port Engineering Hallway" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"aoK" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northwest"; - dir = 5; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoL" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northeast"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoN" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southwest"; - dir = 4; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoO" = ( -/obj/item/weapon/crowbar, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aoP" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoQ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoR" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoS" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoT" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Detective's Office"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoU" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aoX" = ( -/obj/structure/rack, -/obj/item/weapon/storage/backpack/satchel/sec, -/obj/item/weapon/storage/backpack/security, -/obj/item/weapon/storage/backpack/dufflebag/sec, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aoZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apb" = ( -/obj/machinery/vending/snack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apd" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apf" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"apg" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"aph" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"api" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apl" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apm" = ( -/obj/structure/closet/cardboard, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apn" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"apo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"app" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Detective" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"apr" = ( -/obj/machinery/button/door{ - id = "detshutters"; - name = "Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aps" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apt" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/brig) -"apu" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apv" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"apw" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/outpost) -"apx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apy" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"apC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apD" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apF" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Security Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apM" = ( -/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" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Security Electrical Maintenance APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apP" = ( -/turf/closed/wall, -/area/maintenance/secelectrical) -"apQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"apU" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apW" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/adamantine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apX" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apY" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqa" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "4" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/wirecutters, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqe" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqf" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqi" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aqj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqk" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aql" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqm" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqo" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqu" = ( -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqx" = ( -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqA" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"aqB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aqC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aqE" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Northeast" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqG" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqH" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqJ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqL" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqM" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqN" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6; - icon_state = "tracks"; - tag = "icon-tracks (SOUTHWEST)" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqR" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqU" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqY" = ( -/obj/machinery/door/airlock/security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ara" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arb" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"arc" = ( -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/space) -"ard" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ari" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ark" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arl" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arq" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arr" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"ars" = ( -/obj/structure/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"art" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aru" = ( -/obj/structure/closet/cardboard, -/obj/item/clothing/suit/jacket/miljacket, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"arv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arw" = ( -/obj/structure/table, -/obj/item/stack/ducttape, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/gold, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c50, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ary" = ( -/obj/structure/table/wood, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arz" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arA" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arB" = ( -/obj/machinery/camera{ - c_tag = "Detective's Office Backroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"arD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway North"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arN" = ( -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"arO" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod1" - }, -/turf/open/space, -/area/space) -"arP" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod2" - }, -/turf/open/space, -/area/space) -"arQ" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/labor) -"arR" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"arS" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/labor) -"arT" = ( -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/engine/port_engineering) -"arU" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southeast"; - dir = 9; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"arV" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/weapon/crowbar, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Red Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = 22; - pixel_y = -10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"arW" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel, -/area/bridge) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asb" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asc" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"asd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/lawoffice) -"asf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawshutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"asg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ash" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ask" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Dormitory APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aso" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ass" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_1) -"ast" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"asu" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_1) -"asv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_2) -"asw" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_2) -"asx" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_2) -"asy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/labor) -"asz" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"asA" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/stack/cable_coil, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"asB" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"asC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asE" = ( -/obj/structure/closet/crate, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asF" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plating, -/area/engine/port_engineering) -"asG" = ( -/obj/structure/table, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/engineering) -"asH" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"asI" = ( -/obj/structure/table, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"asJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asL" = ( -/obj/structure/sign/atmosplaque{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asM" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/lawoffice) -"asN" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/paicard, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asO" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/orange, -/obj/item/clothing/glasses/gglasses, -/turf/open/floor/wood, -/area/lawoffice) -"asP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/lawoffice) -"asQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asR" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor/carpet, -/area/lawoffice) -"asS" = ( -/turf/open/floor/carpet, -/area/lawoffice) -"asT" = ( -/obj/structure/rack, -/obj/item/weapon/storage/briefcase, -/obj/item/weapon/storage/briefcase, -/turf/open/floor/carpet, -/area/lawoffice) -"asU" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"asV" = ( -/obj/machinery/button/door{ - id = "lawshutters"; - name = "Privacy Shutters"; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"asZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"ata" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ate" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Pool APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"atf" = ( -/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/open/floor/plating, -/area/maintenance/fpmaint2) -"atg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ath" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_1) -"ati" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod1"; - shuttleId = "pod1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_2) -"atk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod2"; - shuttleId = "pod2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atl" = ( -/obj/item/stack/rods, -/turf/open/space, -/area/space) -"atm" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"atn" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ato" = ( -/obj/structure/closet/masks, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atp" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"atr" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"ats" = ( -/obj/effect/decal/cleanable/oil, -/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" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"att" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atu" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atx" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/item/weapon/storage/firstaid/surgery, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"aty" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/morphine, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/storage/firstaid/surgery{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"atz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"atA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atL" = ( -/turf/closed/wall, -/area/maintenance/commiespy) -"atM" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"atN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"atQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/turf/open/floor/carpet, -/area/lawoffice) -"atT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atU" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atV" = ( -/obj/machinery/camera{ - c_tag = "Pool North" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atW" = ( -/obj/structure/closet, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atX" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Law Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/lawoffice) -"atY" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue, -/obj/item/weapon/pen/red, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atZ" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/device/taperecorder, -/turf/open/floor/wood, -/area/lawoffice) -"aua" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/lawoffice) -"aub" = ( -/obj/structure/closet/crate, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/wood, -/area/lawoffice) -"auc" = ( -/obj/structure/closet, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/under/griffin, -/obj/item/clothing/head/griffin, -/obj/item/clothing/shoes/griffin, -/obj/item/clothing/suit/toggle/owlwings/griffinwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/pig, -/obj/item/clothing/head/chicken, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/wood, -/area/lawoffice) -"aud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet, -/area/lawoffice) -"aue" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/law, -/obj/item/weapon/pen/blue, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"auf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/med_data, -/turf/open/floor/carpet, -/area/lawoffice) -"aug" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/lawoffice) -"auh" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/lawoffice) -"aui" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/lawoffice) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (WEST)"; - icon_state = "yellowcornersiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"auk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aul" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aum" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"auo" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aup" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auq" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/open/floor/engine, -/area/gateway) -"aur" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aus" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1351; - name = "Science intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "Supply intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1355; - name = "Medical intercom"; - pixel_x = -27; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"aut" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1353; - name = "Command intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Stronk Russian APC"; - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/soviet, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auw" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aux" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_1) -"auy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod1"; - name = "escape pod 1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"auz" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_1) -"auA" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_2) -"auB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod2"; - name = "escape pod 2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"auC" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_2) -"auD" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/arrival) -"auE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) -"auF" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/arrival) -"auG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auH" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auI" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"auJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"auK" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"auL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Garden APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"auM" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/engine, -/area/gateway) -"auN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"auO" = ( -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auQ" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"auR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_access_txt = list(27,12) - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"auW" = ( -/obj/machinery/gateway, -/turf/open/floor/engine, -/area/gateway) -"auX" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway South"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"auY" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"ava" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avb" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avc" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avd" = ( -/turf/closed/wall, -/area/lawoffice) -"ave" = ( -/turf/closed/wall, -/area/maintenance/fsmaint2) -"avf" = ( -/obj/structure/falsewall, -/turf/open/floor/plating/airless, -/area/maintenance/fsmaint2) -"avg" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1447; - name = "AI Private intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/storage/photo_album, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avi" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/syndie, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avl" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"avm" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avn" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avo" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avp" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"avr" = ( -/obj/machinery/vending/boozeomat{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avs" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avt" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avu" = ( -/obj/machinery/door/window/southright{ - name = "Gateway Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"avv" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avw" = ( -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avx" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/diamond, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avG" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel Office APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/sleeper{ - dir = 4; - icon_state = "sleeper-open" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avL" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/camera{ - c_tag = "Arrivals Infirmary"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avM" = ( -/obj/structure/table/glass, -/obj/item/weapon/cultivator, -/obj/item/weapon/hatchet, -/obj/item/weapon/crowbar, -/obj/item/device/plant_analyzer, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avN" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"avO" = ( -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avP" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avS" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avT" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"avU" = ( -/obj/machinery/door/airlock/external{ - name = "Airlock"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avV" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1357; - name = "Engineering intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avW" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/clothing/tie/stethoscope, -/obj/item/device/camera, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer{ - desc = "These possibly cant be even letters, blyat!"; - name = "Russian computer" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avY" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avZ" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"awa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awb" = ( -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awc" = ( -/obj/item/trash/candy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awe" = ( -/obj/structure/rack, -/obj/item/weapon/gun/projectile/shotgun/toy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 1"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awg" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/arrival) -"awk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"awl" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awn" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awp" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awq" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aws" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"awu" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"awv" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aww" = ( -/obj/effect/landmark/start{ - name = "Mime" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"awx" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/white, -/area/mime) -"awy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/office) -"awA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awB" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/hallway/secondary/entry) -"awC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awE" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"awG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"awI" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"awK" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awP" = ( -/obj/machinery/door/window/northright{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"awQ" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"awS" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/library) -"awT" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/storage/tools) -"awU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"awV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"awW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"awX" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"awY" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"awZ" = ( -/obj/item/weapon/garrote, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"axa" = ( -/obj/machinery/vending/sustenance, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axb" = ( -/obj/machinery/computer/crew, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axc" = ( -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axd" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axe" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axf" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axg" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"axh" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axi" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axj" = ( -/turf/closed/wall/shuttle{ - blocks_air = 6; - dir = 1; - icon_state = "swall13" - }, -/area/shuttle/arrival) -"axk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/arrival) -"axl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"axm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"axo" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axr" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2) -"axs" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axt" = ( -/obj/structure/table/wood, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/rag, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axw" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/bandana/red, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axx" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"axz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axA" = ( -/obj/item/weapon/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axB" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"axC" = ( -/obj/item/weapon/storage/box, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"axD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"axJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axK" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/quartermaster/storage) -"axR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axT" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"axU" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/button/door{ - dir = 2; - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/assembly/robotics) -"axV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axW" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"axX" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axY" = ( -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"axZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency) -"aya" = ( -/turf/open/floor/wood, -/area/lawoffice) -"ayb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency) -"ayc" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency) -"ayd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency) -"aye" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"ayf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ayi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayk" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayl" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aym" = ( -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayn" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayo" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayq" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayr" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"ays" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayv" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayB" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"ayD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayE" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayG" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayL" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayM" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayN" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayP" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayR" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/labor) -"ayS" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"ayT" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/labor) -"ayU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ayZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"aza" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"azc" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/medical) -"azd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aze" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"azf" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"azg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"azi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"azj" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"azk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"azl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"azm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fsmaint2) -"azn" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fsmaint2) -"azo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"azp" = ( -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azq" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"azr" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azt" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azv" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azw" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azx" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark{ - name = "JoinLate" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azA" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azB" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Port Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Fore Port Solar Control"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azD" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azE" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - tag = "icon-manifold (WEST)"; - icon_state = "manifold"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azH" = ( -/obj/item/trash/sosjerky, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azL" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"azM" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azN" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azP" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azQ" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azS" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"azT" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"azU" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azV" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"aAb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAc" = ( -/mob/living/simple_animal/bot/cleanbot{ - desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; - name = "\improper Dumpy"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aAd" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Maint Bar Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"aAj" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "caution" - }, -/area/engine/break_room) -"aAk" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/engine/break_room) -"aAl" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/engine/break_room) -"aAm" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"aAn" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aAo" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aAp" = ( -/obj/machinery/camera{ - c_tag = "Engineering Checkpoint"; - dir = 8; - network = list("perma") - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"aAq" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aAr" = ( -/obj/machinery/the_singularitygen, -/turf/open/floor/plating/airless, -/area/space) -"aAs" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/space) -"aAt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aAu" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAw" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAx" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAy" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aAA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAC" = ( -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aAD" = ( -/obj/structure/table, -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAF" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAH" = ( -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod Hallway"; - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAK" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAL" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aAM" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aAN" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAO" = ( -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"aAP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAR" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAS" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAU" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/under/rank/bartender, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAW" = ( -/turf/closed/wall, -/area/maintenance/fpmaint) -"aAX" = ( -/obj/machinery/poolcontroller, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"aBz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aBA" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBC" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/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 = 32 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBD" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBE" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aBG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBH" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBJ" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aBK" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBL" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aBN" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBP" = ( -/obj/machinery/camera{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHEAST)"; - icon_state = "intact"; - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBS" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBU" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBV" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBW" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBX" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/tile/wood{ - amount = 25 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBY" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBZ" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCc" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aCr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/lawoffice) -"aCt" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCv" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCw" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/fsmaint2) -"aCx" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aCy" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"aCz" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCB" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCD" = ( -/obj/structure/closet, -/obj/item/ammo_box/foambox, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCE" = ( -/obj/structure/lattice, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aCF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCG" = ( -/obj/structure/closet/wardrobe/blue, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCH" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCI" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCL" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCQ" = ( -/obj/structure/bed, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCR" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCT" = ( -/obj/structure/table/wood/poker, -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCV" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDc" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aDd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aDe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aDh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDv" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Starboard Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDx" = ( -/obj/machinery/camera{ - c_tag = "Fore Starboard Solars"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint2) -"aDz" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDD" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aDG" = ( -/obj/structure/closet/wardrobe/pink, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDH" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDJ" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDK" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDP" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDQ" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aDR" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDT" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDU" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDW" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aEd" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEg" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEk" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEl" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aEm" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEA" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aEC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aED" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEE" = ( -/obj/structure/grille, -/obj/effect/landmark{ - name = "Syndicate Breach Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aEI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aEJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEK" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEM" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEN" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/weapon/coin/gold, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEQ" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aER" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aES" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"aET" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEU" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEV" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEW" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aEY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHWEST)"; - icon_state = "intact"; - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFe" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North Maintenance APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFf" = ( -/obj/machinery/monkey_recycler, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFg" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFh" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFs" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/bodybags, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFt" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFA" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFD" = ( -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFG" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFH" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFI" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFJ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFL" = ( -/turf/closed/wall, -/area/crew_quarters/pool) -"aFM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFQ" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"aFR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFS" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFX" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFY" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFZ" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGa" = ( -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGb" = ( -/obj/structure/closet, -/obj/item/weapon/coin/iron, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGc" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fpmaint2) -"aGm" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGo" = ( -/obj/structure/mineral_door/wood, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aGq" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGr" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGs" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGt" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aGw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aGH" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aGI" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aGM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/crew_quarters/sleep) -"aGN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/crew_quarters/sleep) -"aGO" = ( -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGQ" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHb" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHc" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHe" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHf" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHh" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHi" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHj" = ( -/turf/closed/wall, -/area/maintenance/electrical) -"aHk" = ( -/turf/closed/wall, -/area/space) -"aHl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space) -"aHm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHs" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHt" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHu" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aHw" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aHx" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHy" = ( -/obj/structure/chair/withwheels/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aHz" = ( -/obj/structure/closet/crate, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHA" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHB" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHC" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHE" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aHN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aHO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aHP" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHS" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aHV" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHW" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/toy/carpplushie, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aHZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding"; - icon_state = "yellowcornersiding" - }, -/area/crew_quarters/pool) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aIg" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIh" = ( -/obj/structure/table, -/obj/item/weapon/shard, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/shard{ - icon_state = "small" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIi" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIj" = ( -/obj/machinery/button/door{ - id = "maint3"; - name = "Blast Door Control C"; - pixel_x = 0; - pixel_y = 24; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIk" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIl" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIm" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10; - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIn" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIo" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIp" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/maintenance/electrical) -"aIq" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/maintenance/electrical) -"aIr" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aIs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIx" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space) -"aIy" = ( -/turf/open/floor/plating/airless, -/area/space) -"aIz" = ( -/obj/item/weapon/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/space) -"aIA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIB" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIC" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aID" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIF" = ( -/obj/machinery/button/door{ - id = "hobodorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIH" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aII" = ( -/obj/machinery/button/door{ - id = "hobodorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/fpmaint) -"aIJ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIN" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aIP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aIU" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIV" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aIX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIY" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aIZ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/poolfilter{ - pixel_y = 11 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aJb" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Holodeck" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJf" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJh" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJn" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJo" = ( -/turf/open/floor/plating, -/area/maintenance/electrical) -"aJp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aJt" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/arrival) -"aJu" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aJv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/arrival) -"aJx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJA" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJB" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJC" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/circuitboard/computer/operating, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJD" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/chair, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJF" = ( -/obj/item/weapon/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/space, -/area/space) -"aJG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJI" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm1"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aJK" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/item/weapon/bedsheet/brown, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aJL" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/weapon/bedsheet/orange, -/turf/open/floor/plasteel, -/area/maintenance/fpmaint) -"aJM" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/fpmaint) -"aJN" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm2"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJX" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aJY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aKa" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKb" = ( -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Dormitory North" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aKi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aKj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aKk" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/toy/poolnoodle/blue, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKl" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aKn" = ( -/obj/machinery/computer/holodeck, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKo" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aKs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKu" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKx" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/weapon/surgical_drapes, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKz" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"aKA" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKF" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKK" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKQ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKV" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"aKW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLb" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLe" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLf" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLg" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLh" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLi" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aLm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aLn" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/ladder, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLo" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/drain, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLp" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/Lboard, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLr" = ( -/obj/structure/table, -/obj/item/weapon/paper{ - desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aLs" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLt" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLu" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLw" = ( -/obj/machinery/button/door{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_x = -28; - pixel_y = 4; - req_access_txt = "0" - }, -/obj/machinery/button/door{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -28; - pixel_y = -6; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLx" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLy" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLz" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLI" = ( -/obj/structure/table, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aLL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-West"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLP" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLQ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-East"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLY" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLZ" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMa" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/bag/trash, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aMc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMs" = ( -/obj/structure/closet/crate/rcd, -/obj/machinery/camera/motion{ - c_tag = "EVA Motion Sensor"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/hand_labeler, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/item/clothing/head/welding, -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Storage APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMw" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/device/radio/off, -/obj/item/device/assembly/timer, -/obj/structure/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMx" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMy" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMz" = ( -/obj/item/device/aicard, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMB" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMC" = ( -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aME" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aMF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMG" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMI" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/violin, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMJ" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMK" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aML" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aMP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNb" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNc" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNd" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNi" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNj" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNk" = ( -/obj/structure/table/glass, -/obj/item/weapon/hemostat, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNl" = ( -/obj/structure/table/glass, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aNy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aNz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNA" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"aNC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aND" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNE" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNG" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/assembly/signaler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNH" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aNI" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aNK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aNQ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/clothing/under/shorts/red, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aNR" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOg" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOh" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOi" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aOl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOm" = ( -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aOn" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOo" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOp" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aOs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aOu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aOv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aOw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOy" = ( -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOD" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOH" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/patriot, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aOK" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/open/floor/engine, -/area/gateway) -"aOM" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/open/floor/engine, -/area/gateway) -"aON" = ( -/turf/open/floor/engine, -/area/gateway) -"aOO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOY" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aOZ" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aPa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 2 - }, -/area/crew_quarters/sleep) -"aPb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPe" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPf" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/toilet) -"aPi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPr" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPs" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPv" = ( -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPx" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPy" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aPA" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPB" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/space) -"aPD" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPE" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPF" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/security/checkpoint2) -"aPG" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPI" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint2) -"aPJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aPK" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPQ" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPT" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPV" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPY" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/primary) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQb" = ( -/obj/structure/bed/dogbed, -/obj/item/weapon/reagent_containers/food/drinks/flask/det{ - desc = "A Space Veteran's only friend."; - name = "space veteran's flask" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQc" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aQe" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/open/floor/engine, -/area/gateway) -"aQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/gateway) -"aQg" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aQh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aQi" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQj" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aQv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQw" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aQx" = ( -/turf/closed/wall, -/area/crew_quarters/toilet) -"aQy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aQA" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/table/glass, -/obj/item/clothing/under/shorts/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQD" = ( -/obj/machinery/camera{ - c_tag = "Pool South"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQH" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQI" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/bruise_pack, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/crew_quarters/pool) -"aQJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aQL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQN" = ( -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aQS" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/security/checkpoint2) -"aQT" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQW" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQX" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint2) -"aQY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRe" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRf" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRj" = ( -/turf/closed/wall, -/area/storage/primary) -"aRk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/primary) -"aRn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRo" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/turf/open/floor/engine, -/area/gateway) -"aRq" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"aRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aRs" = ( -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRv" = ( -/obj/item/weapon/pen{ - desc = "Writes upside down!"; - name = "astronaut pen" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRx" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRy" = ( -/obj/machinery/camera{ - c_tag = "EVA East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aRA" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aRB" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRD" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRI" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aRM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRO" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aRP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRT" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/weapon/lighter, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 8; - pixel_y = 9; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSf" = ( -/turf/closed/wall, -/area/chapel/main) -"aSg" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSh" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/chapel/main) -"aSi" = ( -/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 = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/chapel/main) -"aSj" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/turf/open/floor/plating, -/area/chapel/main) -"aSm" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSo" = ( -/turf/closed/wall, -/area/security/checkpoint2) -"aSp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSq" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSA" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSB" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSC" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSE" = ( -/obj/structure/table, -/obj/item/weapon/wirecutters, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSF" = ( -/obj/structure/table, -/obj/item/device/t_scanner, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSG" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSH" = ( -/obj/structure/table, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/item/device/multitool, -/obj/item/device/multitool{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSL" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSM" = ( -/turf/closed/wall, -/area/mime) -"aSO" = ( -/turf/closed/wall, -/area/clown) -"aSP" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSS" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aST" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSU" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aTa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Command EVA"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aTc" = ( -/obj/machinery/door/airlock/command{ - name = "Command EVA"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aTg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTj" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTm" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTn" = ( -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTo" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage" - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aTr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j1s"; - sortType = 18 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTu" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTw" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/chapel/main) -"aTF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aTH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTM" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTN" = ( -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/main) -"aTP" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aTS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTT" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Green Arrivals"; - name = "Nothing To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTU" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTV" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTW" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTX" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTZ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aUa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aUb" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aUj" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/plants{ - lootcount = 10; - name = "10plant_spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUk" = ( -/obj/machinery/door/airlock{ - name = "Garden"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUl" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aUm" = ( -/obj/machinery/camera{ - c_tag = "Mime Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/mime, -/turf/open/floor/plasteel/black, -/area/mime) -"aUn" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aUo" = ( -/obj/item/weapon/bedsheet/mime, -/obj/structure/bed, -/turf/open/floor/plasteel/black, -/area/mime) -"aUp" = ( -/obj/machinery/camera{ - c_tag = "Clown Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/clown, -/turf/open/floor/plasteel/green, -/area/clown) -"aUq" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aUr" = ( -/obj/item/weapon/bedsheet/clown, -/obj/structure/bed, -/turf/open/floor/plasteel/green, -/area/clown) -"aUs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUt" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUu" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/gateway) -"aUw" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper/pamphlet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUA" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUD" = ( -/obj/machinery/camera{ - c_tag = "Dormitory South"; - c_tag_order = 999; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aUF" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUK" = ( -/obj/structure/dresser, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUM" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUS" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUZ" = ( -/turf/closed/wall, -/area/library) -"aVa" = ( -/turf/closed/wall, -/area/chapel/office) -"aVc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aVd" = ( -/obj/structure/falsewall, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aVe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVg" = ( -/obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVh" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVi" = ( -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"aVk" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals No-Declare Lane"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aVl" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aVn" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Green Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = -22; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVo" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVq" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aVr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aVs" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals Declare Lane"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"aVQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mime Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/mime) -"aVR" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVS" = ( -/obj/effect/landmark/start{ - name = "Clown" - }, -/turf/open/floor/plasteel/green, -/area/clown) -"aVT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVX" = ( -/turf/open/floor/plasteel, -/area/gateway) -"aVY" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aWa" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWb" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWc" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/storage/eva) -"aWe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWh" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWi" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWk" = ( -/obj/structure/toilet{ - tag = "icon-toilet00 (WEST)"; - icon_state = "toilet00"; - dir = 8 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWl" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/weapon/lipstick/random, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWm" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWn" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWr" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aWJ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - sortType = 17 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/library) -"aWM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"aWN" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/library) -"aWO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/wood, -/area/library) -"aWP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/library) -"aWR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"aWS" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWU" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWV" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWW" = ( -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWX" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aWY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXb" = ( -/turf/open/floor/carpet, -/area/chapel/main) -"aXc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aXd" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aXe" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXf" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, -/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXg" = ( -/obj/effect/landmark{ - name = "Marauder Entry" - }, -/turf/open/space, -/area/space) -"aXh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXm" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXn" = ( -/obj/item/weapon/reagent_containers/spray/plantbgone, -/obj/item/weapon/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXo" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXq" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/obj/item/weapon/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXr" = ( -/obj/structure/window, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/black, -/area/mime) -"aXs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aXt" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/frame/computer{ - anchored = 1; - desc = "What, you can't see the screen?"; - name = "Mime's Computer" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"aXu" = ( -/obj/structure/reagent_dispensers/honk_cooler, -/turf/open/floor/plasteel/green, -/area/clown) -"aXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aXw" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/obj/item/weapon/bikehorn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aXx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Clown Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/clown) -"aXy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aXz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aXA" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel, -/area/gateway) -"aXB" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aXC" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aXK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aXL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXM" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXO" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXP" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXQ" = ( -/obj/structure/closet, -/obj/item/weapon/dnainjector/smilemut, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXR" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXU" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Bar APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXY" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/bar) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aYa" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYj" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hydroponics) -"aYk" = ( -/turf/closed/wall, -/area/hydroponics) -"aYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hydroponics) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYn" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/library) -"aYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library) -"aYp" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/camera{ - c_tag = "Library North"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/library) -"aYu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aYv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYw" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYx" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/office) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYD" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYE" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aYF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aYG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYJ" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aYN" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aYO" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYQ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Lounge"; - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYS" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYT" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYU" = ( -/obj/structure/table/glass, -/obj/item/weapon/hatchet, -/obj/item/weapon/cultivator, -/obj/item/weapon/crowbar, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYV" = ( -/obj/item/weapon/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/device/plant_analyzer, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYW" = ( -/obj/structure/table, -/obj/item/weapon/wrench, -/obj/item/device/analyzer, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYY" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZb" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/storage/primary) -"aZc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/storage/primary) -"aZd" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZe" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/mime) -"aZg" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/mime) -"aZh" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aZj" = ( -/obj/structure/statue/bananium/clown, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"aZk" = ( -/obj/machinery/button/door{ - dir = 2; - id = "gateway_shutters"; - name = "Gateway Access Button"; - pixel_x = 0; - pixel_y = -27; - req_access_txt = "47" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aZl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZm" = ( -/obj/machinery/camera{ - c_tag = "EVA South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZn" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aZp" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZs" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZt" = ( -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 40; - tag = "icon-direction_sec (NORTH)" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = 32; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 24; - tag = "icon-direction_evac (EAST)" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZu" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZv" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZw" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aZx" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"aZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/primary/central) -"aZz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"aZA" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZB" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZD" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aZF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aZG" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aZH" = ( -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/gun/projectile/revolver/doublebarrel, -/obj/structure/table/wood, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZJ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZK" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/bar) -"aZL" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZO" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/kitchen) -"aZP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/hydroponics) -"aZQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"aZR" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZS" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/paper/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/library) -"aZU" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aZV" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"aZW" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"aZX" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"aZY" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/library) -"baa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bab" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bac" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bad" = ( -/obj/structure/table/wood, -/obj/item/weapon/nullrod, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bae" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"baf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"bah" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bai" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bal" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"ban" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bao" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bap" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"baq" = ( -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bar" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bas" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bat" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bau" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"baw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"bax" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bay" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/mime) -"baz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/freezer{ - desc = "..."; - name = "Mime Office"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"baA" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/mime) -"baB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"baC" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/clown) -"baD" = ( -/obj/machinery/door/airlock/clown{ - name = "Clown Office"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"baE" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/clown) -"baF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baG" = ( -/obj/machinery/door/airlock/research{ - name = "Gateway Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/gateway) -"baJ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baL" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"baM" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"baN" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/lipstick, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baQ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baR" = ( -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baS" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Theatre Stage"; - dir = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baX" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baZ" = ( -/obj/machinery/camera{ - c_tag = "Bar Storage" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bba" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bbb" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbe" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/kitchen) -"bbf" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hydroponics) -"bbg" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbi" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbj" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbk" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbm" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/weapon/watertank, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbn" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/library) -"bbo" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bbp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/library) -"bbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbD" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bbE" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbF" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbH" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbL" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - name = "Port Hall APC"; - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcd" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bce" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-West"; - dir = 2 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bch" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bci" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bcj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bck" = ( -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"bcl" = ( -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"bcm" = ( -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"bcn" = ( -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"bco" = ( -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"bcp" = ( -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"bcq" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L13"; - name = "floor" - }, -/area/hallway/primary/central) -"bcr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bct" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bcv" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcw" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-East"; - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcz" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcA" = ( -/obj/structure/piano, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcG" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcI" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcL" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcM" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/wrench, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/wirecutters, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcT" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcU" = ( -/turf/open/floor/wood, -/area/library) -"bcV" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library) -"bcW" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bcY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bcZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"bda" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdb" = ( -/obj/machinery/light, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdc" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdd" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bde" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdf" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdg" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdk" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint South" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdn" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bdo" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdp" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdq" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdr" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bds" = ( -/turf/open/floor/goonplaque, -/area/hallway/secondary/entry) -"bdt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdK" = ( -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"bdL" = ( -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"bdM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"bdN" = ( -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"bdO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"bdP" = ( -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"bdQ" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L14" - }, -/area/hallway/primary/central) -"bdR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdU" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdX" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdY" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bea" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"beb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bec" = ( -/obj/machinery/vending/coffee, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bed" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bef" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics) -"bei" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"bej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bek" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/library) -"bel" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bem" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/library) -"beo" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bep" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"beq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"ber" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bes" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bet" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"beu" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bev" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bew" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bex" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0; - verted = -1 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bey" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Red Arrivals"; - name = "Items to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bez" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0; - verted = -1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"beA" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"beB" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beC" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beD" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beI" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 3"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beJ" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beK" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beP" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beY" = ( -/obj/structure/sign/directions/security{ - dir = 4; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_sec (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfd" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfe" = ( -/obj/machinery/light, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bff" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfi" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bfj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bfk" = ( -/obj/structure/closet/chefcloset, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfn" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfo" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfp" = ( -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfq" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/camera{ - c_tag = "Hydroponics North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bft" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfu" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/turf/open/floor/wood, -/area/library) -"bfv" = ( -/turf/open/floor/carpet, -/area/library) -"bfw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/library) -"bfx" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/turf/open/floor/wood, -/area/library) -"bfy" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bfA" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfB" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/device/camera, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfC" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfD" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bfE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfI" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Escape Arm Holding Area"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/hallway/secondary/exit) -"bfJ" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfK" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/exit) -"bfO" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bfP" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bfQ" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"bfR" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"bfS" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bfV" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bfW" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bga" = ( -/turf/closed/wall, -/area/maintenance/port) -"bgb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bgc" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"bgd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bge" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bgf" = ( -/turf/closed/wall, -/area/storage/art) -"bgg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/art) -"bgh" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/art) -"bgj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bgk" = ( -/turf/closed/wall, -/area/storage/emergency2) -"bgl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgm" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgq" = ( -/turf/closed/wall, -/area/storage/tools) -"bgr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bgt" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bgu" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgv" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgw" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgx" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgy" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgz" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgD" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgE" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgH" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bgI" = ( -/obj/machinery/door/airlock{ - name = "Kitchen cold room"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hydroponics) -"bgK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bgL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hydroponics) -"bgM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bgN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"bgO" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgP" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgQ" = ( -/obj/structure/cult/tome, -/obj/item/clothing/under/suit_jacket/red, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgR" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgS" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgV" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/hallway/secondary/exit) -"bgW" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgZ" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/exit) -"bha" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bhb" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhc" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhd" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhj" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bhk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bhl" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bho" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhp" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhs" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bht" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhv" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"bhx" = ( -/turf/open/floor/plasteel, -/area/storage/art) -"bhy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bhz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bhA" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bhB" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bhD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/turf/open/floor/plasteel, -/area/bridge) -"bhF" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/bridge) -"bhG" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/bridge) -"bhH" = ( -/obj/machinery/computer/monitor{ - name = "bridge power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/bridge) -"bhI" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bhJ" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bhK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bhL" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/bridge) -"bhM" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "green" - }, -/area/bridge) -"bhN" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/bridge) -"bhO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/wrench, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/bridge) -"bhP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhR" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhS" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhU" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhV" = ( -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhX" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhY" = ( -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bhZ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bia" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bib" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bic" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 2 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bid" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bie" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bif" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"big" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bih" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bij" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"bik" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bil" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bim" = ( -/obj/machinery/camera{ - c_tag = "Library South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/library) -"bin" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bio" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bip" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"biq" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bir" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bis" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bit" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"biu" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"biA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biD" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway Central"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"biI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biK" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biL" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biN" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biO" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"biP" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biQ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biR" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"biS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency2) -"biT" = ( -/turf/open/floor/plating, -/area/storage/emergency2) -"biU" = ( -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency2) -"biV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 24 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biY" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bja" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tools) -"bjc" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjd" = ( -/obj/structure/chair{ - dir = 1; - name = "Engineering Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bje" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjf" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/bridge) -"bjg" = ( -/obj/structure/chair{ - dir = 1; - name = "Command Station" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/keycard_auth{ - pixel_x = 29; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjh" = ( -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/bridge) -"bji" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/bridge) -"bjj" = ( -/obj/structure/chair{ - dir = 1; - name = "Crew Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/bridge) -"bjl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/bridge) -"bjm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Diner" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bjn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjr" = ( -/obj/item/stack/spacecash/c10{ - amount = 10 - }, -/obj/item/stack/spacecash/c100{ - amount = 5 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjs" = ( -/mob/living/carbon/monkey{ - name = "Pun Pun"; - real_name = "Pun Pun"; - unique_name = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjt" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bju" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjv" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjA" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bjB" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bjC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bjD" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bjH" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"bjI" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/library) -"bjJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjK" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjP" = ( -/obj/machinery/vending/cola, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bjQ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjU" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/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 = 32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjV" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 9; - height = 11; - id = "emergency_home"; - name = "emergency evac bay"; - width = 22 - }, -/turf/open/space, -/area/space) -"bjX" = ( -/turf/closed/wall/r_wall, -/area/rec_room) -"bjY" = ( -/turf/closed/wall, -/area/rec_room) -"bjZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/rec_room) -"bka" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bkb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkc" = ( -/turf/closed/wall, -/area/security/vacantoffice) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bke" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bkf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkh" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bki" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkj" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkk" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkm" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bko" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkp" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkq" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/turf/open/floor/plasteel, -/area/storage/art) -"bkr" = ( -/obj/structure/table, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bks" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bkt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency2) -"bku" = ( -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkv" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkw" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bky" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkA" = ( -/turf/open/floor/plasteel, -/area/storage/tools) -"bkB" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkC" = ( -/turf/closed/wall, -/area/bridge) -"bkD" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/bridge) -"bkE" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/bridge) -"bkF" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/bridge) -"bkG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/bridge) -"bkH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkI" = ( -/turf/open/floor/plasteel, -/area/bridge) -"bkJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/bridge) -"bkL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/bridge) -"bkM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/bridge) -"bkO" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/bridge) -"bkP" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/bridge) -"bkQ" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/bridge) -"bkR" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Bar West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkS" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkT" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkU" = ( -/obj/item/clothing/head/that{ - throwforce = 1; - throwing = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkV" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkW" = ( -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 8; - network = list("SS13") - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkX" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkY" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkZ" = ( -/obj/structure/table, -/obj/item/weapon/kitchen/rollingpin, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bla" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/chef_recipes, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/crew_quarters/kitchen) -"bld" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/hydroponics) -"ble" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"blf" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/hydroponics) -"blg" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"blh" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bli" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"blj" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/open/floor/wood, -/area/library) -"blk" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/library) -"blm" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/wood, -/area/library) -"bln" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/library) -"blo" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"blp" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"blq" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blr" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bls" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blt" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"blu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bly" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Recreation Room APC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"blz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/carpet, -/area/rec_room) -"blA" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/rec_room) -"blB" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/hallway/secondary/entry) -"blC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blE" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/hallway/secondary/entry) -"blF" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) -"blG" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blH" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blI" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blJ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blN" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/requests_console{ - department = "Locker Room"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blR" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blS" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blT" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blU" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blY" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bma" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmb" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bmc" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmd" = ( -/obj/machinery/camera{ - c_tag = "Bridge West"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/bridge) -"bme" = ( -/obj/structure/chair{ - dir = 1; - name = "Security Station" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/bridge) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bmi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bml" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmn" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/bridge) -"bmq" = ( -/obj/structure/chair{ - dir = 1; - name = "Logistics Station" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmr" = ( -/obj/machinery/camera{ - c_tag = "Bridge East"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/bridge) -"bms" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmu" = ( -/obj/machinery/camera{ - c_tag = "Bridge East Entrance"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmv" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bmw" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bmx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/weapon/reagent_containers/food/snacks/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar"; - name = "Bar Shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmy" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmz" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmA" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmC" = ( -/obj/machinery/processor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmE" = ( -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"bmH" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper, -/turf/open/floor/wood, -/area/library) -"bmI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bmK" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"bmL" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/library) -"bmM" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/library) -"bmN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bmO" = ( -/obj/machinery/camera{ - c_tag = "Chapel South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bmP" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bmR" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmS" = ( -/obj/machinery/door/window/northright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmT" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmU" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmV" = ( -/turf/open/floor/carpet, -/area/rec_room) -"bmW" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/rec_room) -"bmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmZ" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/rec_room) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bnb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnd" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bne" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bnf" = ( -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bng" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bni" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnj" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnk" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bnl" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnn" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnq" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bns" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Art Storage"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bny" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bnA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bnC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bnD" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port) -"bnE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"bnJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bnL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bnN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/bridge) -"bnQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnR" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnS" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnT" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnV" = ( -/obj/machinery/turretid{ - control_area = "AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Center"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnX" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnY" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Bridge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/bridge) -"boa" = ( -/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; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bob" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"boc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"boe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bof" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bog" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bok" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bol" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bom" = ( -/obj/item/weapon/lighter, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bon" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boo" = ( -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bop" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"boq" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bor" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 16 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bov" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bow" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"box" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"boy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/library) -"boz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"boC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"boF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"boH" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boI" = ( -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boK" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boL" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boN" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/wood, -/area/rec_room) -"boP" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/rec_room) -"boQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/bikehorn/airhorn, -/turf/open/floor/wood, -/area/rec_room) -"boR" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boS" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boT" = ( -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"boU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"boW" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"boZ" = ( -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"bpe" = ( -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpg" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bph" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpk" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/crew_quarters/locker) -"bpl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/crew_quarters/locker) -"bpn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpo" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Locker Room Maintenance APC"; - pixel_x = -27; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tools) -"bpz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/storage/tools) -"bpA" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpC" = ( -/obj/machinery/camera{ - c_tag = "Bridge West Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpD" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/hallway/primary/central) -"bpE" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bpF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bpG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpI" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bpK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_closed"; - locked = 0; - name = "AI Upload Access"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bpO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpP" = ( -/obj/machinery/ai_status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bpT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpU" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/hallway/primary/central) -"bpV" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Central Hall APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpX" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bpY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bpZ" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/button/door{ - id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqd" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqe" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bqf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/hydroponics) -"bqi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/library) -"bqn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/library) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqw" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "Scaley."; - name = "Robusts-Many-Faces" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bqx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqy" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/rec_room) -"bqz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/rec_room) -"bqA" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder/empty, -/turf/open/floor/wood, -/area/rec_room) -"bqB" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bqC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bqD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bqF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqH" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bqJ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqM" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqO" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqQ" = ( -/obj/structure/table, -/obj/item/weapon/razor, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqR" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqS" = ( -/obj/structure/closet, -/obj/item/clothing/under/suit_jacket/female{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/under/suit_jacket/really_black{ - pixel_x = -2; - pixel_y = 0 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqT" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bqW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqZ" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"brb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"brc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brg" = ( -/turf/closed/wall, -/area/quartermaster/office) -"brh" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bri" = ( -/turf/closed/wall/r_wall, -/area/bridge/meeting_room) -"brj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/bridge/meeting_room) -"brk" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = null; - req_access_txt = "19" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"brl" = ( -/turf/closed/wall, -/area/bridge/meeting_room) -"brm" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brn" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bro" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brp" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brq" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brr" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bru" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brv" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brw" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brx" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bry" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brz" = ( -/obj/machinery/camera{ - c_tag = "Bar South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brA" = ( -/obj/structure/noticeboard{ - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brB" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brC" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brE" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"brF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brH" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"brJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brM" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brO" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/library) -"brP" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/library) -"brQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"brS" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"brT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/library) -"brU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brV" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"brW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Escape shuttle Hallway"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"brY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"brZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsa" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsb" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsc" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bsd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bse" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bsf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bsg" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsh" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsi" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/crew_quarters/locker/locker_toilet) -"bsl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bso" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/stock_parts/cell{ - maxcharge = 2000 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsr" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bss" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/office) -"bst" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsu" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsv" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/office) -"bsw" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsx" = ( -/obj/machinery/button/door{ - id = "heads_meeting"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsy" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsz" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Conference Room"; - dir = 2 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsA" = ( -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsB" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsF" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/reset, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsH" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsI" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsN" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsP" = ( -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsQ" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsR" = ( -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsS" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bsT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsU" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsW" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/library) -"bsX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"bsY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bta" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btb" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "A Lizard Wizard!"; - name = "Merlin" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btc" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btd" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bte" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-l"; - icon_state = "stairs-l" - }, -/area/hallway/secondary/entry) -"btf" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"bth" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-stairs-r"; - icon_state = "stairs-r" - }, -/area/hallway/secondary/entry) -"bti" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Vacant Office APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/vacantoffice) -"btj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"btk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"btl" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btn" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bto" = ( -/obj/machinery/washing_machine, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btq" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btr" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"bts" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"btu" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"btv" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 5 - }, -/area/quartermaster/office) -"btw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btx" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bty" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btA" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btD" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btE" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btF" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btG" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/freeform, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload East"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btK" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btL" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btM" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btN" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btP" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 28; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 36; - tag = "icon-direction_sec (NORTH)" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btQ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btR" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btU" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btZ" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"buc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bud" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bue" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buf" = ( -/obj/structure/window, -/obj/structure/flora/ausbushes, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bug" = ( -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buh" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bui" = ( -/obj/structure/window, -/obj/machinery/vending/cola, -/turf/open/floor/carpet, -/area/rec_room) -"buj" = ( -/obj/structure/window, -/obj/machinery/vending/snack, -/turf/open/floor/carpet, -/area/rec_room) -"buk" = ( -/obj/structure/window, -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/carpet, -/area/rec_room) -"bul" = ( -/obj/structure/window, -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/rec_room) -"bum" = ( -/obj/structure/window, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/rec_room) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bup" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bur" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bus" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"but" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"buv" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"buy" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"buB" = ( -/obj/machinery/camera{ - c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"buC" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buD" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"buH" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"buI" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"buK" = ( -/obj/item/weapon/hand_labeler, -/obj/item/device/assembly/timer, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buL" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buM" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buN" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buO" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buQ" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"buS" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai_upload) -"buT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"buU" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"buV" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"buW" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"buX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bva" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bve" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvn" = ( -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bvo" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/turf/open/floor/carpet, -/area/rec_room) -"bvp" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/rec_room) -"bvq" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/rec_room) -"bvr" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"bvu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bvw" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvx" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvy" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port) -"bvz" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/item/clothing/suit/ianshirt, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker) -"bvB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bvC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvE" = ( -/obj/structure/closet/crate, -/obj/machinery/doorButtons, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvF" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvG" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvI" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bvJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bvM" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvN" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvO" = ( -/obj/item/weapon/folder/blue, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvQ" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/core/full/asimov, -/obj/item/weapon/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/corp, -/obj/item/weapon/aiModule/core/full/paladin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/aiModule/core/full/robocop, -/obj/item/weapon/aiModule/core/full/custom, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvR" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvS" = ( -/obj/machinery/computer/upload/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvT" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Upload APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvU" = ( -/obj/machinery/computer/upload/borg, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvW" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/oxygen, -/obj/item/weapon/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/weapon/aiModule/reset/purge, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/antimov, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/aiModule/supplied/protectStation, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwd" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/item/weapon/storage/lockbox/medal{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bwf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwg" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/science{ - dir = 4; - icon_state = "direction_sci"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_sci (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwi" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwj" = ( -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwl" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/hallway/primary/starboard) -"bwo" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwq" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bws" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwv" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bww" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/exit) -"bwx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwy" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bwA" = ( -/obj/machinery/camera{ - c_tag = "Escape Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwC" = ( -/obj/structure/easel, -/turf/open/floor/carpet, -/area/rec_room) -"bwD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwG" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/rec_room) -"bwH" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwI" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Recreation Room"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwK" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bwL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwM" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwN" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwO" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage"; - verted = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwU" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwV" = ( -/obj/machinery/camera{ - c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Locker Room APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bwX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bxa" = ( -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxb" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxc" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxd" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bxf" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bxg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxj" = ( -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxn" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxr" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxs" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxv" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxw" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxx" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxy" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxA" = ( -/obj/structure/table/wood, -/obj/item/weapon/pinpointer, -/obj/item/weapon/disk/nuclear, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxB" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bxC" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/medbay) -"bxD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bxE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxF" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxG" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bxH" = ( -/turf/closed/wall, -/area/medical/morgue) -"bxI" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bxJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxL" = ( -/turf/closed/wall, -/area/storage/emergency) -"bxM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/assembly/chargebay) -"bxO" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "loadingarea" - }, -/area/hallway/primary/starboard) -"bxP" = ( -/turf/closed/wall/r_wall, -/area/assembly/robotics) -"bxR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxS" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxT" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxU" = ( -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxV" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxX" = ( -/turf/closed/wall/r_wall, -/area/toxins/lab) -"bxY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bxZ" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bya" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byc" = ( -/obj/structure/easel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"byd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/rec_room) -"bye" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"byf" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byg" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byh" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/plants, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"byk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Disposal APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byo" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bys" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"byw" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byz" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/storage) -"byB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/office) -"byC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"byE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"byF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"byG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"byH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"byI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway West"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"byK" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Bridge Delivery"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/bridge/meeting_room) -"byL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byM" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"byQ" = ( -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byS" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"byV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Captain" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byW" = ( -/obj/machinery/computer/communications, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byX" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/coin/plasma, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byZ" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/camera, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bza" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzb" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Chemistry APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzd" = ( -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bze" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzf" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzg" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzh" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bzl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26; - req_access_txt = "5" - }, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/medical) -"bzm" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/medical) -"bzn" = ( -/obj/structure/filingcabinet, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/medical) -"bzo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzp" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzu" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bzv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bzw" = ( -/turf/closed/wall, -/area/assembly/chargebay) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bzy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/assembly/chargebay) -"bzz" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzA" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzB" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzC" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - closingLayer = 3.2; - dir = 2; - icon_state = "left"; - layer = 3.2; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzE" = ( -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"bzF" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bzG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bzH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - closingLayer = 3.2; - layer = 3.2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "rnd"; - name = "research lab shutters" - }, -/turf/open/floor/plating, -/area/toxins/lab) -"bzI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bzL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bzM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bzN" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bzP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/rec_room) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzS" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzV" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage"; - verted = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bAh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"bAj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAk" = ( -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/quartermaster/office) -"bAl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bAo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bAp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bAs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bAt" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/bridge/meeting_room) -"bAu" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bAv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/maintcentral) -"bAw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = -28 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAA" = ( -/obj/machinery/computer/card, -/obj/item/weapon/card/id/captains_spare, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAB" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/weapon/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAC" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAE" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bAG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bAJ" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bAK" = ( -/obj/machinery/computer/secure_data, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bAL" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAO" = ( -/turf/open/floor/plating, -/area/storage/emergency) -"bAP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency) -"bAQ" = ( -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency) -"bAR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bAS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAT" = ( -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAU" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/assembly/chargebay) -"bAV" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/chargebay) -"bAW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAY" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bBa" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBc" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBf" = ( -/obj/machinery/camera{ - c_tag = "Research Division Access"; - dir = 2; - network = list("SS13") - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/research{ - name = "Research Division" - }) -"bBg" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBh" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBi" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/button/door{ - dir = 2; - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/toxins/lab) -"bBj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bBl" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/secondary/entry) -"bBs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - density = 0; - dir = 4; - icon_state = "rightopen"; - layer = 3 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bBw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBy" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBz" = ( -/obj/machinery/mineral/stacking_unit_console{ - dir = 2; - machinedir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bBA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBB" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBH" = ( -/obj/structure/table, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBI" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBK" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBL" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBO" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = 24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBP" = ( -/obj/machinery/photocopier, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bBT" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bridge Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBV" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBW" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBY" = ( -/obj/structure/closet/secure_closet/freezer/money, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bBZ" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCc" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/folder/documents, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bCd" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCe" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCi" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCl" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bCm" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bCn" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCs" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bCT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bCU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCX" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDb" = ( -/turf/closed/wall, -/area/maintenance/asmaint2) -"bDc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 12; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space, -/area/space) -"bDd" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bDe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bDg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"bDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDk" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDl" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage"; - layer = 2.5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - layer = 3; - name = "disposal exit vent" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bDn" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bDt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDy" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDB" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDF" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"bDG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Head of Personnel APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bDL" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Conference Room APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bDN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Confrence Room South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bDO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bDQ" = ( -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDR" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bDS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bDU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"bDW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bDX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bDY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bEf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEg" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEi" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bEl" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bEm" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bEn" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/assembly/chargebay) -"bEo" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bEp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bEs" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEu" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEw" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bEy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEA" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEB" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEC" = ( -/obj/machinery/r_n_d/protolathe, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bEE" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEF" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEJ" = ( -/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 = 32 - }, -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bEL" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEM" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEO" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bER" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bES" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bET" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEW" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/port) -"bEY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bEZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bFa" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFf" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bFh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bFi" = ( -/obj/machinery/status_display{ - density = 0; - pixel_y = 2; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/office) -"bFj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bFl" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bFm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bFn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bFp" = ( -/turf/closed/wall, -/area/crew_quarters/heads) -"bFq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads) -"bFr" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads) -"bFs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads) -"bFt" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/champion, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bFu" = ( -/obj/item/weapon/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/weapon/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bFv" = ( -/turf/closed/wall, -/area/crew_quarters/captain) -"bFw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFz" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFA" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFE" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFH" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFI" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFJ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFK" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - req_access_txt = "5" - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFM" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/medical) -"bFP" = ( -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/medical) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"bFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bFY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bGf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bGg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/robotics) -"bGi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bGj" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGl" = ( -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGm" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bGn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGo" = ( -/obj/machinery/computer/rdconsole/core, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGp" = ( -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGq" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bGs" = ( -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bGz" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bGA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGB" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 3 & 4"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bGE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal) -"bGF" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - icon_state = "switch-rev"; - id = "garbage"; - name = "disposal coveyor"; - position = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGG" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGH" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGI" = ( -/obj/structure/closet, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGJ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGO" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bGQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGS" = ( -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGT" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGU" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGV" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGW" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bGX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bGY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGZ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/central) -"bHa" = ( -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 36 - }, -/obj/machinery/pdapainter, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bHb" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHc" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bed/dogbed{ - anchored = 1; - desc = "Ian's bed! Looks comfy."; - name = "Ian's bed" - }, -/mob/living/simple_animal/pet/dog/corgi/Ian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHf" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bHg" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bHh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault" - }, -/area/ai_monitored/nuke_storage) -"bHi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"bHj" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/gun/projectile/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bHk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bHl" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHn" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHq" = ( -/obj/structure/table/glass, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHs" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHt" = ( -/turf/closed/wall, -/area/medical/medbay) -"bHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bHx" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHy" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/medical) -"bHA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bHB" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6;5" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bHD" = ( -/turf/closed/wall, -/area/medical/genetics) -"bHE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bHJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bHK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHN" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bHO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHP" = ( -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHR" = ( -/obj/structure/table, -/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/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bHS" = ( -/turf/closed/wall, -/area/assembly/robotics) -"bHT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHV" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHW" = ( -/turf/closed/wall, -/area/toxins/lab) -"bHX" = ( -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/lab) -"bIb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bIc" = ( -/obj/item/weapon/stock_parts/console_screen, -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bId" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/lab) -"bIe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/lab) -"bIf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"bIj" = ( -/turf/closed/wall, -/area/toxins/shuttledock) -"bIk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s6"; - dir = 2 - }, -/area/shuttle/outpost) -"bIl" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/outpost) -"bIm" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bIn" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/outpost) -"bIo" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bIp" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIq" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bIr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bIs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bIu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIx" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/office) -"bIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bIC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bID" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/primary/central) -"bIE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bIF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hallway/primary/central) -"bIG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Reception Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bII" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bIN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIP" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIQ" = ( -/obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; - req_access_txt = "53" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bIR" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIU" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIW" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/matches, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/item/weapon/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIX" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/bikehorn/rubberducky, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bIY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIZ" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJb" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJc" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJd" = ( -/obj/structure/bed/roller, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bJe" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/medbay) -"bJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJo" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJp" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTHEAST)"; - icon_state = "whiteblue"; - dir = 5 - }, -/area/medical/genetics) -"bJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bJr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/weapon/storage/pill_bottle/mutadone, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJt" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bJu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJv" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJw" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bJx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bJy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJD" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/obj/item/weapon/hemostat, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bJF" = ( -/obj/structure/table, -/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/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bJG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bJH" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/research{ - name = "Research Division" - }) -"bJJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJK" = ( -/obj/item/weapon/folder/white, -/obj/structure/table, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJO" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJP" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/toxins/lab) -"bJQ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/lab) -"bJR" = ( -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bJT" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJU" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Science Outpost Dock APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bJX" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/outpost) -"bJY" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bJZ" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bKa" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_ss13"; - name = "SS13 Arrival Docking"; - width = 35 - }, -/turf/open/space, -/area/space) -"bKb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKc" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bKe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bKf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKi" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKj" = ( -/obj/machinery/autolathe, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKm" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKo" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKp" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bKq" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bKr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bKs" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bKt" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bKu" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKv" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Vault Access"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bKy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKz" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"bKD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKF" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bKH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bKK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKM" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor2"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKT" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKU" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKW" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKX" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bKY" = ( -/turf/open/floor/plasteel, -/area/medical/genetics) -"bKZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 14 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bLa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bLb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLf" = ( -/obj/structure/table, -/obj/item/weapon/circular_saw, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"bLh" = ( -/obj/machinery/button/door{ - dir = 2; - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bLi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/assembly/robotics) -"bLj" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bLm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLo" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLp" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/obj/machinery/camera{ - c_tag = "Experimentor Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLq" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLr" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLs" = ( -/obj/structure/closet/emcloset{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLw" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bLz" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bLA" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLC" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLD" = ( -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLE" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bLF" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/storage) -"bLG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bLH" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/device/multitool, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLK" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bLQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/ai_monitored/nuke_storage) -"bLR" = ( -/turf/closed/wall, -/area/teleporter) -"bLS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLT" = ( -/obj/structure/table, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bLU" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLV" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLW" = ( -/obj/machinery/camera{ - c_tag = "Teleporter" - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLY" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bMa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bMc" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/clothing/tie/stethoscope, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMn" = ( -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bMp" = ( -/obj/structure/table/glass, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor2"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMr" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bMs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bMt" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMu" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMw" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/chargebay) -"bMx" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 4 - }, -/area/assembly/robotics) -"bMy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMz" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMB" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bMD" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division North"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bML" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/explab) -"bMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMP" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"bMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bMZ" = ( -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bNa" = ( -/obj/machinery/door/airlock/shuttle{ - req_access_txt = "7" - }, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bNb" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost_home"; - name = "outpost shuttle bay"; - width = 7 - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost"; - name = "outpost shuttle"; - port_angle = 90; - width = 7 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall3" - }, -/area/shuttle/outpost) -"bNc" = ( -/obj/machinery/camera{ - c_tag = "Cargo Recieving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - dir = 2; - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bNd" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bNe" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/folder/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNj" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bNl" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bNm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNn" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/coin/gold, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNq" = ( -/turf/closed/wall, -/area/ai_monitored/nuke_storage) -"bNr" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/ai_monitored/nuke_storage) -"bNs" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bNv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bNw" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNx" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/ai_monitored/nuke_storage) -"bNy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bNA" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel, -/area/teleporter) -"bNC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bND" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bNG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bNI" = ( -/obj/structure/table, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNS" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNT" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNU" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/medical_cloning, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNV" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNY" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bNZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Monkey Pen"; - req_access_txt = "9" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOa" = ( -/obj/structure/window/reinforced, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOb" = ( -/turf/closed/wall/r_wall, -/area/assembly/chargebay) -"bOc" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bOd" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bOe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOk" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bOw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOy" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/white, -/area/toxins/shuttledock) -"bOz" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "supply bay"; - width = 12 - }, -/turf/open/space, -/area/space) -"bOA" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bOB" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bOC" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bOG" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bOH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOI" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/hop, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bON" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOQ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bOR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/teleporter) -"bOS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOT" = ( -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOU" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/teleporter) -"bOV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOW" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOX" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/teleporter) -"bOY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bOZ" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPb" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPc" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bPd" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/sleeper) -"bPe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bPf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera{ - c_tag = "Medbay Hallway"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPg" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/mutadone, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPh" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPj" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/disks, -/obj/item/device/radio/headset/headset_medsci, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPk" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 12 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bPn" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPp" = ( -/obj/machinery/camera{ - c_tag = "Research Division West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bPz" = ( -/turf/closed/wall, -/area/crew_quarters/hor) -"bPA" = ( -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPB" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPC" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPD" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bPG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPH" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light, -/obj/machinery/status_display{ - density = 0; - pixel_y = -30; - supply_display = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPK" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bPL" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bPM" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #4" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bPN" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPO" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPR" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"bPS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bPU" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bPV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bPW" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bPX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQc" = ( -/obj/machinery/button/door{ - id = "vaultshut"; - name = "Vault Shutters Control"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQe" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQg" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQh" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bQi" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/teleporter) -"bQj" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/teleporter) -"bQk" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/teleporter) -"bQl" = ( -/obj/structure/rack, -/obj/item/weapon/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/teleporter) -"bQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQn" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/medbay) -"bQo" = ( -/obj/machinery/door/window/eastleft{ - name = "Medical Delivery"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/medbay) -"bQp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQs" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQt" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQu" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bQv" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQw" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/sleeper) -"bQx" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQy" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQz" = ( -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQA" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bQF" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQG" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = 23 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQI" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/disk/tech_disk/gooncode, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQV" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQW" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQX" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bQY" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/crew_quarters/hor) -"bQZ" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/crew_quarters/hor) -"bRa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/explab) -"bRb" = ( -/turf/closed/wall, -/area/toxins/explab) -"bRc" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/book/manual/experimentor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRd" = ( -/obj/machinery/computer/rdconsole/experiment, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/toxins/explab) -"bRe" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRf" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/explab) -"bRg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRi" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s5"; - dir = 2 - }, -/area/shuttle/outpost) -"bRm" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/outpost) -"bRn" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bRo" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bRp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bRq" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bRt" = ( -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/supply) -"bRv" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"bRw" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/supply) -"bRx" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bRC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Vault Access"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/ai_monitored/nuke_storage) -"bRD" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South-East"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/sleeper) -"bRF" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = ""; - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bRG" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRH" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/sleeper) -"bRJ" = ( -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRL" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRN" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRP" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Genetics Research"; - req_access_txt = "5; 9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRS" = ( -/obj/machinery/camera{ - c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bRT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bRU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRV" = ( -/obj/machinery/camera{ - c_tag = "Genetics Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRW" = ( -/turf/closed/wall/r_wall, -/area/toxins/server) -"bRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bRY" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bSa" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/science) -"bSb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bSe" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/item/weapon/coin/uranium, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSf" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSg" = ( -/obj/machinery/computer/robotics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSh" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSi" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/crew_quarters/hor) -"bSj" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSk" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/hor) -"bSl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSo" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSp" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSs" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSu" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Dock APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSz" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bSC" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"bSD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSE" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/primary/central) -"bSJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSM" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bSN" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSO" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSP" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSQ" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Surgery Observation" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSS" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bST" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSU" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSV" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSY" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bTa" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTb" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTc" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTd" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (SOUTHEAST)"; - icon_state = "whiteblue"; - dir = 6 - }, -/area/medical/genetics) -"bTe" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bTf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTg" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTi" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"bTk" = ( -/obj/machinery/r_n_d/server/robotics, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTm" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bTn" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTo" = ( -/obj/machinery/camera{ - c_tag = "Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Server Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTp" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTq" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/science) -"bTs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTt" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of your own office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/science) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bTw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bTx" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/pen/blue, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTz" = ( -/obj/machinery/computer/mecha, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTA" = ( -/obj/structure/rack, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTB" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTD" = ( -/turf/open/floor/engine, -/area/toxins/explab) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTG" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTH" = ( -/obj/machinery/computer/cargo, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTK" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTN" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTS" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bUa" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUh" = ( -/obj/structure/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUk" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUl" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bUm" = ( -/obj/machinery/light, -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUr" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUs" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUt" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUu" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUv" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Server Room"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUx" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUy" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUz" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUA" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/science) -"bUC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUD" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUE" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/science) -"bUF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUH" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Research Director"; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUM" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUN" = ( -/obj/machinery/r_n_d/experimentor, -/turf/open/floor/engine, -/area/toxins/explab) -"bUO" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bUP" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bUQ" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/status_display{ - density = 0; - pixel_x = -32; - pixel_y = 0; - supply_display = 1 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUS" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUT" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUU" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUV" = ( -/obj/structure/filingcabinet, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bUX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bVb" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/supply) -"bVd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"bVe" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/supply) -"bVf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bVg" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South-West"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = -32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = -32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVu" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVw" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVE" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Recovery Room"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bVF" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVG" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVI" = ( -/turf/closed/wall, -/area/medical/cmo) -"bVJ" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVK" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVL" = ( -/obj/machinery/computer/med_data, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVP" = ( -/obj/machinery/r_n_d/server/core, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVR" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bVS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVT" = ( -/obj/machinery/computer/rdservercontrol, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVV" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/science) -"bVX" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVY" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVZ" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/science) -"bWa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/item/weapon/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWd" = ( -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/computer/card/minor/rd, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWe" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/signal/toxins, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("SS13","RD") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWf" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWh" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWi" = ( -/obj/machinery/camera{ - c_tag = "Experimentor Lab Chamber"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bWo" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bWp" = ( -/turf/closed/wall, -/area/storage/tech) -"bWq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/central) -"bWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/central) -"bWt" = ( -/turf/closed/wall, -/area/janitor) -"bWu" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bWv" = ( -/turf/closed/wall, -/area/maintenance/asmaint) -"bWw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"bWy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/weapon/surgicaldrill, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWz" = ( -/obj/structure/table, -/obj/item/weapon/hemostat, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWA" = ( -/obj/structure/table, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/obj/item/weapon/circular_saw, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWB" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWC" = ( -/obj/structure/table, -/obj/item/weapon/cautery{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWD" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/gun/syringe, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/soap/nanotrasen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bWF" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWG" = ( -/obj/structure/closet/wardrobe/white/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWH" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWI" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bWM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/cmo) -"bWN" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWO" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWP" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWR" = ( -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"bWS" = ( -/turf/closed/wall, -/area/toxins/storage) -"bWT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWV" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWX" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 - }, -/turf/open/space, -/area/space) -"bWZ" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Mining"; - departmentType = 0; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXk" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXl" = ( -/obj/structure/table, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/storage/tech) -"bXm" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXn" = ( -/obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 2 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Tech Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXo" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXp" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXq" = ( -/turf/open/floor/plating, -/area/storage/tech) -"bXr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bXt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bXu" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/plasteel, -/area/janitor) -"bXv" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/janicart, -/turf/open/floor/plasteel, -/area/janitor) -"bXx" = ( -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/janitor) -"bXy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bXz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXA" = ( -/turf/open/floor/plasteel, -/area/janitor) -"bXB" = ( -/obj/machinery/door/window/westleft{ - name = "Janitoral Delivery"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/janitor) -"bXC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/janitor) -"bXD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -25; - req_one_access_txt = "5" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXH" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXJ" = ( -/obj/structure/table, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bXL" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bXO" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXR" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bXT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXW" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXX" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/cmo, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXY" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/obj/item/clothing/tie/stethoscope, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bYa" = ( -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYb" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYd" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Misc Research APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYg" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYh" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYi" = ( -/turf/closed/wall, -/area/toxins/mixing) -"bYj" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/plasmaresearch, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYl" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab West"; - dir = 2; - network = list("SS13","RD"); - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/item/weapon/storage/firstaid/toxin, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYo" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/mixing) -"bYr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/toxins/mixing) -"bYs" = ( -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"bYt" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/mixing) -"bYy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/labor) -"bYz" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYG" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/aft) -"bYJ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYL" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYM" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYN" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/turf/open/floor/plating, -/area/storage/tech) -"bYO" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bYR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bYT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bYY" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/janitor) -"bYZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/janitor) -"bZa" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZb" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 6 - }, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZc" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZi" = ( -/obj/structure/table/optable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bZm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bZn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZo" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bZq" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZt" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZy" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZz" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZA" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/weapon/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZC" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/storage) -"bZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZF" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/mixing) -"bZH" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZP" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/mixing) -"bZQ" = ( -/turf/closed/indestructible, -/area/toxins/test_area) -"bZR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"bZS" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZT" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bZV" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"bZW" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZY" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cab" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cac" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cad" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cae" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"caf" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"cag" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cah" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/pandemic{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/computer/rdconsole, -/obj/item/weapon/circuitboard/machine/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/destructive_analyzer, -/obj/item/weapon/circuitboard/machine/protolathe, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/circuitboard/computer/aifixer, -/obj/item/weapon/circuitboard/computer/teleporter, -/obj/item/weapon/circuitboard/machine/circuit_imprinter, -/obj/item/weapon/circuitboard/machine/mechfab, -/turf/open/floor/plating, -/area/storage/tech) -"cai" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/mining, -/obj/item/weapon/circuitboard/machine/autolathe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/computer/arcade/battle, -/turf/open/floor/plating, -/area/storage/tech) -"caj" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/telecomms/processor, -/obj/item/weapon/circuitboard/machine/telecomms/receiver, -/obj/item/weapon/circuitboard/machine/telecomms/server, -/obj/item/weapon/circuitboard/machine/telecomms/bus, -/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, -/obj/item/weapon/circuitboard/computer/message_monitor{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cak" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cal" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/key/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"cam" = ( -/obj/structure/table, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"can" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/janitor) -"cao" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel, -/area/janitor) -"cap" = ( -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/mousetraps, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"caq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/janitor) -"car" = ( -/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/open/floor/plating, -/area/maintenance/asmaint) -"cas" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cat" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cau" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cav" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "Treatment Center APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"cax" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cay" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caz" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"caA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caB" = ( -/obj/machinery/vending/wallmed{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("SS13") - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/gun/syringe, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caE" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caG" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv4"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caH" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv4"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"caI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caL" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Medical Officer"; - req_access_txt = "40" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caN" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/cmo) -"caQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caS" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Toxins Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"caZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cba" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"cbb" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cbf" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/mixing) -"cbg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"cbi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cbj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbk" = ( -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cbl" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins"); - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cbm" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cbn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cbo" = ( -/obj/item/weapon/ore/iron, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbp" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbq" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cbs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbt" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbu" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"cbv" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cby" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbA" = ( -/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 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/janitor) -"cbI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/janitor) -"cbJ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbL" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbQ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbR" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbS" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Surgery Operating"; - dir = 1; - network = list("SS13"); - pixel_x = 22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbV" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbW" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbX" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbY" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cca" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccb" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = -30; - pixel_z = 0 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccc" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/brute, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccd" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cce" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccg" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cch" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cci" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"cck" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/weapon/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/weapon/cartridge/medical, -/obj/item/weapon/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccl" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccn" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"cco" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"ccp" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ccq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"cct" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"ccu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccw" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccx" = ( -/obj/item/device/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccy" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccA" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"ccJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible, -/area/toxins/test_area) -"ccL" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccM" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccN" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccO" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_angle = 90; - width = 7 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"ccP" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"ccQ" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccU" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccW" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"ccX" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/storage/tech) -"ccY" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/cloning{ - pixel_x = 0 - }, -/obj/item/weapon/circuitboard/computer/med_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/clonescanner, -/obj/item/weapon/circuitboard/machine/clonepod, -/obj/item/weapon/circuitboard/computer/scan_consolenew, -/turf/open/floor/plating, -/area/storage/tech) -"ccZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cda" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/powermonitor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/stationalert{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/computer/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdb" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cde" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdn" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cds" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"cdt" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdv" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/shieldwallgen{ - req_access = list(55) - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cdw" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdx" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdy" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdz" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdA" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdB" = ( -/turf/closed/wall, -/area/toxins/xenobiology) -"cdC" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"cdD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdG" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdH" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdI" = ( -/obj/item/device/assembly/signaler{ - pixel_x = 0; - pixel_y = 8 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdJ" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdK" = ( -/obj/item/device/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/assembly/timer{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdL" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdO" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/mixing) -"cdP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cdQ" = ( -/obj/machinery/camera{ - c_tag = "Toxins Launch Room Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cdR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cdS" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/mixing) -"cdT" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdU" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdW" = ( -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cdX" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdY" = ( -/obj/item/weapon/ore/silver, -/obj/item/weapon/ore/silver, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cdZ" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock External"; - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cea" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"ceb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cec" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/pickaxe{ - pixel_x = 5 - }, -/obj/item/weapon/shovel{ - pixel_x = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ced" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cee" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cef" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ceg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"ceh" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cei" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cej" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/storage/tech) -"cek" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/storage/tech) -"cel" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cen" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tech) -"ceo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cer" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"ces" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"cet" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"ceu" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cev" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cew" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cex" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cey" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cez" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceC" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceF" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay) -"ceG" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceH" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room 2"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay) -"ceK" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceL" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "CM Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceP" = ( -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceQ" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Xeno"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceR" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 0; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceS" = ( -/obj/machinery/door/window/southleft{ - name = "Test Chamber"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceU" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceW" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/toxins/xenobiology) -"ceX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceZ" = ( -/obj/machinery/camera{ - c_tag = "Research Division South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cfa" = ( -/obj/structure/sign/fire, -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"cfb" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cfc" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfd" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/toxins/mixing) -"cff" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfg" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfh" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfi" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cfj" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - light = null; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien{ - anchored = 1 - }, -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfk" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/labor) -"cfl" = ( -/obj/structure/ore_box, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cfm" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfp" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/turf/open/floor/plating, -/area/storage/tech) -"cfq" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfr" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/turf/open/floor/plating, -/area/storage/tech) -"cfs" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/device/t_scanner, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cft" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfu" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cfv" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/storage/tech) -"cfw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 2"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cfy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cfz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cfA" = ( -/turf/closed/wall/r_wall, -/area/atmos) -"cfB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfE" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/atmos) -"cfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfK" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfM" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv1"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfN" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv1"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfX" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfZ" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cga" = ( -/obj/machinery/processor{ - desc = "A machine used to process slimes and retrieve their extract."; - name = "Slime Processor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgb" = ( -/obj/machinery/smartfridge/extract, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgc" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgd" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cge" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgf" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cgh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/research{ - name = "Research Division" - }) -"cgi" = ( -/obj/machinery/door/poddoor{ - id = "mixvent2"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgk" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cgm" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor2"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller{ - airpump_tag = "tox_airlock_pump2"; - exterior_door_tag = "tox_airlock_exterior2"; - id_tag = "tox_airlock_control"; - interior_door_tag = "tox_airlock_interior2"; - pixel_x = -24; - pixel_y = 0; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cgo" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cgp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cgq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgr" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgs" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"cgv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cgw" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/hallway/primary/aft) -"cgx" = ( -/turf/closed/wall, -/area/atmos) -"cgy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/atmos) -"cgz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgD" = ( -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/atmos) -"cgE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cgF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "wloop_atm_meter"; - name = "Waste Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 2 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "dloop_atm_meter"; - name = "Distribution Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Distro"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgL" = ( -/turf/open/floor/plasteel, -/area/atmos) -"cgM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgN" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgO" = ( -/turf/closed/wall, -/area/medical/virology) -"cgP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cgQ" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/medical/virology) -"cgR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cha" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"chb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"chc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"chd" = ( -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"che" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior2"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chf" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump2" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chg" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior2"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chi" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab East"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"chk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chl" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cho" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chp" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chq" = ( -/turf/closed/wall, -/area/construction) -"chr" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction) -"chs" = ( -/turf/open/floor/plating, -/area/construction) -"cht" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction) -"chu" = ( -/turf/open/floor/plasteel, -/area/construction) -"chv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/construction) -"chw" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"chx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Monitoring"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/atmos) -"chB" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"chF" = ( -/obj/machinery/pipedispenser/disposal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chG" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chN" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/atmos) -"chO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"chP" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chQ" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/machinery/camera{ - c_tag = "Virology Break Room" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chS" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/virology) -"chU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chV" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/virology) -"chW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chX" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cia" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"cib" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cic" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cid" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cie" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cig" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cih" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cik" = ( -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cil" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cim" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/button/door{ - id = "mixvent2"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access_txt = "7" - }, -/obj/machinery/button/ignition{ - id = "mixingsparker2"; - pixel_x = -25; - pixel_y = -5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cio" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cip" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ciq" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cir" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/aft) -"cis" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction) -"cit" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/construction) -"ciu" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"civ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ciw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/aft) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"ciz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/atmos) -"ciA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciB" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciD" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ciE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/atmos) -"ciF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/autolathe/atmos, -/turf/open/floor/plasteel, -/area/atmos) -"ciG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/atmos) -"ciH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciI" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Waste In"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciN" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"ciO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Mix"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/atmos) -"ciR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"ciT" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"ciU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "waste_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciV" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciW" = ( -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ciY" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ciZ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cja" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjc" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cjg" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cji" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjj" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjk" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjn" = ( -/obj/structure/table, -/obj/item/weapon/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjp" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjq" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cjt" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cju" = ( -/turf/closed/wall, -/area/toxins/misc_lab) -"cjv" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjw" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjx" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjy" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjz" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cjA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cjC" = ( -/obj/item/weapon/shard, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cjD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjE" = ( -/obj/structure/girder, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjF" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"cjG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjH" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"cjL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjM" = ( -/obj/structure/closet/crate, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/construction) -"cjO" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"cjQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Construction Area"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cjU" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cjV" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cjW" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cka" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ckb" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ckc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cke" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cki" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckl" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckm" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/atmos) -"ckn" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cko" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/atmos) -"ckp" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor"; - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckr" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cks" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckt" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cku" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -28; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckx" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cky" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckz" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckB" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckC" = ( -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckD" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"ckE" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckF" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/camera{ - c_tag = "Testing Lab North"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckH" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - req_access = null - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckM" = ( -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"ckN" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ckO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckQ" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckR" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckX" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"ckY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"ckZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cla" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "left"; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"clc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cle" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clf" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"clg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/atmos) -"cli" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cll" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cln" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Unfiltered to Mix"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cls" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 6 - }, -/area/atmos) -"clt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"clv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "waste_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"clw" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cly" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"clB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clE" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clK" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"clM" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/electropack, -/obj/item/device/healthanalyzer, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clN" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clR" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/target_stake, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"clS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"clT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"clU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/aft) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/rack, -/obj/item/clothing/head/cone, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/aft) -"clW" = ( -/obj/item/weapon/storage/secure/safe, -/turf/closed/wall, -/area/maintenance/aft) -"clX" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clY" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - tag = "icon-connector_map (WEST)"; - icon_state = "connector_map"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cma" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cme" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmf" = ( -/obj/machinery/camera{ - c_tag = "Construction Area"; - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmg" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/construction) -"cmh" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plating, -/area/construction) -"cmi" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/construction) -"cmj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cmk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cml" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plating, -/area/atmos) -"cmm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cmo" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/atmos) -"cmp" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/atmos) -"cmq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/turf/open/floor/plasteel, -/area/atmos) -"cmr" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cmt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmv" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmH" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Virology APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Virology Module" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmI" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmJ" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmL" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cmN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmR" = ( -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmS" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmU" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmV" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/toxins/misc_lab) -"cmY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cmZ" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses/garb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cna" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/clothing/tie/black, -/obj/item/clothing/tie/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/skull, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cne" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cng" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cni" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"cnj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnl" = ( -/obj/machinery/power/apc{ - name = "Aft Hall APC"; - dir = 8; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cnm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnn" = ( -/obj/item/weapon/crowbar, -/obj/item/weapon/wrench, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"cno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/atmos) -"cnp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/atmos) -"cnq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnt" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 5 - }, -/area/atmos) -"cny" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnz" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2O Tanks" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnA" = ( -/turf/open/floor/engine/n2o, -/area/atmos) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/medical/virology) -"cnE" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnI" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnK" = ( -/obj/structure/disposalpipe/segment, -/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/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cnL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnM" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnS" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnT" = ( -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnU" = ( -/obj/structure/target_stake, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnV" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cnW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnX" = ( -/obj/machinery/door/window{ - dir = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/storage/box/cups, -/turf/open/floor/plating, -/area/maintenance/aft) -"coa" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cob" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coc" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cof" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cog" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cok" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Construction Area APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"col" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Telecoms Monitoring APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"com" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"con" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 8 - }, -/area/atmos) -"cop" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"coq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cor" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cou" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to External"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cov" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cow" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cox" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/atmos) -"coy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Pure to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coD" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 4 - }, -/area/atmos) -"coE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coF" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/atmos) -"coG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coK" = ( -/obj/machinery/smartfridge/chemistry/virology, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coM" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"coO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation A"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coP" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"coQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall, -/area/toxins/xenobiology) -"coS" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coT" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coV" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coW" = ( -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"coX" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coY" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coZ" = ( -/obj/machinery/camera{ - c_tag = "Testing Firing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpa" = ( -/obj/structure/target_stake, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpb" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall, -/area/maintenance/aft) -"cpc" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpd" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cpg" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cph" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cpk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cpo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/atmos) -"cpp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "External to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/atmos) -"cps" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/atmos) -"cpt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/atmos) -"cpu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cpw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpx" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 6 - }, -/area/atmos) -"cpz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cpA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cpB" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = -32 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpF" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cpJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpK" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpM" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cpP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/misc_lab) -"cpQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpR" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cpS" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cpT" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cpU" = ( -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpW" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Telecoms Server APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpY" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpZ" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqa" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqb" = ( -/obj/machinery/computer/message_monitor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cqc" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqe" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cqg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqj" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cqk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cql" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics West"; - dir = 8; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqo" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cqp" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqr" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Virologist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqs" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"cqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqv" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqx" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqy" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqA" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqB" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqC" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqD" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqE" = ( -/obj/structure/rack, -/obj/item/weapon/wrench, -/obj/item/weapon/crowbar, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Test"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet, -/obj/item/pipe{ - dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cqJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/weapon/paper/range, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHEAST)"; - icon_state = "warnplate"; - dir = 6 - }, -/area/toxins/misc_lab) -"cqK" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHWEST)"; - icon_state = "warnplate"; - dir = 10 - }, -/area/toxins/misc_lab) -"cqL" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cqM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqO" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/aft) -"cqP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/pill/mannitol, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqR" = ( -/turf/closed/wall, -/area/maintenance/strangeroom) -"cqS" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cqT" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqU" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqW" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqX" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqZ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cra" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"crf" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"crg" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/atmos) -"crh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/engineering) -"cri" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/engineering) -"crj" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/engineering) -"crk" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crl" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"crm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"crn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"cro" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crp" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/atmos) -"crq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crr" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Plasma Tank" - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crs" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cru" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"crv" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - anchored = 1; - density = 0; - pixel_x = -30 - }, -/obj/item/weapon/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cry" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"crA" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crC" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"crD" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crE" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crF" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crL" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"crP" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crQ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/color/lightpurple, -/obj/item/stack/spacecash/c200, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crT" = ( -/obj/effect/decal/cleanable/shreds, -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"crU" = ( -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crV" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crW" = ( -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crX" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crY" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crZ" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csa" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"csb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csd" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csn" = ( -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"cso" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/atmos) -"csp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"csq" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "tox_in"; - name = "Toxin Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/atmos) -"csr" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor"; - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"css" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cst" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"csu" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"csx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology South"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - unacidable = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"csD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"csE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csF" = ( -/obj/structure/rack, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"csH" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csK" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"csL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csM" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (SOUTHWEST)"; - icon_state = "tracks"; - dir = 10 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"csP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (NORTHEAST)"; - icon_state = "tracks"; - dir = 5 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csT" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csU" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csV" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/tcommsat/computer) -"csW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csX" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cta" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"ctc" = ( -/turf/closed/wall, -/area/engine/break_room) -"ctd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cte" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cth" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cti" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"ctj" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"ctk" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"ctl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/item/weapon/wrench, -/turf/open/floor/plasteel, -/area/atmos) -"cto" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"ctp" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"ctr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cts" = ( -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"ctt" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"ctu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctv" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"ctx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/weapon/wrench, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 9 - }, -/area/maintenance/asmaint) -"cty" = ( -/obj/machinery/atmospherics/components/binary/valve/open{ - tag = "icon-mvalve_map (EAST)"; - icon_state = "mvalve_map"; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/asmaint) -"ctz" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint) -"ctA" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctD" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ctE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctF" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ctG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"ctH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/misc_lab) -"ctI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"ctJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctK" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctM" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"ctN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/r_leg, -/obj/item/bodypart/r_arm, -/obj/item/weapon/shard, -/obj/item/weapon/hatchet, -/obj/item/weapon/staplegun, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctO" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/l_leg, -/obj/item/bodypart/l_arm, -/obj/item/weapon/restraints/handcuffs, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"ctR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"ctS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"ctU" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctV" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/bluegrid{ - dir = 8; - icon_state = "vault"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cua" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cub" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cuc" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cud" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/tcommsat/computer) -"cue" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cuf" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Telecoms Monitoring"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cui" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cuj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuk" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cul" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cum" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"cun" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cuo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cup" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cuq" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/engineering) -"cur" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/engineering) -"cus" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/engineering) -"cut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cuu" = ( -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuv" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/atmos) -"cux" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuA" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuF" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 10 - }, -/area/maintenance/asmaint) -"cuG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cuH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 6 - }, -/area/maintenance/asmaint) -"cuI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuM" = ( -/obj/machinery/sparker{ - id = "testigniter"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuN" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cuU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Testing Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cuV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cuW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cuX" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuY" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuZ" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel{ - tag = "icon-damaged5"; - icon_state = "damaged5" - }, -/area/maintenance/strangeroom) -"cva" = ( -/obj/machinery/camera{ - c_tag = "Telecoms Server Room"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cvb" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvc" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/tcommsat/computer) -"cve" = ( -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecoms Admin"; - departmentType = 5; - name = "Telecoms RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvh" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cvi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cvk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cvp" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/plasteel, -/area/atmos) -"cvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/atmos) -"cvr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"cvs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvt" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/weapon/cigbutt, -/turf/open/floor/plasteel, -/area/atmos) -"cvu" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/atmos) -"cvw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvx" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics CO2 Tank" - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvy" = ( -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvD" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvG" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvH" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cvI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cvJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvK" = ( -/obj/machinery/camera{ - c_tag = "Testing Chamber"; - dir = 1; - network = list("Test","RD"); - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cvL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"cvM" = ( -/obj/machinery/camera{ - c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvN" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvO" = ( -/obj/structure/closet/crate, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cvQ" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cvS" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvT" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/strangeroom) -"cvV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/strangeroom) -"cvW" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cvX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cvY" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/chem_pile, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cvZ" = ( -/obj/machinery/message_server, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwa" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwb" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwc" = ( -/obj/structure/table, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cwd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwe" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cwg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"cwn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwt" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwu" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cwv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cww" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cwy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwz" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/atmos) -"cwA" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor"; - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwE" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwF" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cwR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cwU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cwX" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/spirit_board, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cxd" = ( -/obj/structure/closet/crate/secure, -/obj/item/weapon/restraints/handcuffs, -/obj/item/weapon/pen, -/obj/item/weapon/paper{ - info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; - name = "Strange Paper" - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/strangeroom) -"cxe" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"cxf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gibber, -/turf/open/floor/plasteel, -/area/maintenance/strangeroom) -"cxg" = ( -/obj/machinery/vending/cart{ - desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; - icon_state = "cart-broken"; - name = "Old Machine"; - product_slogans = "Bzzzt..-6-4-!"; - products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cxh" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxi" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxj" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxk" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxl" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cxm" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxx" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxC" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxD" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cxF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cxG" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - pixel_x = 0; - pixel_y = 0; - target_pressure = 4500 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = 3; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/atmos) -"cxK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cxL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxP" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cxY" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxZ" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cya" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyc" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyd" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cye" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyk" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyl" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cym" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cyn" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"cyo" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyr" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/hallway/primary/aft) -"cys" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyt" = ( -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyv" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/break_room) -"cyy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyB" = ( -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cyG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cyI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/atmos) -"cyK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Incinerator APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cyL" = ( -/obj/structure/sign/fire{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cyN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyO" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyP" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyX" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyZ" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cza" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czb" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czc" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czd" = ( -/obj/item/clothing/under/rank/vice, -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/aft) -"cze" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"czi" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czj" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/chiefs_office) -"czl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/engine/break_room) -"czm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/break_room) -"czn" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/engine/break_room) -"czo" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"czp" = ( -/turf/closed/wall, -/area/maintenance/incinerator) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/incinerator) -"czr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"czs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/toy/minimeteor, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czt" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/snacks/donkpocket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/c_tube, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czw" = ( -/obj/structure/mopbucket, -/obj/item/weapon/caution, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Air Supply Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"czB" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/maintenance/portsolar) -"czE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"czF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"czG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czI" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czN" = ( -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/engine/chiefs_office) -"czO" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czQ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czS" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 4; - name = "CE Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/engineering) -"czV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/engineering) -"czW" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/atmos) -"czX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/atmos) -"czY" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"czZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAa" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - filter_type = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAd" = ( -/obj/machinery/chem_master, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAe" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/kitchenspike_frame, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAh" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAi" = ( -/obj/structure/table/wood, -/obj/item/weapon/retractor/alien, -/obj/item/weapon/reagent_containers/glass/bowl, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAj" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"cAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cAy" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAz" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAD" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cAE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAF" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAG" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"cAI" = ( -/obj/machinery/camera{ - c_tag = "Aft Port Solar Access"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAP" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAT" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cAU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAW" = ( -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/atmos) -"cAY" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/atmos) -"cAZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/atmos) -"cBa" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/atmos) -"cBb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/atmos) -"cBc" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/atmos) -"cBd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/atmos) -"cBe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 10 - }, -/area/atmos) -"cBf" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1443; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "arrival" - }, -/area/atmos) -"cBg" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 6 - }, -/area/atmos) -"cBh" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cBi" = ( -/turf/open/floor/plating, -/area/atmos) -"cBj" = ( -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBk" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/incinerator) -"cBl" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/incinerator) -"cBn" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/lighter/greyscale, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"cBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBq" = ( -/obj/structure/chair, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBr" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cBv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBE" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cBH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBV" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBZ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCb" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCd" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCf" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCg" = ( -/turf/closed/wall, -/area/engine/engineering) -"cCh" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCi" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCj" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCk" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/paper/monitorkey, -/obj/item/weapon/coin/plasma, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCn" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCo" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCq" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCy" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCC" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical, -/obj/item/pizzabox/mushroom, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCH" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCN" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/switchblade{ - force = 12 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCQ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cCR" = ( -/obj/machinery/power/solar_control{ - id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCS" = ( -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Aft Port Solar APC"; - pixel_x = 23; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCY" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cCZ" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cDa" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cDb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDd" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDi" = ( -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/computer/card/minor/ce, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDj" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDl" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space, -/area/space) -"cDq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space, -/area/space) -"cDr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space, -/area/space) -"cDs" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/maintenance/incinerator) -"cDt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/tie/black, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDx" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDz" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDA" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/shard, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDB" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDC" = ( -/obj/structure/closet, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDD" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDE" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cDH" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDI" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cDJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDU" = ( -/obj/item/weapon/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/item/weapon/cartridge/atmos, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDV" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cDY" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_in_meter"; - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cDZ" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_out_meter"; - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cEa" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEb" = ( -/obj/item/clothing/head/cone, -/obj/item/weapon/restraints/handcuffs/cable/orange, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Biohazard Disposals"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEf" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cEg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEh" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEk" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEl" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEn" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEA" = ( -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/weapon/circuitboard/computer/solar_control, -/obj/item/weapon/electronics/tracker, -/obj/item/weapon/paper/solar, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEB" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cED" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEF" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cEG" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"cEI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEM" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEP" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cER" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cES" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor"; - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 0; - frequency = 1443; - icon_state = "vent_map"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cEU" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEV" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/incinerator) -"cEW" = ( -/obj/item/clothing/suit/toggle/labcoat/mad, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEX" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cEY" = ( -/obj/structure/table/wood, -/obj/item/organ/internal/butt/xeno, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - tag = "icon-manifold (NORTH)"; - icon_state = "manifold"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFf" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFl" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFr" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFs" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFu" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cFv" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cFw" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cFx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/engine/engineering) -"cFz" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cFC" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFD" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/wrench, -/obj/item/weapon/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cFJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFK" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFL" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFM" = ( -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics O2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFP" = ( -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Air-mix Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFS" = ( -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFT" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFU" = ( -/obj/item/weapon/kitchen/knife, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFV" = ( -/obj/structure/table/wood, -/obj/item/weapon/scalpel, -/obj/item/weapon/wirecutters, -/obj/item/organ/brain/alien, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFW" = ( -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFX" = ( -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFY" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGb" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGd" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGe" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGh" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGi" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cGj" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cGn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGo" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGp" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGq" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/engine/engineering) -"cGs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cGt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGu" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGE" = ( -/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/open/floor/plasteel, -/area/engine/engineering) -"cGF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGI" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cGJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cGK" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cGL" = ( -/obj/structure/table/wood, -/obj/item/weapon/hatchet, -/obj/item/weapon/lighter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cGM" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGN" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/crowbar, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGO" = ( -/obj/item/weapon/bedsheet/cult, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGP" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGT" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGU" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGW" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGX" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGY" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGZ" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHa" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cHd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHe" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cHf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cHg" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cHh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "SMES Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHi" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/engine/engineering) -"cHk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Middle"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cHl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHp" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cHr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Waste Out"; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHt" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cHv" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cHz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHB" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHC" = ( -/obj/machinery/door/window{ - name = "SMES Chamber"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHD" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHE" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cHG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "SMES Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/engine/engineering) -"cHJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHY" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/weapon/airlock_painter, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHZ" = ( -/obj/machinery/camera{ - c_tag = "Engineering East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cIa" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cIb" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIc" = ( -/turf/open/floor/plating, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/asmaint2) -"cId" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIe" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/turf/open/floor/plating, -/area/space) -"cIf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Starboard Solar APC"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIh" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIn" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIq" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engineering) -"cIs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIx" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"cIC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIF" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIG" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cII" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engineering) -"cIM" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cIN" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIO" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIP" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_4) -"cIQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/space, -/area/space) -"cIR" = ( -/obj/structure/table_frame, -/obj/item/weapon/wirerod, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint2) -"cIS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space) -"cIT" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIV" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIW" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cIZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"cJa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cJb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cJc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cJe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJj" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"cJk" = ( -/obj/structure/window, -/turf/open/floor/plating, -/area/toxins/mixing) -"cJl" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "0"; - req_one_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cJm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/engine/engineering) -"cJt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"cJu" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cJv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJz" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engineering) -"cJA" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cJB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod4"; - shuttleId = "pod4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"cJF" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "asteroid_pod4" - }, -/turf/open/space, -/area/space) -"cJG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJI" = ( -/obj/machinery/power/solar_control{ - id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJK" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJL" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/engine/engineering) -"cJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJN" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJO" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cJR" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJS" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJT" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJV" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJW" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJX" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/engineering) -"cJY" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plating, -/area/engine/engineering) -"cJZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engine/engineering) -"cKa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKd" = ( -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cKe" = ( -/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_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKf" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cKh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKj" = ( -/obj/structure/sign/pods{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engineering) -"cKk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Escape Pod"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cKl" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKm" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKn" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cKo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKq" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKs" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/obj/machinery/camera{ - c_tag = "Engineering Materials"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKt" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKu" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cKw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKz" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKG" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKJ" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKM" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_particle_accelerator{ - pixel_y = 6 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKS" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "32" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering) -"cKU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKZ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLa" = ( -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLb" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Port Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering North" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLc" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLe" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLf" = ( -/obj/machinery/camera{ - c_tag = "Engineering MiniSat Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLh" = ( -/obj/structure/transit_tube{ - tag = "icon-Block"; - icon_state = "Block" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLi" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/obj/structure/sign/securearea{ - name = "EXTERNAL AIRLOCK"; - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cLj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cLk" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/item/weapon/lighter{ - lit = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Entrance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLo" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -2 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLr" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -6 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLs" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/weapon/storage/backpack/industrial, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLt" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLw" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLz" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLF" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLH" = ( -/obj/structure/transit_tube/station{ - dir = 8; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/obj/structure/transit_tube_pod, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cLJ" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLM" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLO" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLP" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cLR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Supermatter Control Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cLS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLX" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMa" = ( -/obj/structure/table, -/obj/item/weapon/pocketknife, -/obj/item/weapon/reagent_containers/food/snacks/beans{ - bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); - desc = "Smells kind of funny." - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMb" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMd" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMg" = ( -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMn" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/reagent_containers/pill/charcoal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) -"cMp" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMq" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cMr" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cMu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMv" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/engine/supermatter) -"cMw" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMx" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMz" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/engine/supermatter) -"cMA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMB" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/engine/engineering) -"cMD" = ( -/obj/structure/transit_tube{ - tag = "icon-N-SE"; - icon_state = "N-SE" - }, -/turf/open/space, -/area/space) -"cME" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/turf/open/space, -/area/space) -"cMF" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/weapon/paper/gravity_gen{ - layer = 3 - }, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMJ" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMM" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMP" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMQ" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cMR" = ( -/obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" - }, -/turf/open/space, -/area/space) -"cMS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMT" = ( -/obj/structure/transit_tube, -/turf/open/space, -/area/space) -"cMU" = ( -/obj/structure/transit_tube{ - tag = "icon-E-W-Pass"; - icon_state = "E-W-Pass" - }, -/turf/open/space, -/area/space) -"cMV" = ( -/obj/structure/transit_tube{ - icon_state = "W-SE" - }, -/turf/open/space, -/area/space) -"cMW" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMX" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cMY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMZ" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNa" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNc" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNd" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNe" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNf" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNg" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNh" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNk" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNl" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNp" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNs" = ( -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/space) -"cNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNu" = ( -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/space) -"cNv" = ( -/obj/item/weapon/crowbar, -/turf/open/space, -/area/space) -"cNw" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNx" = ( -/turf/closed/wall/r_wall, -/area/aisat) -"cNy" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cNz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cNA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/engine/engine_smes) -"cNC" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cND" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cNE" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cNF" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/aisat) -"cNG" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/aisat) -"cNH" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/aisat) -"cNI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNJ" = ( -/obj/item/weapon/weldingtool, -/turf/open/space, -/area/space) -"cNK" = ( -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/space) -"cNM" = ( -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/space) -"cNN" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNO" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/turf/open/space, -/area/space) -"cNP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNQ" = ( -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNS" = ( -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNT" = ( -/obj/structure/transit_tube{ - tag = "icon-S-NW"; - icon_state = "S-NW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNU" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNV" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNW" = ( -/obj/machinery/button/door{ - id = "teledoor"; - name = "AI Satellite Teleport Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "17;65" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNZ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cOd" = ( -/turf/closed/wall, -/area/aisat) -"cOe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/aisat) -"cOg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Teleporter Room"; - req_access_txt = "17;65" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "AI Satellite Teleport Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOi" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cOk" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cOl" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOr" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOs" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cOt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOv" = ( -/obj/structure/transit_tube/station{ - dir = 4; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOy" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access = null; - req_access_txt = "65;13" - }, -/turf/open/floor/plating, -/area/aisat) -"cOz" = ( -/turf/open/floor/plating, -/area/aisat) -"cOA" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cOB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cOE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cOF" = ( -/obj/structure/transit_tube{ - dir = 1; - icon_state = "Block"; - tag = "icon-Block (NORTH)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOI" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cOM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cON" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cOP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "MiniSat Entrance"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat External Power APC"; - pixel_x = -27; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOW" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOY" = ( -/obj/machinery/turretid{ - control_area = "AI Satellite Antechamber"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 0; - pixel_y = -24; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOZ" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cPa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/aisat) -"cPc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cPd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/aisat) -"cPe" = ( -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/closed/wall, -/area/aisat) -"cPj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cPm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPo" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPw" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cPx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cPz" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_sw"; - name = "southwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cPA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cPB" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPC" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPN" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/aisat) -"cPP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPR" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPS" = ( -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPT" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPU" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - cell_type = 2500; - dir = 4; - name = "MiniSat Antechamber APC"; - pixel_x = 29; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space) -"cPW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cPY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cPZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/bot/floorbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQb" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cQc" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQd" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Antechamber"; - dir = 1; - network = list("MiniSat") - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/bot/cleanbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cQh" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQj" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQk" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - locked = 1; - name = "AI Chamber"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQm" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQp" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQq" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber North"; - dir = 2; - network = list("MiniSat","RD"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQr" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQs" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQw" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQy" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQz" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQA" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQC" = ( -/turf/closed/wall, -/area/turret_protected/ai) -"cQD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQE" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQF" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQH" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQI" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQJ" = ( -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber South"; - dir = 2; - network = list("RD","MiniSat") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQN" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQO" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQS" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQV" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cQW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQY" = ( -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cQZ" = ( -/obj/structure/rack, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/secure) -"cRc" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRd" = ( -/obj/structure/rack, -/obj/item/weapon/crowbar/red, -/obj/item/weapon/wrench, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cRf" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cRg" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat Maint APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air Out"; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/ai_monitored/storage/secure) -"cRj" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ai_monitored/storage/secure) -"cRk" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/ai_monitored/storage/secure) -"cRl" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cRn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/aisat) -"cRo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRr" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/aisat) -"cRy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRB" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cRF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"cRG" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cRH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRI" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRJ" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRK" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cRP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRS" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRU" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "SMES room APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRV" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cRW" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cRZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cSa" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSb" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Supermatter Control Room"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters" - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cSc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSe" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSf" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSg" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSh" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSi" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/camera{ - c_tag = "Port Engineering North-East"; - dir = 5; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSo" = ( -/obj/machinery/vending/tool, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSp" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cSB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSC" = ( -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cSE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSF" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHWEST)"; - icon_state = "warndark"; - dir = 10 - }, -/area/engine/supermatter) -"cSG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSH" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "smblast"; - name = "Control Room Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHEAST)"; - icon_state = "warndark"; - dir = 6 - }, -/area/engine/supermatter) -"cSJ" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSK" = ( -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSL" = ( -/obj/item/device/radio/off, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSM" = ( -/obj/machinery/power/emitter{ - anchored = 1; - state = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSN" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSO" = ( -/obj/structure/grille, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSP" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSQ" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSS" = ( -/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 = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cST" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTe" = ( -/obj/structure/closet/radiation, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cTg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTh" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cTi" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTo" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smblast" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cTp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTr" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTD" = ( -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTF" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTG" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTI" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTJ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTK" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTL" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - layer = 3 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Center" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTO" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTQ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Supermatter APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTS" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTY" = ( -/obj/machinery/power/rad_collector{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/port_engineering) -"cTZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cUe" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUh" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/power/emitter, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUs" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUx" = ( -/turf/closed/wall, -/area/engine/port_engineering) -"cUA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUF" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUG" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cUI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cUJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cUL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUN" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Filtering Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUO" = ( -/obj/machinery/camera{ - c_tag = "Filtering Room" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUQ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/camera{ - c_tag = "Supermatter West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters"; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVb" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVc" = ( -/obj/machinery/field/generator{ - anchored = 1; - state = 2 - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cVf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVg" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVh" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVj" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space) -"cVl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVn" = ( -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVp" = ( -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVv" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVw" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "superinput" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVx" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVC" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/camera{ - c_tag = "Supermatter East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/port_engineering) -"cVG" = ( -/obj/item/weapon/wirecutters, -/turf/open/space, -/area/space) -"cVH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVL" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVM" = ( -/obj/machinery/the_singularitygen{ - anchored = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVN" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVO" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVP" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVQ" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Filtering Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVT" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVU" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/supermatter) -"cVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVW" = ( -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVY" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/supermatter) -"cVZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cWd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space) -"cWe" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWj" = ( -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWl" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWm" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWo" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWr" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWt" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWu" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWv" = ( -/obj/machinery/mass_driver{ - id = "engicannon" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - tag = "smin"; - volume_rate = 700 - }, -/obj/machinery/power/supermatter_shard{ - anchored = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWx" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWz" = ( -/turf/open/floor/plating, -/area/engine/supermatter) -"cWA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space) -"cWE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWF" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWG" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWI" = ( -/obj/machinery/particle_accelerator/control_box{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 0; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWL" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage1"; - name = "secure storage" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/port_engineering) -"cWM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/electronics/airlock, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWP" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/tank_dispenser, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWQ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWU" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWV" = ( -/obj/structure/sign/securearea{ - color = ""; - desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; - name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWX" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/space) -"cWY" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/space) -"cXc" = ( -/obj/structure/particle_accelerator/power_box{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXd" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXe" = ( -/obj/structure/particle_accelerator/end_cap{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXf" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXg" = ( -/obj/machinery/camera{ - c_tag = "Engineering PA"; - dir = 9; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the singularity chamber."; - dir = 2; - layer = 4; - name = "Singularity Engine Telescreen"; - network = list("Singularity"); - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXi" = ( -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXj" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/camera{ - c_tag = "Port Engineering Secure Storage"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXk" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cXl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXn" = ( -/obj/machinery/door/poddoor{ - id = "engicannon" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cXo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXp" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXq" = ( -/obj/structure/window{ - color = "red"; - desc = "A window, break in case of emergency."; - dir = 1; - icon_state = "window"; - tag = "icon-window (NORTH)" - }, -/obj/machinery/button/massdriver{ - id = "engicannon"; - name = "\improper JETTISON ENGINE"; - pixel_y = -22; - req_access_txt = "32" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/engine/supermatter) -"cXr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXt" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXu" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXw" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage1"; - name = "Secure Storage"; - pixel_x = 24; - pixel_y = 0; - req_access_txt = "10" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering Middle"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXx" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - volume_rate = 5000 - }, -/turf/open/floor/plating/airless, -/area/space) -"cXz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/space) -"cXA" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXE" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXG" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXI" = ( -/obj/machinery/field/generator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXM" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Port Engineering South" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXN" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXY" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYb" = ( -/obj/item/device/multitool, -/turf/open/space, -/area/space) -"cYd" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYe" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYf" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYh" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYi" = ( -/obj/structure/grille, -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYk" = ( -/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 = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYq" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYr" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYu" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYw" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYD" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/space, -/area/space) +"aaa" = (/turf/open/space,/area/space) +"aab" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_n";name = "north of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"aac" = (/obj/structure/lattice,/turf/open/space,/area/space) +"aad" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) +"aae" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/grille,/turf/open/space,/area/space) +"aaf" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space) +"aag" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_ne";name = "northeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"aah" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_nw";name = "northwest of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"aai" = (/turf/closed/wall/r_wall,/area/security/transfer) +"aaj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/engine,/area/security/transfer) +"aak" = (/obj/machinery/door/poddoor{id = "executionspacevent"},/turf/open/floor/engine,/area/security/transfer) +"aal" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/engine,/area/security/transfer) +"aam" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space) +"aan" = (/obj/machinery/flasher{id = "executionflasher";pixel_y = 24},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/engine,/area/security/transfer) +"aao" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/security/processing) +"aap" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/transfer) +"aaq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/processing) +"aar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/security/transfer) +"aas" = (/obj/machinery/sparker{id = "executionsparker";pixel_x = 24},/turf/open/floor/engine,/area/security/transfer) +"aat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/chair,/turf/open/floor/engine,/area/security/transfer) +"aau" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aav" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aaw" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aax" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aay" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/engine,/area/security/transfer) +"aaz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/security/transfer) +"aaA" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/security/transfer) +"aaB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/machinery/camera{c_tag = "Prison Shuttle Dock Northwest";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aaC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/processing) +"aaD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aaE" = (/obj/machinery/door/airlock/external{req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) +"aaF" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aaG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aaH" = (/obj/structure/grille,/obj/structure/window,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/security/transfer) +"aaI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{heat_proof = 1;name = "Prisoner Transfer Chamber";req_access_txt = "2"},/turf/open/floor/engine,/area/security/transfer) +"aaJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/grille,/obj/structure/window,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/security/transfer) +"aaK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aaL" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"aaM" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen{volume = 10000},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaN" = (/obj/machinery/atmospherics/components/unary/tank/toxins,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaO" = (/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaP" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/razor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaQ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaR" = (/obj/machinery/button/flasher{id = "executionflasher";pixel_x = 24;pixel_y = 4;req_access_txt = "1"},/obj/machinery/button/door{id = "executionspacevent";name = "vent to space";pixel_x = 24;pixel_y = -8;req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaS" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/weapon/tank/internals/anesthetic,/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/mask/breath,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aaV" = (/obj/machinery/camera{c_tag = "Prison Shuttle Dock Northeast";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"aaW" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaX" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaY" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aaZ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aba" = (/obj/machinery/button/ignition{id = "executionsparker";pixel_x = 24;pixel_y = 8;req_access_txt = "1"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abb" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abd" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space,/area/space) +"abe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abf" = (/obj/machinery/flasher{id = "gulagshuttleflasher";pixel_x = 25},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"abg" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/transfer) +"abk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/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"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/door/window/northleft{dir = 4;req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/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"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abp" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abq" = (/obj/machinery/door/airlock/security{name = "Prisoner Transfer";req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abv" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abw" = (/obj/structure/table,/obj/item/device/electropack,/obj/item/clothing/head/helmet,/obj/item/device/assembly/signaler,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Transfer Center APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abx" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"aby" = (/obj/structure/closet/secure_closet/injection,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abz" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/light,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) +"abA" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abF" = (/turf/closed/wall/r_wall,/area/security/lockers) +"abG" = (/turf/closed/wall/r_wall,/area/security/hos) +"abH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/hos) +"abI" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"abJ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"abK" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/machinery/camera{c_tag = "Brig Interrogation"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"abL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"abN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) +"abO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"abP" = (/obj/structure/filingcabinet,/turf/open/floor/carpet,/area/security/hos) +"abQ" = (/obj/machinery/computer/security,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/security/hos) +"abR" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/carpet,/area/security/hos) +"abS" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"abT" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/carpet,/area/security/hos) +"abU" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"abV" = (/obj/machinery/computer/card/minor/hos,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/carpet,/area/security/hos) +"abW" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/lockers) +"abX" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/closet/bombclosetsecurity,/turf/open/floor/plasteel,/area/security/lockers) +"abY" = (/turf/open/floor/plasteel,/area/security/lockers) +"abZ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Cappers! Fairly unremarkable really.";name = "\improper Officer Cappers"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"aca" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1;icon_state = "tube1"},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Camilla! He constantly seeks validation.";name = "\improper Officer Camilla"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acb" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/flasher/portable,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acc" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/flasher/portable,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acd" = (/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"ace" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acf" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acg" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"ach" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"aci" = (/obj/structure/table,/obj/item/weapon/lighter,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"acj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Prison Shuttle Dock West";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"ack" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) +"acl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"acm" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) +"acn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Prison Shuttle Dock APC";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing) +"aco" = (/obj/structure/table,/obj/item/device/assembly/flash,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) +"acp" = (/obj/machinery/computer/shuttle/labor{name = "prison shuttle console"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/security/processing) +"acq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel,/area/security/processing) +"acr" = (/obj/machinery/camera{c_tag = "Prison Shuttle Dock East";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"acs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"act" = (/obj/structure/closet/ammunitionlocker,/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) +"acu" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) +"acv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) +"acw" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/deputy,/obj/item/weapon/storage/box/seccarts,/turf/open/floor/carpet,/area/security/hos) +"acx" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"acy" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel,/area/security/lockers) +"acz" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/closet/l3closet/security,/turf/open/floor/plasteel,/area/security/lockers) +"acA" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acB" = (/turf/open/floor/carpet,/area/security/hos) +"acC" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acD" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acE" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) +"acF" = (/obj/structure/table,/obj/item/device/taperecorder,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"acG" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"acH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"acI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) +"acJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"acK" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/security/processing) +"acL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing) +"acM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) +"acN" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"acO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) +"acP" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Head of Security's Office";dir = 4;network = list("SS13")},/obj/machinery/recharger,/turf/open/floor/carpet,/area/security/hos) +"acQ" = (/obj/structure/table/wood,/obj/item/weapon/coin/adamantine,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) +"acR" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet,/area/security/hos) +"acS" = (/obj/structure/closet/secure_closet/hos,/turf/open/floor/carpet,/area/security/hos) +"acT" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Brig Locker Room West";dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/lockers) +"acU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/security/lockers) +"acV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/lockers) +"acW" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/lockers) +"acX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/lockers) +"acY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"acZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"ada" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"adb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) +"adc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"add" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) +"ade" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) +"adf" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) +"adg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) +"adh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) +"adi" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) +"adj" = (/obj/structure/closet/ammunitionlocker,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) +"adk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"adl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"adm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/security/hos) +"adn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/security/hos) +"ado" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/hos) +"adp" = (/turf/closed/wall,/area/security/transfer) +"adq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/security/hos) +"adr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer) +"ads" = (/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Security Locker Room APC";pixel_x = -24},/turf/open/floor/plasteel,/area/security/lockers) +"adt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) +"adu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/security/lockers) +"adv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/lockers) +"adw" = (/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/open/floor/plasteel,/area/security/lockers) +"adx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/brig) +"ady" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation";req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"adz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/security/isolation) +"adA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) +"adB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) +"adC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"adD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"adE" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/security/hos) +"adF" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera{c_tag = "Brig Riot Equipment";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"adG" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Head of Security's Office APC";pixel_x = -24},/turf/open/floor/carpet,/area/security/hos) +"adH" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) +"adI" = (/turf/closed/wall,/area/security/hos) +"adJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/carpet,/area/security/hos) +"adK" = (/obj/machinery/disposal/bin,/turf/open/floor/carpet,/area/security/hos) +"adL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel,/area/security/lockers) +"adM" = (/obj/structure/closet/secure_closet/security,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/lockers) +"adN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/lockers) +"adO" = (/obj/structure/closet/secure_closet/security,/turf/open/floor/plasteel,/area/security/lockers) +"adP" = (/obj/structure/closet/secure_closet/security,/obj/machinery/light,/turf/open/floor/plasteel,/area/security/lockers) +"adQ" = (/obj/structure/closet/secure_closet/security,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) +"adR" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 20},/obj/item/stack/sheet/metal{amount = 20},/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) +"adS" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/security/lockers) +"adT" = (/obj/structure/table,/obj/item/key/security,/obj/item/key/security,/obj/item/key/security,/obj/item/key/security,/obj/machinery/camera{c_tag = "Brig Locker Room East";dir = 1},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/security/lockers) +"adU" = (/obj/machinery/vending/security,/obj/machinery/light,/turf/open/floor/plasteel,/area/security/lockers) +"adV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/isolation) +"adW" = (/obj/machinery/vending/medical{pixel_x = -2;req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 9;icon_state = "whitered"},/area/security/isolation) +"adX" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitered"},/area/security/isolation) +"adY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"adZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aea" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aeb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aec" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aed" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aee" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aef" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/camera{c_tag = "Brig Cell Corridor Northwest";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/brig) +"aeg" = (/obj/structure/rack,/obj/item/weapon/storage/box/flashbangs,/obj/item/weapon/storage/box/flashbangs,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aeh" = (/obj/structure/rack,/obj/item/weapon/storage/box/teargas,/obj/item/weapon/storage/box/teargas,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aei" = (/obj/machinery/suit_storage_unit/security,/obj/machinery/camera/motion{c_tag = "Armory";name = "motion-sensitive security camera"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aej" = (/obj/machinery/suit_storage_unit/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aek" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"ael" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aem" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/hos) +"aen" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Head of Security's Office";req_access_txt = "58"},/turf/open/floor/carpet,/area/security/hos) +"aeo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/hos) +"aep" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Equipment Room";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/lockers) +"aeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Equipment Room";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/lockers) +"aer" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/main) +"aes" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/isolation) +"aet" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/whitered,/area/security/isolation) +"aeu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) +"aev" = (/turf/closed/wall/r_wall,/area/security/main) +"aew" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Brig Medbay";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/isolation) +"aex" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) +"aey" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"aez" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"aeA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"aeB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"aeC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"aeD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aeE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"aeF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"aeG" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp,/obj/item/weapon/storage/box/trackimp,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aeH" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeK" = (/obj/machinery/button/door{id = "riotequipment";name = "Riot Equipment Shutters";pixel_x = 24;pixel_y = 32;req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeM" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeN" = (/obj/machinery/door/airlock/glass_security{name = "Riot Equipment";req_access_txt = "3"},/obj/machinery/door/poddoor/shutters{id = "riotequipment"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) +"aeP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/hos) +"aeQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"aeR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/main) +"aeS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"aeT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main) +"aeU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light{dir = 1;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"aeV" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"aeW" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"aeX" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"aeY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"aeZ" = (/obj/machinery/computer/secure_data,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/main) +"afa" = (/obj/machinery/computer/security,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"afb" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afc" = (/obj/item/device/radio/intercom{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afd" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afe" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"aff" = (/obj/structure/closet/wardrobe/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afg" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"afh" = (/obj/machinery/shower{dir = 8},/obj/machinery/light/small{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afi" = (/obj/structure/bed,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/security/isolation) +"afj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) +"afk" = (/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) +"afl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/fpmaint) +"afm" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"afn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) +"afo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"afp" = (/obj/structure/rack,/obj/item/weapon/storage/lockbox/loyalty,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands.";name = "\improper Officer Lock n Lode"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"afr" = (/obj/structure/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afs" = (/obj/structure/rack,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/device/multitool,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"aft" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Armory APC";pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"afu" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/main) +"afv" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Head of Security"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main) +"afw" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) +"afx" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/security/main) +"afy" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) +"afz" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"afA" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afB" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afC" = (/obj/machinery/door/window/northleft{dir = 2;name = "Shower Door"},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afD" = (/obj/machinery/door/window/northleft{dir = 2;name = "Shower Door"},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"afE" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/whitered,/area/security/isolation) +"afF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) +"afG" = (/obj/machinery/camera{c_tag = "Brig Medbay";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) +"afH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"afI" = (/turf/closed/wall,/area/security/main) +"afJ" = (/obj/structure/grille,/turf/open/space,/area/space) +"afK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"afL" = (/obj/machinery/disposal/trapdoor{id = "Cell 6"},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"afM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"afN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"afO" = (/obj/machinery/door_timer{id = "Cell 6";name = "Secure Cell 2";pixel_x = -32},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) +"afP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/brig) +"afQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"afR" = (/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afS" = (/obj/machinery/door/window/brigdoor{name = "Armory";req_access_txt = "3"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"afT" = (/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afU" = (/obj/structure/window/reinforced,/obj/structure/guncase/ecase,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afV" = (/obj/structure/window/reinforced,/obj/structure/guncase/shotgun,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) +"afW" = (/obj/machinery/door/airlock/glass_security{name = "Riot Equipment";req_access_txt = "2"},/obj/machinery/door/poddoor/shutters{id = "riotequipment"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) +"afX" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/main) +"afY" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) +"afZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) +"aga" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) +"agb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"agc" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) +"agd" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) +"age" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/security/main) +"agf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) +"agg" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) +"agh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Security Office APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) +"agi" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"agj" = (/obj/machinery/door/airlock{name = "Showers";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"agk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"agl" = (/obj/machinery/camera{c_tag = "Brig Showers";dir = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"agm" = (/turf/open/floor/plasteel,/area/security/main) +"agn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"ago" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/gauze,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{dir = 2;icon_state = "whitered"},/area/security/isolation) +"agp" = (/obj/structure/table,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/turf/open/floor/plasteel{dir = 10;icon_state = "whitered"},/area/security/isolation) +"agq" = (/obj/structure/table,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/turf/open/floor/plasteel{dir = 6;icon_state = "whitered"},/area/security/isolation) +"agr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main) +"ags" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"agt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{dir = 8;name = "Brig Medbay APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/isolation) +"agu" = (/obj/item/device/radio/intercom{pixel_x = -25;prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"agv" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_3) +"agw" = (/turf/closed/wall/shuttle{icon_state = "swall14";dir = 2},/area/shuttle/pod_3) +"agx" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_3) +"agy" = (/turf/closed/wall/shuttle{icon_state = "swall_s10";dir = 2},/area/shuttle/pod_3) +"agz" = (/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"agA" = (/obj/machinery/flasher{id = "Cell 6"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"agB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"agC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "SecureCell2";name = "Secure Cell 2";req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) +"agD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"agE" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"agF" = (/obj/machinery/computer/secure_data,/obj/machinery/camera{c_tag = "Warden's Office";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"agG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"agH" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"agI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) +"agJ" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"agK" = (/obj/vehicle/secway,/obj/item/key/security,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"agL" = (/obj/structure/table,/obj/machinery/syndicatebomb/training,/obj/item/weapon/gun/energy/laser/practice,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/main) +"agM" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"agN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"agO" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/main) +"agP" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Security Office West";dir = 2;network = list("Xeno","RD");pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) +"agQ" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main) +"agR" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) +"agS" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Security Office East";dir = 8;network = list("SS13")},/obj/item/clothing/head/welding,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) +"agT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) +"agU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"agV" = (/turf/closed/wall/r_wall,/area/maintenance/fsmaint) +"agW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/maintenance/fsmaint) +"agX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/fsmaint) +"agY" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/maintenance/fsmaint) +"agZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aha" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ahb" = (/obj/structure/closet/secure_closet/brig{id = "Cell 6"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"ahc" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"ahd" = (/turf/closed/wall/shuttle{icon_state = "swallc4"},/area/shuttle/pod_3) +"ahe" = (/obj/structure/chair,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"ahf" = (/obj/structure/chair,/obj/machinery/flasher{id = "brigshuttleflash";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"ahg" = (/obj/structure/chair,/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"ahh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ahi" = (/obj/structure/chair,/obj/item/weapon/storage/pod{pixel_y = 30},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ahj" = (/obj/structure/chair,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ahk" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ahl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/camera{c_tag = "Brig Secure Cell 2";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"ahm" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) +"ahn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) +"aho" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"ahp" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Warden's Office";req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"aht" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ahu" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ahv" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ahw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ahx" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) +"ahy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ahz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahA" = (/obj/machinery/computer/shuttle/labor{name = "prison shuttle console"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"ahB" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = -31;pixel_y = 0},/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"ahC" = (/turf/closed/wall/shuttle{icon_state = "swall1";dir = 2},/area/shuttle/labor) +"ahD" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"ahE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main) +"ahF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahG" = (/obj/structure/rack,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahM" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ahN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ahO" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ahP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Brig Cell Corridor West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) +"ahQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"ahR" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Warden"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahS" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahU" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/button/door{id = "armorylockdown";name = "Brig Control Lockdown";req_access_txt = "1"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahV" = (/obj/structure/closet/secure_closet/warden,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahW" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Brig Control APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahX" = (/turf/closed/wall,/area/security/warden) +"ahY" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"ahZ" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/item/device/radio/intercom{pixel_x = -26},/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/security/main) +"aia" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) +"aib" = (/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) +"aic" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) +"aid" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;dwidth = 2;height = 9;id = "pod3";name = "escape pod 3";width = 5},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"aie" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"aif" = (/obj/machinery/door/airlock/glass_security{name = "Brig Escape Shuttle";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"aig" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"aih" = (/obj/docking_port/stationary/random{dir = 4;dwidth = 2;height = 9;id = "asteroid_pod3";width = 5},/turf/open/space,/area/space) +"aii" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space) +"aij" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) +"aik" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/door/window/westleft{name = "Security Delivery";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/main) +"ail" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/main) +"aim" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ain" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Medbay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/main) +"aio" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aip" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aiq" = (/obj/structure/closet/emcloset,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"air" = (/obj/structure/table,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ais" = (/obj/structure/table,/obj/item/baseball,/obj/item/baseball,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ait" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aiu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aiv" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aiw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aix" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aiy" = (/obj/machinery/disposal/trapdoor{id = "Cell 5"},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"aiz" = (/obj/machinery/door_timer{id = "Cell 5";name = "Secure Cell 1";pixel_x = -32},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) +"aiA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) +"aiB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2},/obj/machinery/door/window/brigdoor{dir = 1;req_access_txt = "3"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) +"aiC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) +"aiD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Warden's Office";req_access_txt = "3"},/turf/open/floor/plasteel,/area/security/warden) +"aiE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) +"aiF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/main) +"aiG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/main) +"aiH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/main) +"aiI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/main) +"aiJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/courtroom) +"aiK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/courtroom) +"aiL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aiM" = (/obj/effect/decal/cleanable/oil,/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aiN" = (/obj/machinery/flasher{id = "Cell 5"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"aiO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "SecureCell1";name = "Secure Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) +"aiP" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Brig APC";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aiQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/brig) +"aiR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aiS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aiT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aiU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/machinery/camera{c_tag = "Brig Cell Corridor"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aiV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aiW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aiX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) +"aiY" = (/turf/closed/wall/shuttle{icon_state = "swallc1"},/area/shuttle/pod_3) +"aiZ" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"aja" = (/obj/structure/chair{dir = 1},/obj/machinery/flasher{id = "brigshuttleflash";pixel_x = 0;pixel_y = -25},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) +"ajb" = (/obj/structure/chair{dir = 1},/obj/machinery/button/flasher{id = "brigshuttleflash";name = "Flash Control";pixel_x = -4;pixel_y = -38;req_access_txt = "1"},/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 0;pixel_y = -31},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ajc" = (/obj/structure/chair{dir = 1},/obj/machinery/computer/shuttle/pod{pixel_y = -30;possible_destinations = "asteroid_pod3";shuttleId = "pod3"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) +"ajd" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/lattice,/turf/open/space,/area/space) +"aje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"aji" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajj" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajm" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajn" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) +"ajo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/brig) +"ajp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"ajq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"ajr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/courtroom) +"ajs" = (/obj/structure/chair,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) +"ajt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/courtroom) +"aju" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Courtroom North";dir = 2;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) +"ajv" = (/obj/structure/closet/secure_closet/courtroom,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"ajw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/courtroom) +"ajx" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice{pixel_y = 4},/obj/item/weapon/dice/d8{pixel_x = -7;pixel_y = -3},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ajy" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"ajz" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fsmaint) +"ajA" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher";name = "Flash Control";pixel_x = 0;pixel_y = -26;req_access_txt = "1"},/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"ajB" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d20,/turf/open/floor/plating,/area/maintenance/fsmaint) +"ajC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ajD" = (/obj/structure/closet/secure_closet/brig{id = "Cell 5"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"ajE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/camera{c_tag = "Brig Secure Cell 1";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"ajF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door_timer{id = "Cell 4";name = "Cell 4";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/security/brig) +"ajG" = (/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";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajI" = (/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";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3";name = "Cell 3";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajJ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2";name = "Cell 2";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajL" = (/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/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajM" = (/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/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door_timer{id = "Cell 1";name = "Cell 1";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"ajP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"ajS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"ajV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"ajW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ajZ" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/brig) +"aka" = (/turf/closed/wall/shuttle{icon_state = "swall13";dir = 2},/area/shuttle/pod_3) +"akb" = (/turf/closed/wall/shuttle{icon_state = "swall_s9";dir = 2},/area/shuttle/pod_3) +"akc" = (/obj/structure/lattice/catwalk,/obj/structure/lattice/catwalk,/turf/open/space,/area/space) +"akd" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) +"ake" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"akf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Courtroom";req_access_txt = "63"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"akg" = (/obj/structure/table/wood,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) +"akh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/courtroom) +"aki" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) +"akj" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d12,/turf/open/floor/plating,/area/maintenance/fsmaint) +"akk" = (/obj/structure/table/wood/poker,/obj/item/weapon/pen,/obj/item/weapon/paper_bin,/turf/open/floor/plating,/area/maintenance/fsmaint) +"akl" = (/obj/machinery/door/airlock/shuttle{name = "Prison Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"akm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"akn" = (/turf/closed/wall,/area/security/isolation) +"ako" = (/obj/machinery/door/window/brigdoor{name = "Cell 4";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) +"akp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) +"akq" = (/turf/closed/wall/shuttle{icon_state = "swall7";dir = 2},/area/shuttle/labor) +"akr" = (/obj/machinery/door/window/brigdoor{name = "Cell 3";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) +"aks" = (/turf/closed/wall/shuttle{icon_state = "swall11";dir = 2},/area/shuttle/labor) +"akt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile{color = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"aku" = (/obj/machinery/door/window/brigdoor{name = "Cell 2";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) +"akv" = (/obj/machinery/door/window/brigdoor{name = "Cell 1";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) +"akw" = (/obj/machinery/door/airlock/glass_security{name = "Evidence";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"akx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"aky" = (/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"akz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"akA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"akB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"akC" = (/obj/machinery/camera{c_tag = "Brig Cell Corridor East";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) +"akD" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"akE" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/courtroom) +"akF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (EAST)";icon_state = "yellowcornersiding";dir = 4},/area/crew_quarters/courtroom) +"akG" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"akH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (NORTH)";icon_state = "yellowcornersiding";dir = 1},/area/crew_quarters/courtroom) +"akI" = (/obj/structure/table/wood/poker,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/fsmaint) +"akJ" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d10,/turf/open/floor/plating,/area/maintenance/fsmaint) +"akK" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fpmaint) +"akL" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) +"akM" = (/obj/structure/chair/comfy/brown,/obj/item/clothing/under/rank/janitor,/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/fpmaint) +"akN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate/trashcart,/obj/item/trash/cheesie,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/weapon/mop,/turf/open/floor/plating,/area/maintenance/fpmaint) +"akO" = (/obj/structure/bed,/obj/item/weapon/bedsheet/ian,/turf/open/floor/plating,/area/maintenance/fpmaint) +"akP" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"akQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{pixel_x = -25;prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"akR" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) +"akS" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Brig Evidence Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) +"akT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"akU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"akV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"akW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"akX" = (/turf/closed/wall,/area/maintenance/fsmaint) +"akY" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) +"akZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"ala" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Front Desk";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/brig) +"alb" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/crew_quarters/courtroom) +"alc" = (/obj/structure/table/wood,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"ald" = (/turf/closed/wall/r_wall,/area/security/isolation) +"ale" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/crew_quarters/courtroom) +"alf" = (/obj/item/weapon/dice/d4,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"alg" = (/obj/structure/grille,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alh" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/candy,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ali" = (/obj/item/stack/teeth/lizard{amount = 3},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alk" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/raisins,/turf/open/floor/plating,/area/maintenance/fpmaint) +"all" = (/obj/machinery/flasher{id = "Cell 4";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alm" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"aln" = (/obj/machinery/flasher{id = "Cell 3";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alo" = (/obj/machinery/flasher{id = "Cell 2";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alp" = (/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 5;id = "laborcamp";name = "perma prison shuttle";port_angle = 90;width = 9},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 5;id = "laborcamp_home";name = "fore bay 1";width = 9},/obj/machinery/door/airlock/shuttle{name = "Prison Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"alq" = (/obj/machinery/flasher{id = "Cell 1";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alr" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) +"als" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/rack,/obj/item/clothing/head/bowler,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"alt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/security/brig) +"alu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"alv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"alw" = (/obj/machinery/computer/security,/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/open/floor/plasteel,/area/security/brig) +"alx" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"aly" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/crew_quarters/courtroom) +"alz" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{dir = 6;icon_state = "green"},/area/crew_quarters/courtroom) +"alA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{cell_type = 2500;dir = 8;name = "Courtroom APC";pixel_x = -24},/turf/open/floor/plating,/area/crew_quarters/courtroom) +"alB" = (/obj/machinery/vending/snack,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alC" = (/obj/machinery/vending/coffee,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alD" = (/obj/item/trash/can,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alE" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigars,/obj/item/weapon/lighter,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/fpmaint) +"alF" = (/obj/structure/closet/secure_closet/brig{id = "Cell 4"},/obj/machinery/camera{c_tag = "Brig Cell 4";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alG" = (/obj/machinery/disposal/trapdoor{id = "Cell 4"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alH" = (/obj/machinery/disposal/trapdoor{id = "Cell 3"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alI" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"},/obj/machinery/camera{c_tag = "Brig Cell 3";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alJ" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/obj/machinery/camera{c_tag = "Brig Cell 2";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alK" = (/obj/machinery/disposal/trapdoor{id = "Cell 2"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alL" = (/obj/machinery/disposal/trapdoor{id = "Cell 1"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alM" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/obj/machinery/camera{c_tag = "Brig Cell 1";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) +"alN" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) +"alO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) +"alP" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) +"alQ" = (/obj/structure/chair/withwheels/office/dark,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"alR" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"alS" = (/obj/machinery/camera{c_tag = "Brig Lobby Desk";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/security/brig) +"alT" = (/obj/structure/table/reinforced,/obj/machinery/button/flasher{id = "lobbyflash";pixel_y = -4;req_access_txt = "1"},/obj/machinery/button/door{id = "lobbylockdown";name = "Lobby Lockdown";pixel_y = 4;req_access_txt = "1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"alU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) +"alV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/courtroom) +"alW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/courtroom) +"alX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"alY" = (/obj/structure/lattice,/obj/item/stack/cable_coil,/turf/open/space,/area/space) +"alZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Courtroom";req_access_txt = "63"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"ama" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amb" = (/obj/structure/closet{name = "locker"},/obj/item/weapon/gun/magic/staff,/obj/item/weapon/gun/magic/wand,/obj/item/weapon/sord,/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amc" = (/obj/structure/closet{name = "locker"},/obj/item/clothing/suit/armor/riot/knight,/obj/item/clothing/head/helmet/knight,/obj/item/clothing/head/wizard/fake,/obj/item/clothing/suit/wizrobe/fake,/obj/item/clothing/head/helmet/roman,/obj/item/clothing/shoes/roman,/obj/item/clothing/under/roman,/obj/item/clothing/suit/space/pirate,/obj/item/clothing/under/kilt,/obj/item/clothing/under/pirate,/obj/item/clothing/under/gladiator,/obj/item/clothing/head/helmet/gladiator,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amd" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ame" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"amf" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint) +"amg" = (/obj/structure/grille,/obj/structure/window,/turf/open/floor/plating,/area/maintenance/fpmaint) +"amh" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/sosjerky,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ami" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/brig) +"amj" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"amk" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) +"aml" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/disposalpipe/segment,/obj/machinery/door/window/northleft{dir = 2},/obj/machinery/door/window/brigdoor{dir = 1;req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) +"amm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"amn" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"amo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plating,/area/maintenance/fpmaint) +"amq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ams" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amt" = (/obj/structure/table,/obj/effect/spawner/lootdrop/food,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/spawner/lootdrop/food,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fpmaint) +"amw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amx" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"amy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amz" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel/bar,/area/security/brig) +"amB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) +"amC" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Brig Lobby"},/obj/item/device/radio/intercom{pixel_y = 24},/turf/open/floor/plasteel/bar,/area/security/brig) +"amD" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) +"amE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/bar,/area/security/brig) +"amF" = (/obj/machinery/flasher{id = "lobbyflash";pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/bar,/area/security/brig) +"amG" = (/obj/structure/chair{dir = 8},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel/bar,/area/security/brig) +"amH" = (/obj/machinery/flasher{id = "lobbyflash";pixel_y = 28},/turf/open/floor/plasteel/bar,/area/security/brig) +"amI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) +"amJ" = (/obj/structure/chair{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"amK" = (/obj/structure/chair{dir = 1},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"amL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/courtroom) +"amN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"amO" = (/turf/open/floor/plating,/area/maintenance/fsmaint) +"amP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amQ" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fsmaint) +"amR" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"amS" = (/obj/structure/table/wood,/obj/machinery/reagentgrinder,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"amT" = (/obj/machinery/power/apc{dir = 1;name = "Worn Out APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/table/wood,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"amU" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) +"amV" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"amW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amY" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) +"amZ" = (/obj/structure/chair,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"ana" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anb" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"and" = (/obj/structure/table,/obj/item/weapon/stamp,/obj/item/weapon/poster/legit,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"ane" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ang" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anh" = (/obj/structure/rack,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/belt/utility,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ani" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ank" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anm" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ann" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/bar,/area/security/brig) +"ano" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/bar,/area/security/brig) +"anp" = (/obj/machinery/atmospherics/pipe/manifold,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/security/brig) +"anr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/security/brig) +"ans" = (/obj/structure/chair{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/item/weapon/poster/legit{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/bar,/area/security/brig) +"ant" = (/turf/open/floor/plasteel/bar,/area/security/brig) +"anu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anv" = (/turf/closed/wall/r_wall,/area/security/warden) +"anw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anx" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"any" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Courtroom";dir = 1;network = list("SS13","RD");pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anA" = (/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";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"anC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"anD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"anE" = (/obj/structure/table,/obj/item/clothing/glasses/monocle,/obj/item/clothing/mask/cigarette/pipe,/turf/open/floor/plating,/area/maintenance/fpmaint) +"anF" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/pill/morphine,/obj/item/weapon/reagent_containers/pill/morphine,/turf/open/floor/plating,/area/maintenance/fpmaint) +"anG" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/security/brig) +"anI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/security/brig) +"anJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/bar,/area/security/brig) +"anK" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/bar,/area/security/brig) +"anL" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/security/brig) +"anM" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) +"anN" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"anO" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anP" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anQ" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anR" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anS" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anU" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"anV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"anY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"anZ" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aoa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aob" = (/obj/structure/falsewall,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aoc" = (/turf/closed/wall,/area/security/brig) +"aod" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/brig) +"aoe" = (/obj/machinery/camera{c_tag = "Cargo North";dir = 4;network = list("perma")},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"aof" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera{c_tag = "Xenobiology North";dir = 8;network = list("perma")},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) +"aog" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"aoh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"aoi" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"aoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aok" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aol" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"aom" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"aon" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"aoo" = (/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aop" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aoq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aor" = (/obj/effect/decal/cleanable/vomit,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aos" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/main) +"aot" = (/turf/closed/wall,/area/crew_quarters/courtroom) +"aou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/courtroom) +"aov" = (/obj/structure/rack,/obj/item/weapon/storage/box/matches,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aow" = (/obj/structure/table/wood,/obj/machinery/light/small{brightness = 1;color = "red";dir = 1},/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left.";name = "detectives camera";pictures_left = 30},/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aox" = (/obj/structure/table/wood,/obj/item/weapon/storage/bag/tray{pixel_y = 3},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoy" = (/obj/structure/table/wood,/obj/item/weapon/storage/photo_album,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoz" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoA" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoB" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoC" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoD" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoE" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"aoG" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) +"aoH" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/briefcase,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"aoJ" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Port Engineering Hallway"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"aoK" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Northwest";dir = 5;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"aoL" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Northeast";dir = 8;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"aoM" = (/obj/structure/filingcabinet,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoN" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Southwest";dir = 4;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"aoO" = (/obj/item/weapon/crowbar,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/port_engineering) +"aoP" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoQ" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"aoR" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"aoS" = (/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoT" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Detective's Office";pixel_x = 0;pixel_y = 30},/obj/machinery/camera{c_tag = "Detective's Office"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoU" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aoV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aoW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"aoX" = (/obj/structure/rack,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/dufflebag/sec,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aoY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint) +"aoZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/turf/open/floor/plating,/area/maintenance/fpmaint) +"apa" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/bar,/area/security/brig) +"apb" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) +"apc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) +"apd" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/bar,/area/security/brig) +"ape" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/bar,/area/security/brig) +"apf" = (/turf/open/floor/plasteel,/area/security/brig) +"apg" = (/obj/structure/table,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/plasteel/bar,/area/security/brig) +"aph" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/security/brig) +"api" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"apj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"apk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/secelectrical) +"apl" = (/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"apm" = (/obj/structure/closet/cardboard,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"apn" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"apo" = (/obj/structure/chair{dir = 1},/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"app" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"apq" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Detective"},/turf/open/floor/carpet,/area/security/detectives_office) +"apr" = (/obj/machinery/button/door{id = "detshutters";name = "Privacy Shutters";pixel_x = 24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aps" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"apt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/brig) +"apu" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Lobby"},/turf/open/floor/plasteel/bar,/area/security/brig) +"apv" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) +"apw" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/outpost) +"apx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"apy" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"apz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"apA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"apB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/entry) +"apC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) +"apD" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"apE" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"apF" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"apG" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"apH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Lobby"},/turf/open/floor/plasteel/bar,/area/security/brig) +"apI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"apJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) +"apK" = (/obj/machinery/door/airlock/engineering{name = "Security Electrical Maintenance";req_access_txt = "11"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/secelectrical) +"apL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"apM" = (/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"},/turf/open/floor/plating,/area/maintenance/secelectrical) +"apN" = (/obj/machinery/power/apc{dir = 4;name = "Security Electrical Maintenance APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"apO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"apP" = (/turf/closed/wall,/area/maintenance/secelectrical) +"apQ" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"apR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"apS" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"apT" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) +"apU" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"apV" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"apW" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/adamantine,/turf/open/floor/plating,/area/maintenance/fpmaint) +"apX" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/plating,/area/maintenance/fpmaint) +"apY" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"apZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqa" = (/obj/structure/chair,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "4"},/turf/open/floor/plating,/area/security/detectives_office) +"aqc" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wirecutters,/obj/effect/decal/cleanable/blood/drip,/obj/effect/decal/cleanable/blood/drip,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqe" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqf" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aqg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"aqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/hallway/secondary/entry) +"aqi" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"aqj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqk" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"aql" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{on = 0;pixel_x = -3;pixel_y = 8},/obj/item/clothing/glasses/sunglasses,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aqm" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aqn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "detshutters"},/turf/open/floor/plating,/area/security/detectives_office) +"aqo" = (/turf/closed/wall/r_wall,/area/security/brig) +"aqp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqr" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqu" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqx" = (/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqy" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aqA" = (/obj/machinery/chem_dispenser,/turf/open/floor/wood,/area/maintenance/incinerator) +"aqB" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = 25;req_access_txt = "11"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/port_engineering) +"aqC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqD" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"aqE" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Northeast"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aqG" = (/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/secelectrical) +"aqH" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/rods{amount = 50},/turf/open/floor/plating,/area/maintenance/secelectrical) +"aqI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/item/clothing/glasses/sunglasses,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aqJ" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aqK" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqL" = (/obj/structure/chair/wood/normal{dir = 1},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqM" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqN" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqQ" = (/obj/effect/decal/cleanable/blood/tracks{dir = 6;icon_state = "tracks";tag = "icon-tracks (SOUTHWEST)"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aqR" = (/obj/machinery/power/apc{cell_type = 2500;dir = 4;name = "Detective's Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) +"aqS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqU" = (/obj/structure/table/wood,/obj/item/clothing/mask/cigarette/cigar,/obj/item/clothing/mask/cigarette/cigar,/obj/item/weapon/storage/box/matches,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/detectives_office) +"aqW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aqX" = (/obj/structure/chair{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aqY" = (/obj/machinery/door/airlock/security{name = "Detective";req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aqZ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ara" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA";location = "Security"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"arb" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) +"arc" = (/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/space) +"ard" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"are" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"arf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"arg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"arh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"ari" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"ark" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arl" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aro" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) +"arp" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/secelectrical) +"arq" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/secelectrical) +"arr" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) +"ars" = (/obj/structure/table,/obj/item/clothing/head/hardhat,/turf/open/floor/plating,/area/maintenance/fsmaint) +"art" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aru" = (/obj/structure/closet/cardboard,/obj/item/clothing/suit/jacket/miljacket,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) +"arv" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"arw" = (/obj/structure/table,/obj/item/stack/ducttape,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fpmaint) +"arx" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/gold,/obj/item/stack/spacecash/c100,/obj/item/stack/spacecash/c50,/turf/open/floor/plating,/area/maintenance/fpmaint) +"ary" = (/obj/structure/table/wood,/obj/item/weapon/baseballbat/metal,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/restraints/handcuffs/cable/zipties,/turf/open/floor/plating,/area/maintenance/fpmaint) +"arz" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arB" = (/obj/machinery/camera{c_tag = "Detective's Office Backroom";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) +"arD" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "detshutters"},/turf/open/floor/plating,/area/security/detectives_office) +"arG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) +"arH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) +"arI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"arJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) +"arK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Fore Primary Hallway North";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/cola,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arN" = (/obj/structure/grille,/obj/structure/grille,/turf/open/space,/area/space) +"arO" = (/obj/docking_port/stationary/random{id = "asteroid_pod1"},/turf/open/space,/area/space) +"arP" = (/obj/docking_port/stationary/random{id = "asteroid_pod2"},/turf/open/space,/area/space) +"arQ" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/labor) +"arR" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor) +"arS" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/labor) +"arT" = (/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/engine/port_engineering) +"arU" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Southeast";dir = 9;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"arV" = (/obj/structure/table,/obj/item/device/assembly/flash,/obj/item/weapon/crowbar,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "Red Arrivals Shutters";name = "Items To Declare Shutters";normaldoorcontrol = 0;pixel_x = 22;pixel_y = -10},/obj/machinery/firealarm{dir = 4;pixel_x = 26;pixel_y = 6},/turf/open/floor/plasteel,/area/security/checkpoint2) +"arW" = (/obj/structure/table/reinforced,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/open/floor/plasteel,/area/bridge) +"arX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/coffee,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"arY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) +"arZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/fsmaint) +"asb" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) +"asc" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/iron,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"asd" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"ase" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/lawoffice) +"asf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lawshutters"},/turf/open/floor/plating,/area/lawoffice) +"asg" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ash" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/maintenance/fsmaint) +"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ask" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Dormitory APC";pixel_y = -24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep) +"aso" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asq" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"asr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ass" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_1) +"ast" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1) +"asu" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_1) +"asv" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_2) +"asw" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2) +"asx" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_2) +"asy" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/labor) +"asz" = (/obj/machinery/ai_status_display{pixel_x = 32;pixel_y = 0},/obj/structure/table,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"asA" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 18},/obj/item/stack/cable_coil,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) +"asB" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/storage/tech) +"asC" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint) +"asD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"asE" = (/obj/structure/closet/crate,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/atmos) +"asF" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plating,/area/engine/port_engineering) +"asG" = (/obj/structure/table,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/engine/engineering) +"asH" = (/turf/open/floor/plasteel,/area/security/processing) +"asI" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment{pixel_x = -3;pixel_y = -2},/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/engine/port_engineering) +"asJ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"asK" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"asL" = (/obj/structure/sign/atmosplaque{pixel_x = 0;pixel_y = -32},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/atmos) +"asM" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/lawoffice) +"asN" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1359;name = "Security intercom";pixel_y = 25;prison_radio = 1},/obj/item/device/paicard,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/lawoffice) +"asO" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/clothing/glasses/red,/obj/item/clothing/glasses/orange,/obj/item/clothing/glasses/gglasses,/turf/open/floor/wood,/area/lawoffice) +"asP" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/wood,/area/lawoffice) +"asQ" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/wood,/area/lawoffice) +"asR" = (/obj/structure/closet/lawcloset,/turf/open/floor/carpet,/area/lawoffice) +"asS" = (/turf/open/floor/carpet,/area/lawoffice) +"asT" = (/obj/structure/rack,/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase,/turf/open/floor/carpet,/area/lawoffice) +"asU" = (/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) +"asV" = (/obj/machinery/button/door{id = "lawshutters";name = "Privacy Shutters";pixel_y = 24},/turf/open/floor/wood,/area/lawoffice) +"asW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"asX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"asY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep) +"asZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/sleep) +"ata" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) +"atb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"atc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"atd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ate" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Pool APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/crew_quarters/pool) +"atf" = (/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/open/floor/plating,/area/maintenance/fpmaint2) +"atg" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ath" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/pod_1) +"ati" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -30;pixel_y = 0;possible_destinations = "asteroid_pod1";shuttleId = "pod1"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) +"atj" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/pod_2) +"atk" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -30;pixel_y = 0;possible_destinations = "asteroid_pod2";shuttleId = "pod2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) +"atl" = (/obj/item/stack/rods,/turf/open/space,/area/space) +"atm" = (/obj/effect/landmark{name = "carpspawn"},/obj/structure/lattice,/turf/open/space,/area/space) +"atn" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) +"ato" = (/obj/structure/closet/masks,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"atp" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"atq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"atr" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"ats" = (/obj/effect/decal/cleanable/oil,/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"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"att" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"atu" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/plating,/area/maintenance/fpmaint) +"atv" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/wood,/area/lawoffice) +"atw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) +"atx" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/weapon/storage/firstaid/surgery,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"aty" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7;pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/storage/firstaid/surgery{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"atz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"atA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/lawoffice) +"atB" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/lawoffice) +"atC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/carpet,/area/lawoffice) +"atD" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/carpet,/area/lawoffice) +"atE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) +"atF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) +"atG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/lawoffice) +"atH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/lawoffice) +"atI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) +"atJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/carpet,/area/lawoffice) +"atK" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fsmaint) +"atL" = (/turf/closed/wall,/area/maintenance/commiespy) +"atM" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"atN" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -24},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) +"atO" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -24},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) +"atP" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) +"atQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/lawoffice) +"atR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/chair{dir = 8},/turf/open/floor/wood,/area/lawoffice) +"atS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/item/weapon/pen/red,/turf/open/floor/carpet,/area/lawoffice) +"atT" = (/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"atU" = (/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"atV" = (/obj/machinery/camera{c_tag = "Pool North"},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"atW" = (/obj/structure/closet,/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"atX" = (/obj/machinery/power/apc{dir = 4;name = "Law Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/lawoffice) +"atY" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/red,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/wood,/area/lawoffice) +"atZ" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/obj/item/device/taperecorder,/turf/open/floor/wood,/area/lawoffice) +"aua" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/wood,/area/lawoffice) +"aub" = (/obj/structure/closet/crate,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/turf/open/floor/wood,/area/lawoffice) +"auc" = (/obj/structure/closet,/obj/item/clothing/suit/jacket,/obj/item/clothing/suit/jacket/miljacket,/obj/item/clothing/under/griffin,/obj/item/clothing/head/griffin,/obj/item/clothing/shoes/griffin,/obj/item/clothing/suit/toggle/owlwings/griffinwings,/obj/item/clothing/under/owl,/obj/item/clothing/mask/gas/owl_mask,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/owl,/obj/item/clothing/mask/pig,/obj/item/clothing/head/chicken,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/shoes/jackboots,/turf/open/floor/wood,/area/lawoffice) +"aud" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/carpet,/area/lawoffice) +"aue" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/item/weapon/pen/blue,/obj/machinery/camera{c_tag = "Law Office";dir = 1},/turf/open/floor/carpet,/area/lawoffice) +"auf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/med_data,/turf/open/floor/carpet,/area/lawoffice) +"aug" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/lawoffice) +"auh" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/lawoffice) +"aui" = (/obj/machinery/light,/turf/open/floor/wood,/area/lawoffice) +"auj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (WEST)";icon_state = "yellowcornersiding";dir = 8},/area/crew_quarters/pool) +"auk" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aul" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aum" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/pool) +"aun" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"auo" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/pool) +"aup" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"auq" = (/obj/machinery/gateway{dir = 1},/turf/open/floor/engine,/area/gateway) +"aur" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) +"aus" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1351;name = "Science intercom";pixel_y = 25;prison_radio = 1},/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1347;name = "Supply intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1355;name = "Medical intercom";pixel_x = -27;pixel_y = 25;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"aut" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1353;name = "Command intercom";pixel_y = 25;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"auu" = (/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1359;name = "Security intercom";pixel_y = 25;prison_radio = 1},/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"auv" = (/obj/machinery/power/apc{dir = 1;name = "Stronk Russian APC";pixel_y = 24},/obj/structure/rack,/obj/item/clothing/head/ushanka,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/under/soviet,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"auw" = (/turf/closed/wall,/area/hallway/secondary/entry) +"aux" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_1) +"auy" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1";name = "escape pod 1"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) +"auz" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_1) +"auA" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_2) +"auB" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2";name = "escape pod 2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) +"auC" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_2) +"auD" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/arrival) +"auE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival) +"auF" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/arrival) +"auG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarport) +"auH" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"auI" = (/turf/closed/wall,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"auJ" = (/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (NORTH)";icon_state = "yellowcornersiding";dir = 1},/area/crew_quarters/pool) +"auK" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"auL" = (/obj/machinery/power/apc{dir = 4;name = "Garden APC";pixel_x = 27;pixel_y = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) +"auM" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway) +"auN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"auO" = (/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"auP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"auQ" = (/turf/closed/wall/r_wall,/area/security/processing) +"auR" = (/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance";req_access_txt = list(27,12)},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"auS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hallway/secondary/entry) +"auT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hallway/secondary/entry) +"auU" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"auV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/brig) +"auW" = (/obj/machinery/gateway,/turf/open/floor/engine,/area/gateway) +"auX" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway South";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) +"auY" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"auZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"ava" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/o2,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avb" = (/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avc" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avd" = (/turf/closed/wall,/area/lawoffice) +"ave" = (/turf/closed/wall,/area/maintenance/fsmaint2) +"avf" = (/obj/structure/falsewall,/turf/open/floor/plating/airless,/area/maintenance/fsmaint2) +"avg" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1447;name = "AI Private intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/machinery/light/small{dir = 8},/obj/item/weapon/storage/photo_album,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avh" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avi" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/bed,/obj/item/weapon/bedsheet/syndie,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"avl" = (/obj/machinery/door/airlock/external{name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"avm" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"avn" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"avo" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"avp" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"avq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"avr" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"avs" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"avt" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"avu" = (/obj/machinery/door/window/southright{name = "Gateway Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/gateway) +"avv" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"avw" = (/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"avx" = (/obj/machinery/computer/slot_machine{balance = 15;money = 500},/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/iron,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"avy" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"avz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avD" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"avG" = (/obj/machinery/power/apc{dir = 2;name = "Chapel Office APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/office) +"avH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/sleeper{dir = 4;icon_state = "sleeper-open"},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/camera{c_tag = "Arrivals Infirmary";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) +"avM" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) +"avN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"avO" = (/obj/machinery/camera{c_tag = "Garden";dir = 8;network = list("SS13")},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"avP" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2;pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"avQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/storage/primary) +"avR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"avS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) +"avT" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"avU" = (/obj/machinery/door/airlock/external{name = "Airlock";req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"avV" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1357;name = "Engineering intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avW" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/clothing/tie/stethoscope,/obj/item/device/camera,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer{desc = "These possibly cant be even letters, blyat!";name = "Russian computer"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"avY" = (/turf/open/floor/plating,/area/maintenance/fsmaint2) +"avZ" = (/obj/structure/falsewall,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"awa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"awb" = (/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"awc" = (/obj/item/trash/candy,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"awd" = (/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"awe" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/shotgun/toy,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"awf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1";dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) +"awg" = (/turf/open/floor/plating,/area/hallway/secondary/entry) +"awh" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry) +"awi" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2";dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) +"awj" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/arrival) +"awk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"awl" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awm" = (/turf/open/floor/wood{tag = "icon-wood-broken";icon_state = "wood-broken"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awn" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awp" = (/obj/effect/decal/cleanable/flour,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awq" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"awr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aws" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/primary) +"awt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"awu" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"awv" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aww" = (/obj/effect/landmark/start{name = "Mime"},/turf/open/floor/plasteel/black,/area/mime) +"awx" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";layer = 3},/obj/structure/showcase/mimestatue,/turf/open/floor/plasteel/white,/area/mime) +"awy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel/white,/area/mime) +"awz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office) +"awA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"awB" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/hallway/secondary/entry) +"awC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Infirmary"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/secondary/entry) +"awD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Infirmary"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/secondary/entry) +"awE" = (/obj/structure/bodycontainer/crematorium,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"awF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint2) +"awG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"awH" = (/obj/machinery/door/poddoor/shutters{id = "gateway_shutters";name = "Gateway Entry"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"awI" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium";dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"awJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) +"awK" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"awL" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"awM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"awN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"awO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"awP" = (/obj/machinery/door/window/northright{base_state = "right";dir = 8;icon_state = "right";name = "Library Desk Door";req_access_txt = "37"},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/library) +"awQ" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"awR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/tools) +"awS" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/wood,/area/library) +"awT" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light,/obj/item/device/multitool,/turf/open/floor/plasteel,/area/storage/tools) +"awU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"awV" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/structure/plasticflaps{opacity = 0},/turf/open/floor/plating,/area/quartermaster/office) +"awW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) +"awX" = (/obj/structure/dresser,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"awY" = (/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fsmaint2) +"awZ" = (/obj/item/weapon/garrote,/obj/effect/decal/cleanable/blood,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"axa" = (/obj/machinery/vending/sustenance,/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"axb" = (/obj/machinery/computer/crew,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"axc" = (/obj/item/weapon/gun/projectile/automatic/toy/pistol,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"axd" = (/obj/item/ammo_casing/caseless/foam_dart,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"axe" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/gun/projectile/shotgun/toy/crossbow,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"axf" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry) +"axg" = (/obj/item/weapon/poster/legit,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"axh" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"axi" = (/obj/item/weapon/poster/legit,/turf/closed/wall,/area/hallway/secondary/entry) +"axj" = (/turf/closed/wall/shuttle{blocks_air = 6;dir = 1;icon_state = "swall13"},/area/shuttle/arrival) +"axk" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/arrival) +"axl" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"axm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"axn" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) +"axo" = (/obj/machinery/power/solar_control{id = "auxsolareast";name = "Fore Port Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"axp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"axq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"axr" = (/turf/closed/wall,/area/maintenance/fpmaint2) +"axs" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axt" = (/obj/structure/table/wood,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axu" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axw" = (/obj/structure/table/wood,/obj/item/clothing/mask/bandana/red,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axx" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"axy" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/library) +"axz" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"axA" = (/obj/item/weapon/cigbutt/cigarbutt,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"axB" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) +"axC" = (/obj/item/weapon/storage/box,/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel{icon_state = "arrival";dir = 1},/area/quartermaster/office) +"axD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axE" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"axF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"axG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) +"axJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axK" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) +"axO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"axP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) +"axQ" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse";name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/quartermaster/storage) +"axR" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) +"axS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"axT" = (/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/medical) +"axU" = (/obj/machinery/camera{c_tag = "Robotics Lab";dir = 2;network = list("SS13","RD")},/obj/machinery/button/door{dir = 2;id = "robotics";name = "Shutters Control Button";pixel_x = 6;pixel_y = 24;req_access_txt = "29"},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteredcorner"},/area/assembly/robotics) +"axV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"axW" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) +"axX" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axY" = (/obj/machinery/camera{c_tag = "Medbay Morgue";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"axZ" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency) +"aya" = (/turf/open/floor/wood,/area/lawoffice) +"ayb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency) +"ayc" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency) +"ayd" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency) +"aye" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/lawoffice) +"ayf" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"ayg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"ayh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"ayi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"ayj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"ayk" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/turf/open/floor/wood,/area/maintenance/fsmaint2) +"ayl" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aym" = (/turf/open/floor/wood,/area/maintenance/fsmaint2) +"ayn" = (/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"ayo" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"ayp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"ayq" = (/obj/machinery/computer/security,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"ayr" = (/obj/item/ammo_casing/caseless/foam_dart,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fsmaint2) +"ays" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/ammo_box/foambox,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"ayt" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"ayu" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) +"ayv" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayw" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayx" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"ayB" = (/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/hallway/secondary/entry) +"ayC" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"ayD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"ayE" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) +"ayF" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/hallway/secondary/entry) +"ayG" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"ayH" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"ayI" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"ayJ" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"ayK" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"ayL" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"ayM" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"ayN" = (/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"ayO" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/assembly/chargebay) +"ayP" = (/turf/open/floor/plating,/area/maintenance/fpmaint2) +"ayQ" = (/obj/structure/chair{dir = 1},/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/obj/item/trash/plate,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"ayR" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/labor) +"ayS" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/labor) +"ayT" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/labor) +"ayU" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"ayV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab";req_access_txt = "29"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"ayW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"ayX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"ayY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/office) +"ayZ" = (/obj/machinery/power/apc{dir = 8;name = "Medbay Security APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/medical) +"aza" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office";req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) +"azb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral) +"azc" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/medical) +"azd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) +"aze" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/assembly/robotics) +"azf" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/assembly/robotics) +"azg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"azh" = (/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/ai_monitored/nuke_storage) +"azi" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"azj" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fsmaint) +"azk" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/ai_monitored/nuke_storage) +"azl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"azm" = (/turf/open/floor/wood{tag = "icon-wood-broken";icon_state = "wood-broken"},/area/maintenance/fsmaint2) +"azn" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/fsmaint2) +"azo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) +"azp" = (/obj/item/ammo_box/foambox,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"azq" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fsmaint2) +"azr" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) +"azs" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"azt" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"azu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"azv" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"azw" = (/obj/machinery/door/airlock/external{id_tag = null;name = "Port Docking Bay 2";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/hallway/secondary/entry) +"azx" = (/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/hallway/secondary/entry) +"azy" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/stationary{dwidth = 5;height = 7;id = "arrival_home";name = "port bay 1";width = 15},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"azz" = (/obj/structure/chair{dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"azA" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"azB" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Fore Port Solar APC";pixel_x = -25;pixel_y = 3},/obj/machinery/camera{c_tag = "Fore Port Solar Control";dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"azC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"azD" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarport) +"azE" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{tag = "icon-manifold (WEST)";icon_state = "manifold";dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"azF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"azG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/mineral_door/wood,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azH" = (/obj/item/trash/sosjerky,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azL" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/supply) +"azM" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"azN" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azO" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"azP" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"azQ" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) +"azR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) +"azS" = (/obj/machinery/light_switch{pixel_x = 8;pixel_y = 28},/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 28;req_access_txt = "47"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) +"azT" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/light{dir = 4},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/supply) +"azU" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIW";location = "QM"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"azV" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"azW" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH";location = "AIW"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"azX" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"azY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply) +"azZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAa" = (/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) +"aAb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAc" = (/mob/living/simple_animal/bot/cleanbot{desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere.";name = "\improper Dumpy";on = 0},/turf/open/floor/plasteel,/area/janitor) +"aAd" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAe" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAf" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aAi" = (/obj/machinery/door/airlock/maintenance{name = "Maint Bar Access";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/aft) +"aAj" = (/turf/open/floor/plasteel{dir = 9;icon_state = "caution"},/area/engine/break_room) +"aAk" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/engine/break_room) +"aAl" = (/turf/open/floor/plasteel{dir = 1;icon_state = "caution"},/area/engine/break_room) +"aAm" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -6;req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/engineering) +"aAn" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aAo" = (/turf/closed/wall,/area/security/checkpoint/engineering) +"aAp" = (/obj/machinery/camera{c_tag = "Engineering Checkpoint";dir = 8;network = list("perma")},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/engineering) +"aAq" = (/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"aAr" = (/obj/machinery/the_singularitygen,/turf/open/floor/plating/airless,/area/space) +"aAs" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/space) +"aAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aAu" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aAv" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aAw" = (/obj/structure/mirror{pixel_x = -28},/obj/structure/table/wood,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aAx" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aAy" = (/obj/structure/closet/wardrobe/yellow,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aAz" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/closed/wall,/area/maintenance/fsmaint2) +"aAA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aAB" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aAC" = (/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/fsmaint2) +"aAD" = (/obj/structure/table,/obj/item/weapon/gun/projectile/automatic/toy/pistol,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aAE" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aAF" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) +"aAG" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"aAH" = (/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"aAI" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod Hallway";dir = 1},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"aAJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"aAK" = (/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"aAL" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/entry) +"aAM" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aAN" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"aAO" = (/obj/machinery/door/airlock/engineering{icon_state = "door_closed";locked = 0;name = "Fore Port Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) +"aAP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) +"aAQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aAR" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aAS" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aAT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aAU" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aAV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/under/rank/bartender,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aAW" = (/turf/closed/wall,/area/maintenance/fpmaint) +"aAX" = (/obj/machinery/poolcontroller,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) +"aBl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) +"aBz" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) +"aBA" = (/obj/machinery/power/solar_control{id = "auxsolareast";name = "Fore Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aBB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aBC" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/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 = 32},/obj/item/device/multitool,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aBD" = (/obj/structure/mirror{pixel_x = -28},/obj/structure/table/wood,/obj/structure/table/wood,/obj/item/clothing/mask/cigarette/pipe,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aBE" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aBF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/maintenance/fsmaint2) +"aBG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aBH" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aBI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aBJ" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/hallway/secondary/entry) +"aBK" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aBL" = (/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aBM" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/hallway/secondary/entry) +"aBN" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) +"aBO" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aBP" = (/obj/machinery/camera{c_tag = "Fore Port Solar Access"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aBQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aBR" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHEAST)";icon_state = "intact";dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aBS" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aBT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aBU" = (/obj/machinery/vending/snack,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aBV" = (/mob/living/simple_animal/mouse/white,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aBW" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aBX" = (/obj/structure/table/wood/poker,/obj/item/stack/tile/wood{amount = 25},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aBY" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aBZ" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCa" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCb" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCc" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/monkey_recycler,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aCr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/lawoffice) +"aCt" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aCu" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aCv" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aCw" = (/turf/open/floor/wood{tag = "icon-wood-broken5";icon_state = "wood-broken5"},/area/maintenance/fsmaint2) +"aCx" = (/obj/machinery/light/small,/turf/open/floor/wood,/area/maintenance/fsmaint2) +"aCy" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fsmaint2) +"aCz" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aCA" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aCB" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aCD" = (/obj/structure/closet,/obj/item/ammo_box/foambox,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aCE" = (/obj/structure/lattice,/obj/structure/lattice/catwalk,/turf/open/space,/area/space) +"aCF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aCG" = (/obj/structure/closet/wardrobe/blue,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aCH" = (/obj/effect/landmark{name = "Observer-Start"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aCI" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aCJ" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aCK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCL" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCQ" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCR" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCS" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCT" = (/obj/structure/table/wood/poker,/obj/machinery/light/small,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCV" = (/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aCX" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aCY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aDc" = (/turf/closed/wall,/area/security/detectives_office) +"aDd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) +"aDe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aDf" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aDh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) +"aDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDt" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDu" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aDv" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Fore Starboard Solar APC";pixel_x = -25;pixel_y = 3},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aDw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aDx" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aDy" = (/turf/closed/wall/r_wall,/area/maintenance/fsmaint2) +"aDz" = (/obj/structure/barricade/wooden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aDA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/maintenance/fsmaint2) +"aDB" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/closed/wall,/area/maintenance/fsmaint2) +"aDC" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aDD" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aDE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/camera{c_tag = "Arrivals Shuttle West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aDF" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aDG" = (/obj/structure/closet/wardrobe/pink,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aDH" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aDI" = (/obj/machinery/camera{c_tag = "Arrivals Shuttle East";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aDJ" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aDK" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aDL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aDM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aDN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aDO" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aDP" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aDQ" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aDR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aDS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aDT" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aDU" = (/turf/open/floor/plating,/area/maintenance/fpmaint) +"aDV" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aDW" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aEd" = (/obj/structure/table/wood,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aEg" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aEk" = (/obj/machinery/door/airlock/glass_security{name = "Detective";req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aEl" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) +"aEm" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aEn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) +"aEz" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aEA" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aEB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/pool) +"aEC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/pool) +"aED" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aEE" = (/obj/structure/grille,/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aEF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aEG" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/engineering{icon_state = "door_closed";locked = 0;name = "Fore Starboard Solar Access";req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) +"aEI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) +"aEJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEK" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEL" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEM" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEN" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEO" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEP" = (/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/coin/gold,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aEQ" = (/obj/machinery/computer/slot_machine{balance = 15;money = 500},/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aER" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aES" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/hallway/secondary/entry) +"aET" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) +"aEU" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aEV" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) +"aEW" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) +"aEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) +"aEY" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aEZ" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aFa" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFb" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFc" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHWEST)";icon_state = "intact";dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFd" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFe" = (/obj/machinery/power/apc{dir = 1;name = "Arrivals North Maintenance APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFf" = (/obj/machinery/monkey_recycler,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aFg" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aFh" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aFs" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/bodybags,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aFt" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aFA" = (/turf/open/floor/carpet,/area/security/detectives_office) +"aFD" = (/turf/closed/wall,/area/crew_quarters/sleep) +"aFE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) +"aFF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/sleep) +"aFG" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep) +"aFH" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep) +"aFI" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aFJ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aFK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/crew_quarters/sleep) +"aFL" = (/turf/closed/wall,/area/crew_quarters/pool) +"aFM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/pool) +"aFN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/pool) +"aFP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/pool) +"aFQ" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"aFR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aFS" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFT" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8;name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFU" = (/obj/machinery/power/apc{dir = 1;name = "Bar Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFW" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Access"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFX" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFY" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aFZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aGa" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aGb" = (/obj/structure/closet,/obj/item/weapon/coin/iron,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aGc" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aGd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aGe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aGf" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/turf/closed/wall,/area/maintenance/fpmaint2) +"aGg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) +"aGh" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGj" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGk" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fpmaint2) +"aGm" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGn" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGo" = (/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) +"aGq" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aGr" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) +"aGs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) +"aGt" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1},/turf/closed/wall,/area/maintenance/fpmaint2) +"aGu" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/closed/wall,/area/maintenance/fpmaint) +"aGw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aGz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aGA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) +"aGH" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aGI" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aGJ" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aGK" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm4";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aGL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep) +"aGM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 9},/area/crew_quarters/sleep) +"aGN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 5},/area/crew_quarters/sleep) +"aGO" = (/turf/open/floor/wood,/area/crew_quarters/sleep) +"aGP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aGQ" = (/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aGR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aGS" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/pool) +"aGT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"aGU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"aGV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"aGW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) +"aHb" = (/obj/structure/closet,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/crew_quarters/pool) +"aHc" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHe" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHf" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHg" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHh" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHi" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aHj" = (/turf/closed/wall,/area/maintenance/electrical) +"aHk" = (/turf/closed/wall,/area/space) +"aHl" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/space) +"aHm" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fpmaint2) +"aHr" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHs" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHt" = (/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aHu" = (/obj/machinery/atmospherics/pipe/simple,/turf/closed/wall,/area/maintenance/fpmaint2) +"aHv" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/fpmaint2) +"aHw" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/device/flashlight{luminosity = 0;on = 1;pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aHx" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/device/flashlight{luminosity = 0;on = 1;pixel_x = 1;pixel_y = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aHy" = (/obj/structure/chair/withwheels/wheelchair{dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) +"aHz" = (/obj/structure/closet/crate,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aHA" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aHB" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aHC" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aHE" = (/obj/structure/closet/secure_closet/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aHN" = (/obj/machinery/power/apc{dir = 8;name = "Fore Primary Hallway APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) +"aHO" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aHP" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aHQ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aHR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aHS" = (/obj/machinery/door/airlock{id_tag = "Dorm4";name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aHT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) +"aHV" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aHW" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm5";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/toy/carpplushie,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aHX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "Dorm6";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 8;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/structure/bed,/obj/item/weapon/bedsheet/red,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aHY" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/hypospray/medipen,/obj/item/weapon/reagent_containers/hypospray/medipen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) +"aHZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding";icon_state = "yellowcornersiding"},/area/crew_quarters/pool) +"aIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) +"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) +"aIe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) +"aIf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/crew_quarters/pool) +"aIg" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aIh" = (/obj/structure/table,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/shard{icon_state = "small"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aIi" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aIj" = (/obj/machinery/button/door{id = "maint3";name = "Blast Door Control C";pixel_x = 0;pixel_y = 24;req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aIk" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aIl" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aIm" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10;layer = 2.9},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aIn" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/maintenance/electrical) +"aIo" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) +"aIp" = (/turf/open/floor/plasteel/recharge_floor,/area/maintenance/electrical) +"aIq" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/maintenance/electrical) +"aIr" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi';icon_state = "dark"},/area/shuttle/arrival) +"aIs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) +"aIu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) +"aIv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) +"aIx" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/space) +"aIy" = (/turf/open/floor/plating/airless,/area/space) +"aIz" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/space) +"aIA" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIB" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIC" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aID" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIE" = (/obj/machinery/atmospherics/pipe/simple,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aIF" = (/obj/machinery/button/door{id = "hobodorm1";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/mob/living/simple_animal/mouse/white,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aIG" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aIH" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) +"aII" = (/obj/machinery/button/door{id = "hobodorm2";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel{tag = "icon-damaged2";icon_state = "damaged2"},/area/maintenance/fpmaint) +"aIJ" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aIK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aIN" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway";dir = 4;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) +"aIP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"aIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) +"aIS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aIT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) +"aIU" = (/obj/machinery/door/airlock{id_tag = "Dorm5";name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aIV" = (/obj/machinery/door/airlock{id_tag = "Dorm6";name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) +"aIW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) +"aIX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) +"aIY" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/turf/simulated/pool/water,/area/crew_quarters/pool) +"aIZ" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/machinery/poolfilter{pixel_y = 11},/turf/simulated/pool/water,/area/crew_quarters/pool) +"aJb" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) +"aJc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aJd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aJe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aJf" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aJg" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJh" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJi" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJm" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aJn" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aJo" = (/turf/open/floor/plating,/area/maintenance/electrical) +"aJp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aJq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aJr" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aJs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"aJt" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/arrival) +"aJu" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi';icon_state = "dark"},/area/shuttle/arrival) +"aJv" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/arrival) +"aJx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) +"aJy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) +"aJA" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJB" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJC" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/circuitboard/computer/operating,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJD" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/chair,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJF" = (/obj/item/weapon/airlock_painter,/obj/structure/lattice,/obj/structure/closet,/turf/open/space,/area/space) +"aJG" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJI" = (/obj/machinery/door/airlock/maintenance{id_tag = "hobodorm1";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aJJ" = (/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/fpmaint2) +"aJK" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/item/weapon/bedsheet/brown,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) +"aJL" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel,/area/maintenance/fpmaint) +"aJM" = (/turf/open/floor/plasteel{tag = "icon-damaged4";icon_state = "damaged4"},/area/maintenance/fpmaint) +"aJN" = (/obj/machinery/door/airlock/maintenance{id_tag = "hobodorm2";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJO" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aJV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aJX" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aJY" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/crew_quarters/sleep) +"aKa" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKb" = (/obj/machinery/requests_console{department = "Crew Quarters";pixel_y = 30},/obj/machinery/camera{c_tag = "Dormitory North"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKe" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKf" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKg" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) +"aKh" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep) +"aKi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) +"aKj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) +"aKk" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/toy/poolnoodle/blue,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aKl" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aKm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aKn" = (/obj/machinery/computer/holodeck,/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aKo" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aKp" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aKq" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aKr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall,/area/maintenance/electrical) +"aKs" = (/obj/machinery/power/apc{dir = 1;name = "Electrical Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) +"aKt" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/electrical) +"aKu" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aKv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aKw" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aKx" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKy" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/weapon/surgical_drapes,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKz" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/space) +"aKA" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKB" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKC" = (/obj/machinery/light/small{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) +"aKE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) +"aKF" = (/obj/machinery/atmospherics/pipe/manifold,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/closed/wall,/area/maintenance/fpmaint2) +"aKK" = (/obj/machinery/atmospherics/pipe/manifold,/turf/closed/wall,/area/maintenance/fpmaint2) +"aKL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint) +"aKM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/closed/wall,/area/maintenance/fpmaint) +"aKN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aKP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aKQ" = (/obj/machinery/power/apc{dir = 1;name = "EVA Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aKR" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aKS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aKT" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aKU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aKV" = (/turf/closed/wall,/area/ai_monitored/storage/eva) +"aKW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aKX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aKY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aKZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aLa" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"aLb" = (/obj/machinery/door/airlock{id_tag = "Dorm3";name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLc" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLe" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLf" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLg" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLh" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLi" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aLl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) +"aLm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) +"aLn" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/structure/pool/ladder,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aLo" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/machinery/drain,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aLp" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/structure/pool/Lboard,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aLr" = (/obj/structure/table,/obj/item/weapon/paper{desc = "";info = "Brusies sustained in the holodeck can be healed simply by sleeping.";name = "Holodeck Disclaimer"},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aLs" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLt" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLu" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLw" = (/obj/machinery/button/door{id = "maint2";name = "Blast Door Control B";pixel_x = -28;pixel_y = 4;req_access_txt = "0"},/obj/machinery/button/door{id = "maint1";name = "Blast Door Control A";pixel_x = -28;pixel_y = -6;req_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLx" = (/obj/structure/janitorialcart,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLy" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLz" = (/obj/structure/table/glass,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLA" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aLC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance";req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aLD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aLE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aLF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aLG" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plating,/area/maintenance/electrical) +"aLH" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/electrical) +"aLI" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) +"aLJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) +"aLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/hallway/secondary/entry) +"aLL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLM" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Shuttle South-West";network = list("SS13","Prison")},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLP" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLQ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1;name = "Arrivals North APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLS" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Shuttle South-East";network = list("SS13","Prison")},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) +"aLU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{tag = "icon-warningcorner (EAST)";icon_state = "warningcorner";dir = 4},/area/hallway/secondary/entry) +"aLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Arrivals North";dir = 8;network = list("SS13")},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) +"aLW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aLY" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aLZ" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMa" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/maintenance/fpmaint2) +"aMc" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aMn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aMq" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aMr" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aMs" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor";name = "motion-sensitive security camera"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMu" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/item/clothing/head/welding,/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMv" = (/obj/machinery/power/apc{dir = 1;name = "EVA Storage APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMw" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/device/radio/off,/obj/item/device/assembly/timer,/obj/structure/table,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMx" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMy" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/stock_parts/cell/high,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMz" = (/obj/item/device/aicard,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMA" = (/obj/machinery/light{dir = 1},/obj/structure/rack,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMC" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aMD" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) +"aME" = (/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) +"aMF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMG" = (/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMH" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMI" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMJ" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMK" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8;pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aML" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aMO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) +"aMP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) +"aMQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aMR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aMS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/pool) +"aMT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aMU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aMW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aMX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) +"aMY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) +"aMZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aNa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/electrical) +"aNb" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/electrical) +"aNc" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) +"aNd" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"aNe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aNf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aNg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aNh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aNi" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) +"aNj" = (/obj/structure/closet/wardrobe/white,/obj/item/clothing/shoes/jackboots,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNk" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNl" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNm" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNp" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNq" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNr" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aNx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/maintenance/fpmaint2) +"aNy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/maintenance/fpmaint) +"aNz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aNA" = (/turf/closed/wall/r_wall,/area/gateway) +"aNC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aND" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aNE" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aNF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aNG" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/device/multitool,/obj/item/device/assembly/signaler,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aNH" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aNI" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aNJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) +"aNK" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm2";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aNL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aNM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aNN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aNO" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/sleep) +"aNP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) +"aNQ" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/clothing/under/shorts/red,/turf/simulated/pool/water,/area/crew_quarters/pool) +"aNR" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) +"aOc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aOd" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aOe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/electrical) +"aOf" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) +"aOg" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) +"aOh" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aOi" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) +"aOj" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aOk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"aOl" = (/turf/open/floor/plasteel{dir = 2;icon_state = "greencorner"},/area/hallway/secondary/entry) +"aOm" = (/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"aOn" = (/turf/open/floor/plasteel{dir = 8;icon_state = "greencorner"},/area/hallway/secondary/entry) +"aOo" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aOp" = (/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"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aOq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/entry) +"aOr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"aOs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/secondary/entry) +"aOt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"aOu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/hallway/secondary/entry) +"aOv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/hallway/secondary/entry) +"aOw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/maintenance/fpmaint2) +"aOx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOy" = (/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aOz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aOA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/maintenance/fpmaint2) +"aOC" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOD" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOE" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOH" = (/obj/structure/bed,/obj/item/weapon/bedsheet/patriot,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aOI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aOJ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/engine,/area/gateway) +"aOK" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/engine,/area/gateway) +"aOM" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/engine,/area/gateway) +"aON" = (/turf/open/floor/engine,/area/gateway) +"aOO" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) +"aOP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance";req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOS" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage";req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/rack,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aOY" = (/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) +"aOZ" = (/obj/machinery/door/airlock{id_tag = "Dorm2";name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aPa" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 2},/area/crew_quarters/sleep) +"aPb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/closet/boxinggloves,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) +"aPe" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) +"aPf" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/toilet) +"aPg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/toilet) +"aPh" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/toilet) +"aPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (EAST)";icon_state = "yellowcornersiding";dir = 4},/area/crew_quarters/pool) +"aPj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) +"aPk" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) +"aPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) +"aPp" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) +"aPr" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPs" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPt" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPu" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPv" = (/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPx" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aPy" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) +"aPz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall,/area/maintenance/electrical) +"aPA" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/electrical) +"aPB" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) +"aPC" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/space) +"aPD" = (/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/entry) +"aPE" = (/obj/structure/table,/turf/open/floor/plasteel,/area/security/checkpoint2) +"aPF" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/security/checkpoint2) +"aPG" = (/turf/open/floor/plasteel,/area/security/checkpoint2) +"aPH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aPI" = (/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint2) +"aPJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/hallway/secondary/entry) +"aPK" = (/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"aPL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPQ" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPR" = (/obj/machinery/light{dir = 1},/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPT" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPU" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPV" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aPW" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPX" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aPY" = (/obj/machinery/power/apc{dir = 2;name = "Primary Tool Storage APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/primary) +"aPZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aQa" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aQb" = (/obj/structure/bed/dogbed,/obj/item/weapon/reagent_containers/food/drinks/flask/det{desc = "A Space Veteran's only friend.";name = "space veteran's flask"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aQc" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/engine,/area/gateway) +"aQe" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/engine,/area/gateway) +"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/power/apc{dir = 8;name = "Gateway APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/gateway) +"aQg" = (/obj/machinery/camera{c_tag = "EVA Maintenance";dir = 8;network = list("SS13")},/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aQh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aQi" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aQj" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aQo" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aQp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/rack,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aQs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"aQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) +"aQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aQv" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) +"aQw" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aQx" = (/turf/closed/wall,/area/crew_quarters/toilet) +"aQy" = (/obj/machinery/door/airlock{name = "Unisex Showers";req_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aQz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/crew_quarters/pool) +"aQA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/structure/table/glass,/obj/item/clothing/under/shorts/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQB" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQD" = (/obj/machinery/camera{c_tag = "Pool South";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQH" = (/obj/structure/table/glass,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) +"aQI" = (/obj/structure/table/glass,/obj/item/stack/medical/bruise_pack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/crew_quarters/pool) +"aQJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/pool) +"aQL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aQM" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aQN" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aQP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aQR" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aQS" = (/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/security/checkpoint2) +"aQT" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/security/checkpoint2) +"aQU" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/security/checkpoint2) +"aQV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) +"aQW" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) +"aQX" = (/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint2) +"aQY" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aRd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aRe" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aRf" = (/obj/item/seeds/apple,/obj/item/seeds/banana,/obj/item/seeds/cocoapod,/obj/item/seeds/grape,/obj/item/seeds/orange,/obj/item/seeds/sugarcane,/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/structure/table/glass,/obj/item/seeds/tower,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aRg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aRh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aRi" = (/obj/machinery/door/airlock/maintenance{name = "Garden Maintenance";req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aRj" = (/turf/closed/wall,/area/storage/primary) +"aRk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/primary) +"aRn" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"aRo" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/engine,/area/gateway) +"aRq" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/engine,/area/gateway) +"aRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aRs" = (/obj/machinery/requests_console{department = "EVA";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aRt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aRu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aRv" = (/obj/item/weapon/pen{desc = "Writes upside down!";name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aRw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aRx" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aRy" = (/obj/machinery/camera{c_tag = "EVA East";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aRz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"aRA" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm1";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) +"aRB" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aRD" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aRE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aRF" = (/obj/machinery/shower{dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aRG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRI" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aRJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) +"aRK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/pool) +"aRM" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRO" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/window,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/fsmaint2) +"aRP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fsmaint2) +"aRQ" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRR" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint2) +"aRT" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRY" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aRZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"aSa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba,/obj/item/weapon/lighter,/obj/machinery/light/small{dir = 1},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 10;pixel_y = 10},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aSb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{pixel_x = -8;pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{pixel_x = 8;pixel_y = 9;pixel_z = 0},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aSc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/grille,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aSf" = (/turf/closed/wall,/area/chapel/main) +"aSg" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aSh" = (/obj/machinery/door/window{dir = 8;name = "Mass Driver";req_access_txt = "22"},/obj/machinery/mass_driver{dir = 4;id = "chapelgun"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/chapel/main) +"aSi" = (/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 = 32},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/chapel/main) +"aSj" = (/obj/machinery/door/poddoor{id = "chapelgun";name = "Chapel Launcher Door"},/turf/open/floor/plating,/area/chapel/main) +"aSm" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aSn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint2) +"aSo" = (/turf/closed/wall,/area/security/checkpoint2) +"aSp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/security/checkpoint2) +"aSq" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aSz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aSA" = (/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aSB" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aSC" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/primary) +"aSD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aSE" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/storage/primary) +"aSF" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/storage/primary) +"aSG" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8;pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage";departmentType = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/storage/primary) +"aSH" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aSI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel,/area/storage/primary) +"aSJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) +"aSK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aSL" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/storage/primary) +"aSM" = (/turf/closed/wall,/area/mime) +"aSO" = (/turf/closed/wall,/area/clown) +"aSP" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/gateway) +"aSR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/window/reinforced,/turf/open/floor/engine,/area/gateway) +"aSS" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aST" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aSU" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aSV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aSW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aSX" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage";dir = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aSY" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aSZ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aTa" = (/obj/machinery/door/airlock/glass_command{name = "Command EVA";req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aTb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"aTc" = (/obj/machinery/door/airlock/command{name = "Command EVA";req_access = null;req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aTd" = (/obj/machinery/door/airlock{id_tag = "Dorm1";name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) +"aTe" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) +"aTf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) +"aTg" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTj" = (/obj/machinery/door/airlock{name = "Unisex Showers";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTl" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aTm" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aTn" = (/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aTo" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aTp" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aTq" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance";req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre) +"aTr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j1s";sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTu" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTw" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/power/apc{dir = 2;name = "Chapel APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/chapel/main) +"aTF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"aTH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 3},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)";req_access_txt = "22"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main) +"aTL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aTM" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aTN" = (/obj/machinery/button/massdriver{id = "chapelgun";name = "Chapel Mass Driver";pixel_x = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aTO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/main) +"aTP" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/entry) +"aTQ" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) +"aTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "greencorner"},/area/hallway/secondary/entry) +"aTS" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aTT" = (/obj/structure/table/reinforced,/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "Green Arrivals";name = "Nothing To Declare Conveyor"},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aTU" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) +"aTV" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) +"aTW" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) +"aTX" = (/obj/structure/table/reinforced,/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "Red Arrivals";name = "Items To Declare Conveyor"},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aTY" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aTZ" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/secondary/entry) +"aUa" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) +"aUb" = (/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/entry) +"aUj" = (/obj/structure/table/glass,/obj/effect/spawner/lootdrop/plants{lootcount = 10;name = "10plant_spawner"},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) +"aUk" = (/obj/machinery/door/airlock{name = "Garden";req_access_txt = "0"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aUl" = (/turf/open/floor/plasteel,/area/storage/primary) +"aUm" = (/obj/machinery/camera{c_tag = "Mime Office Camera";dir = 4},/obj/structure/closet/secure_closet/mime,/turf/open/floor/plasteel/black,/area/mime) +"aUn" = (/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel/white,/area/mime) +"aUo" = (/obj/item/weapon/bedsheet/mime,/obj/structure/bed,/turf/open/floor/plasteel/black,/area/mime) +"aUp" = (/obj/machinery/camera{c_tag = "Clown Office Camera";dir = 4},/obj/structure/closet/secure_closet/clown,/turf/open/floor/plasteel/green,/area/clown) +"aUq" = (/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel/red,/area/clown) +"aUr" = (/obj/item/weapon/bedsheet/clown,/obj/structure/bed,/turf/open/floor/plasteel/green,/area/clown) +"aUs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aUt" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/camera{c_tag = "Gateway";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/gateway) +"aUu" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/gateway) +"aUw" = (/obj/structure/table/glass,/obj/item/weapon/paper/pamphlet,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/gateway) +"aUx" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aUy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage";req_access_txt = "18"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aUz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aUA" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aUB" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aUC" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aUD" = (/obj/machinery/camera{c_tag = "Dormitory South";c_tag_order = 999;dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aUE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) +"aUF" = (/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aUH" = (/obj/machinery/power/apc{dir = 4;name = "Dormitory Bathrooms APC";pixel_x = 26;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aUI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) +"aUJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/toilet) +"aUK" = (/obj/structure/dresser,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aUM" = (/turf/closed/wall,/area/crew_quarters/theatre) +"aUN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUS" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/space,/area/space) +"aUU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUY" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aUZ" = (/turf/closed/wall,/area/library) +"aVa" = (/turf/closed/wall,/area/chapel/office) +"aVc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aVd" = (/obj/structure/falsewall,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aVe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aVg" = (/obj/machinery/camera{c_tag = "Chapel North";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aVh" = (/obj/machinery/door/window/eastleft{dir = 8;name = "Coffin Storage";req_access_txt = "22"},/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aVi" = (/obj/structure/closet/coffin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aVj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main) +"aVk" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Arrivals No-Declare Lane";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/hallway/secondary/entry) +"aVl" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"aVm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "greencorner"},/area/hallway/secondary/entry) +"aVn" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "Green Arrivals Shutters";name = "Items To Declare Shutters";normaldoorcontrol = 0;pixel_x = -22;pixel_y = -10},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aVo" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aVq" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/entry) +"aVr" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"aVs" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Arrivals Declare Lane";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/entry) +"aVQ" = (/obj/machinery/power/apc{dir = 8;name = "Mime Office APC";pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/mime) +"aVR" = (/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/red,/area/clown) +"aVS" = (/obj/effect/landmark/start{name = "Clown"},/turf/open/floor/plasteel/green,/area/clown) +"aVT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/red,/area/clown) +"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aVV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/gateway) +"aVW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/gateway) +"aVX" = (/turf/open/floor/plasteel,/area/gateway) +"aVY" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/gateway) +"aVZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aWa" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aWb" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aWc" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aWd" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/storage/eva) +"aWe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) +"aWf" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) +"aWg" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aWh" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aWi" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aWj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aWk" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)";icon_state = "toilet00";dir = 8},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aWl" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aWm" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aWn" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) +"aWp" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWr" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWC" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWD" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space) +"aWJ" = (/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j2s";sortType = 17},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWK" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aWL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/library) +"aWM" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) +"aWN" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/library) +"aWO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/stack/packageWrap,/turf/open/floor/wood,/area/library) +"aWP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/library) +"aWR" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance";req_access_txt = "27"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/chapel/office) +"aWS" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aWT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel";departmentType = 2;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aWU" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aWV" = (/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aWW" = (/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aWX" = (/obj/machinery/door/airlock/glass{name = "Chapel Office";req_access_txt = "22"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"aWY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aWZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"aXa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"aXb" = (/turf/open/floor/carpet,/area/chapel/main) +"aXc" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aXd" = (/obj/structure/table/glass,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) +"aXe" = (/obj/structure/table/glass,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"aXf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"aXg" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/open/space,/area/space) +"aXh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aXi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aXj" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aXl" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/hallway/secondary/construction{name = "\improper Garden"}) +"aXm" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"aXn" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2;pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/construction{name = "\improper Garden"}) +"aXo" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) +"aXp" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) +"aXq" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/storage/primary) +"aXr" = (/obj/structure/window,/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/showcase/mimestatue,/turf/open/floor/plasteel/black,/area/mime) +"aXs" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/mime) +"aXt" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/frame/computer{anchored = 1;desc = "What, you can't see the screen?";name = "Mime's Computer"},/turf/open/floor/plasteel/black,/area/mime) +"aXu" = (/obj/structure/reagent_dispensers/honk_cooler,/turf/open/floor/plasteel/green,/area/clown) +"aXv" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red,/area/clown) +"aXw" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window,/obj/item/weapon/bikehorn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green,/area/clown) +"aXx" = (/obj/machinery/power/apc{dir = 8;name = "Clown Office APC";pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/clown) +"aXy" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/gateway) +"aXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) +"aXA" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel,/area/gateway) +"aXB" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"aXC" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aXD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aXE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) +"aXF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aXG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"aXH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) +"aXJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) +"aXK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) +"aXL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aXM" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aXN" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aXO" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aXP" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aXQ" = (/obj/structure/closet,/obj/item/weapon/dnainjector/smilemut,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) +"aXR" = (/obj/machinery/power/apc{dir = 8;name = "Theatre APC";pixel_x = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/crew_quarters/theatre) +"aXS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aXT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aXU" = (/obj/machinery/power/apc{dir = 2;name = "Bar APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) +"aXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar) +"aXW" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance";req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/bar) +"aXX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/closed/wall,/area/crew_quarters/bar) +"aXY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/bar) +"aXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) +"aYa" = (/obj/machinery/power/apc{dir = 2;name = "Kitchen APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aYb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYe" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYj" = (/obj/machinery/power/apc{dir = 2;name = "Hydroponics APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hydroponics) +"aYk" = (/turf/closed/wall,/area/hydroponics) +"aYl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hydroponics) +"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aYn" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) +"aYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/library) +"aYp" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/camera{c_tag = "Library North";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) +"aYq" = (/obj/structure/chair/withwheels/office/dark,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) +"aYr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) +"aYs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/library) +"aYu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"aYv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aYw" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aYx" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aYy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"aYz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/office) +"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main) +"aYB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) +"aYC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aYD" = (/obj/structure/window/reinforced,/obj/structure/closet/coffin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"aYE" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"aYF" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aYG" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/entry) +"aYH" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) +"aYI" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aYJ" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Arrivals Checkpoint";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aYL" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) +"aYM" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) +"aYN" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/entry) +"aYO" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYQ" = (/obj/machinery/camera{c_tag = "Arrivals Lounge";dir = 2},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYR" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYS" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYT" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aYU" = (/obj/structure/table/glass,/obj/item/weapon/hatchet,/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/plant_analyzer,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) +"aYV" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table/glass,/obj/item/device/plant_analyzer,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light_switch{pixel_x = -6;pixel_y = -25},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"}) +"aYW" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/open/floor/plasteel,/area/storage/primary) +"aYX" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/primary) +"aYY" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plasteel,/area/storage/primary) +"aYZ" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/storage/primary) +"aZa" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/primary) +"aZb" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/storage/primary) +"aZc" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/storage/primary) +"aZd" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/storage/primary) +"aZe" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/mime) +"aZf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/mime) +"aZg" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/mime) +"aZh" = (/obj/structure/table,/obj/item/device/flashlight/lamp/bananalamp,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red,/area/clown) +"aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green,/area/clown) +"aZj" = (/obj/structure/statue/bananium/clown,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red,/area/clown) +"aZk" = (/obj/machinery/button/door{dir = 2;id = "gateway_shutters";name = "Gateway Access Button";pixel_x = 0;pixel_y = -27;req_access_txt = "47"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) +"aZl" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aZm" = (/obj/machinery/camera{c_tag = "EVA South";dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aZn" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) +"aZo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) +"aZp" = (/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/hallway/primary/central) +"aZq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Central Hallway North";dir = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"aZr" = (/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/hallway/primary/central) +"aZs" = (/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZt" = (/obj/structure/sign/directions/security{dir = 1;icon_state = "direction_sec";pixel_x = 32;pixel_y = 40;tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = 32;pixel_y = 32;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = 24;tag = "icon-direction_evac (EAST)"},/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/hallway/primary/central) +"aZu" = (/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"aZv" = (/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/hallway/primary/central) +"aZw" = (/turf/closed/wall,/area/hallway/primary/central) +"aZx" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) +"aZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/primary/central) +"aZz" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/primary/central) +"aZA" = (/obj/machinery/camera{c_tag = "Dormitory Toilets";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aZB" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aZC" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/obj/machinery/door/window/westright,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) +"aZD" = (/obj/machinery/door/airlock{name = "Theatre Backstage";req_access_txt = "46"},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aZE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint2) +"aZF" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance";req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"aZG" = (/turf/closed/wall,/area/crew_quarters/bar) +"aZH" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/structure/table/wood,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/cable_coil,/turf/open/floor/wood,/area/crew_quarters/bar) +"aZI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"aZJ" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"aZK" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Bar Delivery";req_access_txt = "25"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/bar) +"aZL" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"aZM" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance";req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aZN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/kitchen) +"aZO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/kitchen) +"aZP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/hydroponics) +"aZQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance";req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hydroponics) +"aZR" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"aZS" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"aZT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/library) +"aZU" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/wood,/area/library) +"aZV" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) +"aZW" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) +"aZX" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/wood,/area/library) +"aZY" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/library) +"baa" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bab" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bac" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bad" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bae" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"baf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bag" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/chapel/office) +"bah" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bai" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main) +"baj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"bal" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bam" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"ban" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bao" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bap" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"baq" = (/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_y = -29},/obj/structure/closet/secure_closet/security,/turf/open/floor/plasteel,/area/security/checkpoint2) +"bar" = (/obj/machinery/power/apc{dir = 2;name = "Security Checkpoint APC";pixel_x = 1;pixel_y = -24},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable,/turf/open/floor/plasteel,/area/security/checkpoint2) +"bas" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) +"bat" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) +"bau" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) +"bav" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"baw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"bax" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) +"bay" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/mime) +"baz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/freezer{desc = "...";name = "Mime Office";req_access_txt = "46"},/turf/open/floor/plasteel/black,/area/mime) +"baA" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/mime) +"baB" = (/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) +"baC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/clown) +"baD" = (/obj/machinery/door/airlock/clown{name = "Clown Office";req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red,/area/clown) +"baE" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/clown) +"baF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"baG" = (/obj/machinery/door/airlock/research{name = "Gateway Access";req_access_txt = "47"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/gateway) +"baH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/gateway) +"baJ" = (/obj/machinery/door/poddoor/shutters{id = "gateway_shutters";name = "Gateway Entry"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/gateway) +"baK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) +"baL" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) +"baM" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) +"baN" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) +"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/primary/central) +"baP" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/structure/table/wood,/obj/item/weapon/lipstick,/turf/open/floor/carpet,/area/crew_quarters/theatre) +"baQ" = (/turf/open/floor/carpet,/area/crew_quarters/theatre) +"baR" = (/obj/machinery/airalarm{dir = 2;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"baS" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Theatre Stage";dir = 2},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"baT" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"baU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"baV" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"baW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/bar) +"baX" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) +"baY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/bar) +"baZ" = (/obj/machinery/camera{c_tag = "Bar Storage"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bba" = (/turf/open/floor/wood,/area/crew_quarters/bar) +"bbb" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bbd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bbe" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Kitchen Delivery";req_access_txt = "28"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) +"bbf" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery";req_access_txt = "35"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/hydroponics) +"bbg" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbi" = (/obj/structure/closet/wardrobe/botanist,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbj" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbk" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbl" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbm" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0;pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8;pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13;pixel_y = 5},/obj/item/weapon/watertank,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bbn" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/wood,/area/library) +"bbo" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/library) +"bbp" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/library) +"bbr" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bbs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Crematorium";req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bbt" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bbu" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bbv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) +"bbw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bby" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Chapel East";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bbD" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"bbE" = (/obj/structure/window/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bbF" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bbG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bbH" = (/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bbI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bbJ" = (/obj/machinery/door/firedoor,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbL" = (/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbM" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{name = "Port Hall APC";dir = 1;pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbQ" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bbZ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bca" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) +"bcb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) +"bcd" = (/obj/machinery/door/firedoor,/obj/structure/sign/securearea{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bce" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcg" = (/obj/machinery/camera{c_tag = "Central Hallway North-West";dir = 2},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bch" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bci" = (/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/hallway/primary/central) +"bcj" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bck" = (/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) +"bcl" = (/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) +"bcm" = (/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) +"bcn" = (/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) +"bco" = (/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) +"bcp" = (/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) +"bcq" = (/turf/open/floor/plasteel{desc = "";icon_state = "L13";name = "floor"},/area/hallway/primary/central) +"bcr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/hallway/primary/central) +"bct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 1},/area/hallway/primary/central) +"bcu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/hallway/primary/central) +"bcv" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 1},/area/hallway/primary/central) +"bcw" = (/obj/machinery/camera{c_tag = "Central Hallway North-East";dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcx" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcy" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcz" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcA" = (/obj/structure/piano,/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bcB" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bcC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bcD" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bcE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"bcG" = (/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bcH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"bcI" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) +"bcJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/obj/machinery/icecream_vat,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bcK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bcL" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bcM" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcN" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = -31},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcS" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcT" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bcU" = (/turf/open/floor/wood,/area/library) +"bcV" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/wood,/area/library) +"bcW" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) +"bcY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) +"bcZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/main) +"bda" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bdb" = (/obj/machinery/light,/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bdc" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bdd" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bde" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bdf" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bdg" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"bdh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdj" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bdk" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Arrivals Checkpoint South"},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bdl" = (/obj/structure/table,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bdm" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bdn" = (/obj/machinery/computer/slot_machine,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"bdo" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bdp" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bdq" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bdr" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bds" = (/turf/open/floor/goonplaque,/area/hallway/secondary/entry) +"bdt" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHW";location = "Lockers"},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdu" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdv" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdy" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdz" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdA" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bdG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdK" = (/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) +"bdL" = (/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) +"bdM" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers";location = "EVA"},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) +"bdN" = (/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) +"bdO" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security";location = "EVA2"},/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) +"bdP" = (/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) +"bdQ" = (/turf/open/floor/plasteel{desc = "";icon_state = "L14"},/area/hallway/primary/central) +"bdR" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA2";location = "Dorm"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bdU" = (/obj/machinery/door/window{dir = 4;name = "Theatre Stage";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bdV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"bdW" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bdX" = (/obj/machinery/computer/slot_machine,/obj/machinery/light/small{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) +"bdY" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bdZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"bea" = (/obj/structure/closet/gmcloset,/turf/open/floor/wood,/area/crew_quarters/bar) +"beb" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/crew_quarters/bar) +"bec" = (/obj/machinery/vending/coffee,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bed" = (/obj/machinery/light/small{dir = 8},/obj/structure/kitchenspike,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bee" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bef" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"beg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hydroponics) +"bei" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics) +"bej" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics";req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) +"bek" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/open/floor/wood,/area/library) +"bel" = (/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) +"bem" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/library) +"beo" = (/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bep" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"beq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall,/area/chapel/main) +"ber" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bes" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bet" = (/turf/closed/wall,/area/hallway/secondary/exit) +"beu" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bev" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bew" = (/obj/machinery/conveyor{dir = 6;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bex" = (/obj/machinery/conveyor{dir = 4;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0;verted = -1},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bey" = (/obj/machinery/conveyor{dir = 4;id = "Red Arrivals";name = "Items to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel,/area/security/checkpoint2) +"bez" = (/obj/machinery/conveyor{dir = 10;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0;verted = -1},/turf/open/floor/plasteel,/area/security/checkpoint2) +"beA" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"beB" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"beC" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) +"beD" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"beE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beG" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beH" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beI" = (/obj/machinery/camera{c_tag = "Port Hallway 3";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beJ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beK" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) +"beM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway";dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"beP" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"beS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"beV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"beY" = (/obj/structure/sign/directions/security{dir = 4;icon_state = "direction_sec";pixel_x = 32;pixel_y = -24;tag = "icon-direction_sec (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = -32;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32;pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"beZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfc" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=QM";location = "CHW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfd" = (/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bfe" = (/obj/machinery/light,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bff" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/door/firedoor,/obj/machinery/light,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bfg" = (/obj/structure/window/reinforced,/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bfh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) +"bfi" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/wood,/area/crew_quarters/bar) +"bfj" = (/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) +"bfk" = (/obj/structure/closet/chefcloset,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bfl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bfm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bfn" = (/obj/machinery/gibber,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bfo" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bfp" = (/obj/machinery/requests_console{department = "Hydroponics";departmentType = 2;pixel_x = 0;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bfq" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bfr" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera{c_tag = "Hydroponics North";dir = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bfs" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bft" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bfu" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/open/floor/wood,/area/library) +"bfv" = (/turf/open/floor/carpet,/area/library) +"bfw" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/library) +"bfx" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/open/floor/wood,/area/library) +"bfy" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/wood,/area/library) +"bfA" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bfB" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bfC" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bfD" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bfE" = (/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) +"bfF" = (/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"bfG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) +"bfH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"bfI" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Escape Arm Holding Area";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/hallway/secondary/exit) +"bfJ" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) +"bfK" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) +"bfL" = (/obj/machinery/light{dir = 1},/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) +"bfM" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) +"bfN" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/exit) +"bfO" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bfP" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"bfQ" = (/turf/open/floor/plasteel{dir = 4;icon_state = "greencorner"},/area/hallway/secondary/entry) +"bfR" = (/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) +"bfS" = (/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) +"bfT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/entry) +"bfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"bfV" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bfW" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bfX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bfZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) +"bga" = (/turf/closed/wall,/area/maintenance/port) +"bgb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) +"bgc" = (/turf/closed/wall,/area/crew_quarters/locker) +"bgd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bge" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bgf" = (/turf/closed/wall,/area/storage/art) +"bgg" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/art) +"bgh" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/turf/open/floor/plasteel,/area/storage/art) +"bgi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/art) +"bgj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bgk" = (/turf/closed/wall,/area/storage/emergency2) +"bgl" = (/obj/structure/table,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bgm" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/port) +"bgn" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bgo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) +"bgq" = (/turf/closed/wall,/area/storage/tools) +"bgr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgs" = (/turf/closed/wall/r_wall,/area/bridge) +"bgt" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) +"bgu" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bgv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/status_display{density = 0;layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bgw" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bgx" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/status_display{density = 0;layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bgy" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bgz" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 3},/turf/open/floor/wood,/area/crew_quarters/bar) +"bgA" = (/obj/structure/chair/wood/normal,/turf/open/floor/wood,/area/crew_quarters/bar) +"bgB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) +"bgC" = (/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"bgD" = (/obj/machinery/disposal/bin,/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";icon_state = "monkey_painting";name = "Mr. Deempisi portrait";pixel_x = 4;pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bgE" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5;pixel_y = 29},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bgF" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bgG" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/wood,/area/crew_quarters/bar) +"bgH" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bgI" = (/obj/machinery/door/airlock{name = "Kitchen cold room";req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) +"bgJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hydroponics) +"bgK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hydroponics) +"bgL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/hydroponics) +"bgM" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/library) +"bgN" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library) +"bgO" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bgP" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bgQ" = (/obj/structure/cult/tome,/obj/item/clothing/under/suit_jacket/red,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bgR" = (/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"bgS" = (/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bgT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"bgU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bgV" = (/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/hallway/secondary/exit) +"bgW" = (/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) +"bgX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) +"bgY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) +"bgZ" = (/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/exit) +"bha" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bhb" = (/obj/machinery/door/airlock/external{name = "Security Escape Airlock";req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit) +"bhc" = (/turf/open/floor/plating,/area/hallway/secondary/exit) +"bhd" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhj" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) +"bhk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port) +"bhl" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhm" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhn" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bho" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhp" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhr" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhs" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bht" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhu" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhv" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bhw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/storage/art) +"bhx" = (/turf/open/floor/plasteel,/area/storage/art) +"bhy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/storage/art) +"bhz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bhA" = (/obj/machinery/door/airlock{name = "Port Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency2) +"bhB" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools) +"bhD" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhE" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/open/floor/plasteel,/area/bridge) +"bhF" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/bridge) +"bhG" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{icon_state = "yellow"},/area/bridge) +"bhH" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/bridge) +"bhI" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/bridge) +"bhJ" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bhK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/bridge) +"bhL" = (/obj/machinery/computer/card,/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/bridge) +"bhM" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel{dir = 2;icon_state = "green"},/area/bridge) +"bhN" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{dir = 6;icon_state = "green"},/area/bridge) +"bhO" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/bridge) +"bhP" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhQ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) +"bhR" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) +"bhS" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bhT" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) +"bhU" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) +"bhV" = (/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"bhW" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bhX" = (/obj/machinery/vending/boozeomat,/obj/machinery/button/door{id = "bar";name = "Bar Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bhY" = (/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bhZ" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bia" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bib" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bic" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Kitchen";dir = 2},/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bid" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bie" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bif" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"big" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) +"bih" = (/turf/open/floor/plasteel,/area/hydroponics) +"bii" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) +"bij" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 4;name = "Library APC";pixel_x = 24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) +"bik" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/open/floor/wood,/area/library) +"bil" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/open/floor/wood,/area/library) +"bim" = (/obj/machinery/camera{c_tag = "Library South";dir = 8;network = list("SS13")},/turf/open/floor/wood,/area/library) +"bin" = (/obj/machinery/door/morgue{name = "Private Study";req_access_txt = "37"},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) +"bio" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bip" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) +"biq" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bir" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bis" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bit" = (/obj/item/weapon/twohanded/required/kirbyplants,/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/hallway/secondary/entry) +"biu" = (/obj/machinery/vending/cola,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"biv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"biw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"bix" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"biy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) +"biz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) +"biA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) +"biC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"biD" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"biE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"biG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) +"biH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/camera{c_tag = "Arrivals Hallway Central";dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/entry) +"biI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biK" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biL" = (/obj/machinery/firealarm{dir = 2;pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biM" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biN" = (/obj/machinery/camera{c_tag = "Arrivals Hallway";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biO" = (/turf/open/floor/plating,/area/maintenance/port) +"biP" = (/obj/structure/closet/wardrobe/mixed,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"biQ" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"biR" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/storage/art) +"biS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency2) +"biT" = (/turf/open/floor/plating,/area/storage/emergency2) +"biU" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency2) +"biV" = (/obj/machinery/power/apc{dir = 1;name = "Auxiliary Tool Storage APC";pixel_y = 24},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/storage/tools) +"biW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/storage/tools) +"biY" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage";dir = 2},/turf/open/floor/plasteel,/area/storage/tools) +"biZ" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/storage/tools) +"bja" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tools) +"bjc" = (/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/bridge) +"bjd" = (/obj/structure/chair{dir = 1;name = "Engineering Station"},/turf/open/floor/plasteel,/area/bridge) +"bje" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/bridge) +"bjf" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/multitool,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/bridge) +"bjg" = (/obj/structure/chair{dir = 1;name = "Command Station"},/obj/machinery/button/door{id = "bridge blast";name = "Bridge Blast Door Control";pixel_x = 28;pixel_y = -2;req_access_txt = "19"},/obj/machinery/keycard_auth{pixel_x = 29;pixel_y = 8},/turf/open/floor/plasteel,/area/bridge) +"bjh" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/bridge) +"bji" = (/turf/open/floor/plasteel{dir = 1;icon_state = "greencorner"},/area/bridge) +"bjj" = (/obj/structure/chair{dir = 1;name = "Crew Station"},/turf/open/floor/plasteel,/area/bridge) +"bjk" = (/turf/open/floor/plasteel{dir = 4;icon_state = "greencorner"},/area/bridge) +"bjl" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/bridge) +"bjm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bjn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"bjo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"bjp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"bjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/wood,/area/crew_quarters/bar) +"bjr" = (/obj/item/stack/spacecash/c10{amount = 10},/obj/item/stack/spacecash/c100{amount = 5},/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"bjs" = (/mob/living/carbon/monkey{name = "Pun Pun";real_name = "Pun Pun";unique_name = 0},/turf/open/floor/wood,/area/crew_quarters/bar) +"bjt" = (/obj/machinery/door/airlock/glass{name = "Kitchen";req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bju" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjv" = (/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjw" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bjA" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"bjB" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bjC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) +"bjD" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics) +"bjE" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics) +"bjF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) +"bjH" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/library) +"bjI" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/wood,/area/library) +"bjJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bjK" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"bjL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bjM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"bjN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"bjO" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bjP" = (/obj/machinery/vending/cola,/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{dir = 9;icon_state = "escape"},/area/hallway/secondary/exit) +"bjQ" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/exit) +"bjR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bjS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bjT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bjU" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/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 = 32},/turf/open/floor/plating,/area/hallway/secondary/exit) +"bjV" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) +"bjW" = (/obj/docking_port/stationary{dir = 4;dwidth = 9;height = 11;id = "emergency_home";name = "emergency evac bay";width = 22},/turf/open/space,/area/space) +"bjX" = (/turf/closed/wall/r_wall,/area/rec_room) +"bjY" = (/turf/closed/wall,/area/rec_room) +"bjZ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/rec_room) +"bka" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/rec_room) +"bkb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkc" = (/turf/closed/wall,/area/security/vacantoffice) +"bkd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice) +"bke" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice) +"bkf" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) +"bkg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) +"bkh" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bki" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkj" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkk" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkl" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkm" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkn" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bko" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkp" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Locker Room East";dir = 8;network = list("SS13")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bkq" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel,/area/storage/art) +"bkr" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/storage/art) +"bks" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/plasteel,/area/storage/art) +"bkt" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency2) +"bku" = (/obj/machinery/light/small,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency2) +"bkv" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency2) +"bkw" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency2) +"bkx" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel,/area/storage/tools) +"bky" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel,/area/storage/tools) +"bkA" = (/turf/open/floor/plasteel,/area/storage/tools) +"bkB" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plasteel,/area/storage/tools) +"bkC" = (/turf/closed/wall,/area/bridge) +"bkD" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/bridge) +"bkE" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red"},/area/bridge) +"bkF" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/bridge) +"bkG" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/bridge) +"bkH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/bridge) +"bkI" = (/turf/open/floor/plasteel,/area/bridge) +"bkJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/bridge) +"bkK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/bridge) +"bkL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/bridge) +"bkM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/bridge) +"bkN" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/bridge) +"bkO" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/bridge) +"bkP" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/bridge) +"bkQ" = (/obj/machinery/computer/security/mining,/turf/open/floor/plasteel{dir = 6;icon_state = "brown"},/area/bridge) +"bkR" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Bar West";dir = 4;network = list("SS13")},/turf/open/floor/wood,/area/crew_quarters/bar) +"bkS" = (/obj/machinery/hologram/holopad,/turf/open/floor/wood,/area/crew_quarters/bar) +"bkT" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"bkU" = (/obj/item/clothing/head/that{throwforce = 1;throwing = 1},/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"bkV" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bkW" = (/obj/machinery/requests_console{department = "Bar";departmentType = 2;pixel_x = 30;pixel_y = 0},/obj/machinery/camera{c_tag = "Bar";dir = 8;network = list("SS13")},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/crew_quarters/bar) +"bkX" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bkY" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bkZ" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bla" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"blb" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"blc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Hydroponics Desk";req_access_txt = "35"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/crew_quarters/kitchen) +"bld" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/hydroponics) +"ble" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) +"blf" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics) +"blg" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel,/area/hydroponics) +"blh" = (/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) +"bli" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"blj" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/open/floor/wood,/area/library) +"blk" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/library) +"blm" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/chair/withwheels/office/dark,/turf/open/floor/wood,/area/library) +"bln" = (/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library) +"blo" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"blp" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) +"blq" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"blr" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) +"bls" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) +"blt" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"blu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"blv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"blw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"blx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bly" = (/obj/machinery/power/apc{dir = 1;name = "Recreation Room APC";pixel_y = 30},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/carpet,/area/rec_room) +"blz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/carpet,/area/rec_room) +"blA" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/rec_room) +"blB" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 9},/area/hallway/secondary/entry) +"blC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/hallway/secondary/entry) +"blD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/hallway/secondary/entry) +"blE" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 5},/area/hallway/secondary/entry) +"blF" = (/turf/open/floor/wood,/area/security/vacantoffice) +"blG" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) +"blH" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice) +"blI" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/wood,/area/security/vacantoffice) +"blJ" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) +"blK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) +"blL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port) +"blM" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port) +"blN" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/requests_console{department = "Locker Room";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blQ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blR" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blS" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2;pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blT" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blU" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"blY" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools) +"bma" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/hallway/primary/central) +"bmb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) +"bmc" = (/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) +"bmd" = (/obj/machinery/camera{c_tag = "Bridge West";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/bridge) +"bme" = (/obj/structure/chair{dir = 1;name = "Security Station"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/bridge) +"bmg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) +"bmi" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/bridge) +"bmk" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bml" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmn" = (/obj/item/device/radio/beacon,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "browncorner"},/area/bridge) +"bmq" = (/obj/structure/chair{dir = 1;name = "Logistics Station"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bmr" = (/obj/machinery/camera{c_tag = "Bridge East";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 4;icon_state = "browncorner"},/area/bridge) +"bms" = (/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) +"bmt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/hallway/primary/central) +"bmu" = (/obj/machinery/camera{c_tag = "Bridge East Entrance";dir = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"bmv" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) +"bmw" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola,/turf/open/floor/wood,/area/crew_quarters/bar) +"bmx" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/obj/machinery/door/poddoor/shutters/preopen{id = "bar";name = "Bar Shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmy" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmz" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmA" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmB" = (/obj/structure/table,/obj/effect/spawner/lootdrop/food,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmC" = (/obj/machinery/processor,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bmD" = (/obj/machinery/light{dir = 8},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bmE" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) +"bmF" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) +"bmG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"bmH" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/wood,/area/library) +"bmI" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/library) +"bmK" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5;pixel_y = 5},/turf/open/floor/wood,/area/library) +"bmL" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/turf/open/floor/wood,/area/library) +"bmM" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/wood,/area/library) +"bmN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) +"bmO" = (/obj/machinery/camera{c_tag = "Chapel South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"bmP" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"bmR" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bmS" = (/obj/machinery/door/window/northright,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bmT" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/turf/open/floor/grass,/area/hallway/secondary/exit) +"bmU" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/carpet,/area/rec_room) +"bmV" = (/turf/open/floor/carpet,/area/rec_room) +"bmW" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/rec_room) +"bmX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/rec_room) +"bmY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/rec_room) +"bmZ" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/rec_room) +"bna" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/secondary/entry) +"bnb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) +"bnc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnd" = (/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) +"bne" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) +"bnf" = (/obj/machinery/camera{c_tag = "Vacant Office";dir = 4;network = list("SS13")},/turf/open/floor/wood,/area/security/vacantoffice) +"bng" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) +"bnh" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice) +"bni" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/security/vacantoffice) +"bnj" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/security/vacantoffice) +"bnk" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port) +"bnl" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plating,/area/maintenance/port) +"bnm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) +"bnn" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bno" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnq" = (/obj/machinery/camera{c_tag = "Locker Room West";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bns" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnu" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) +"bnw" = (/obj/machinery/power/apc{dir = 1;name = "Art Storage";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) +"bnx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bny" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bnz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bnA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port) +"bnB" = (/obj/machinery/power/apc{dir = 1;name = "Port Emergency Storage APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency2) +"bnC" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port) +"bnD" = (/obj/item/clothing/gloves/color/rainbow,/obj/item/clothing/shoes/sneakers/rainbow,/obj/item/clothing/under/color/rainbow,/obj/item/clothing/head/soft/rainbow,/turf/open/floor/plating,/area/maintenance/port) +"bnE" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/tools) +"bnF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools) +"bnH" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools) +"bnI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) +"bnJ" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) +"bnK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) +"bnL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) +"bnM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) +"bnN" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/bridge) +"bnO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bnP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/bridge) +"bnQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/machinery/light,/obj/machinery/light_switch{pixel_x = -6;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnR" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnS" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnT" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnV" = (/obj/machinery/turretid{control_area = "AI Upload Chamber";name = "AI Upload turret control";pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnX" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnY" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Bridge APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bnZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/bridge) +"boa" = (/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;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) +"bob" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) +"boc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bod" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) +"boe" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bof" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) +"bog" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"boh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"boi" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"boj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/turf/open/floor/wood,/area/crew_quarters/bar) +"bok" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"bol" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/kitchen/fork,/turf/open/floor/wood,/area/crew_quarters/bar) +"bom" = (/obj/item/weapon/lighter,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"bon" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) +"boo" = (/obj/machinery/button/door{id = "bar";name = "Bar Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "0";req_one_access_txt = "25; 28"},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bop" = (/obj/effect/landmark/start{name = "Chef"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"boq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Kitchen";departmentType = 2;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bor" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bos" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bot" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bou" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"bov" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"bow" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"box" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"boy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/carpet,/area/library) +"boz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/carpet,/area/chapel/main) +"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/carpet,/area/chapel/main) +"boB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) +"boC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/chapel/main) +"boD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"boE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"boF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"boG" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) +"boH" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit) +"boI" = (/turf/open/floor/grass,/area/hallway/secondary/exit) +"boJ" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hallway/secondary/exit) +"boK" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/turf/open/floor/grass,/area/hallway/secondary/exit) +"boL" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"boM" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/rec_room) +"boN" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet,/area/rec_room) +"boO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/floor/wood,/area/rec_room) +"boP" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/rec_room) +"boQ" = (/obj/structure/table/wood,/obj/item/weapon/bikehorn/airhorn,/turf/open/floor/wood,/area/rec_room) +"boR" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/rec_room) +"boS" = (/obj/structure/window/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/rec_room) +"boT" = (/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/secondary/entry) +"boU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"boV" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) +"boW" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice) +"boX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) +"boY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/security/vacantoffice) +"boZ" = (/turf/open/floor/carpet,/area/security/vacantoffice) +"bpa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/vacantoffice) +"bpb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bpc" = (/obj/machinery/light{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/security/vacantoffice) +"bpd" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port) +"bpe" = (/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) +"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) +"bpg" = (/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bph" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bpi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bpj" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bpk" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/crew_quarters/locker) +"bpl" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/crew_quarters/locker) +"bpm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/crew_quarters/locker) +"bpn" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bpo" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Locker Room Maintenance APC";pixel_x = -27;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bpp" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) +"bpq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bpr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bpt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bpu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) +"bpv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port) +"bpw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port) +"bpx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/storage/tools) +"bpz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall,/area/storage/tools) +"bpA" = (/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) +"bpB" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) +"bpC" = (/obj/machinery/camera{c_tag = "Bridge West Entrance";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) +"bpD" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/hallway/primary/central) +"bpE" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) +"bpF" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) +"bpG" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bpH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bpI" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bpJ" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/bridge) +"bpK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Upload Access";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bpO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpP" = (/obj/machinery/ai_status_display,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bpS" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/bridge) +"bpT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) +"bpU" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/hallway/primary/central) +"bpV" = (/obj/machinery/power/apc{dir = 2;name = "Central Hall APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) +"bpW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bpX" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/bar) +"bpY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen";req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bpZ" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bqa" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/button/door{id = "kitchen";name = "Kitchen Shutters Control";pixel_x = -1;pixel_y = -24;req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bqb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"bqc" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/hydroponics) +"bqd" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hydroponics) +"bqe" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hydroponics) +"bqf" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) +"bqg" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Hydroponics South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hydroponics) +"bqh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/hydroponics) +"bqi" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bqk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"bql" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) +"bqm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/library) +"bqn" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/library) +"bqo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main) +"bqp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"bqq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) +"bqr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main) +"bqs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"bqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"bqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bqv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bqw" = (/mob/living/simple_animal/hostile/lizard{desc = "Scaley.";name = "Robusts-Many-Faces"},/turf/open/floor/grass,/area/hallway/secondary/exit) +"bqx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bqy" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/rec_room) +"bqz" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/rec_room) +"bqA" = (/obj/structure/table/wood,/obj/item/device/taperecorder/empty,/turf/open/floor/wood,/area/rec_room) +"bqB" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/carpet,/area/rec_room) +"bqC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) +"bqD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bqE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) +"bqF" = (/obj/machinery/door/airlock/engineering{name = "Vacant Office";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bqH" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bqI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice) +"bqJ" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) +"bqK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bqL" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) +"bqM" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bqN" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bqO" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bqP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bqQ" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"bqR" = (/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"bqS" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3;pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2;pixel_y = 0},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"bqT" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) +"bqU" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) +"bqV" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/crew_quarters/locker) +"bqW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bqX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bqY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bqZ" = (/turf/closed/wall,/area/quartermaster/storage) +"bra" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/storage) +"brb" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance";req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/storage) +"brc" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) +"brd" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/office) +"brf" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) +"brg" = (/turf/closed/wall,/area/quartermaster/office) +"brh" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) +"bri" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room) +"brj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/bridge/meeting_room) +"brk" = (/obj/machinery/door/airlock/command{name = "Conference Room";req_access = null;req_access_txt = "19"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"brl" = (/turf/closed/wall,/area/bridge/meeting_room) +"brm" = (/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"brn" = (/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) +"bro" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"brp" = (/obj/machinery/porta_turret{ai = 1;dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"brq" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain) +"brr" = (/obj/machinery/door/airlock/command{name = "Captain's Office";req_access = null;req_access_txt = "20"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"brs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) +"brt" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bru" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/bar) +"brv" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) +"brw" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/computer/slot_machine,/turf/open/floor/wood,/area/crew_quarters/bar) +"brx" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/bar) +"bry" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/bar) +"brz" = (/obj/machinery/camera{c_tag = "Bar South";dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) +"brA" = (/obj/structure/noticeboard{pixel_y = -27},/turf/open/floor/wood,/area/crew_quarters/bar) +"brB" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/bar) +"brC" = (/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/bar) +"brD" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/bar) +"brE" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"brF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "kitchen shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"brG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "kitchen shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) +"brH" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) +"brI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hydroponics) +"brJ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{name = "Hydroponics Desk";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) +"brK" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1;name = "Hydroponics Desk";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) +"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"brM" = (/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"brN" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"brO" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/library) +"brP" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/library) +"brQ" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) +"brS" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/wood,/area/library) +"brT" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/library) +"brU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"brV" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"brW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) +"brX" = (/obj/machinery/power/apc{dir = 8;name = "Escape Hallway APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Escape shuttle Hallway";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"brY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"brZ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bsa" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bsb" = (/mob/living/simple_animal/cow,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bsc" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/rec_room) +"bsd" = (/obj/structure/extinguisher_cabinet{pixel_x = 30},/turf/open/floor/carpet,/area/rec_room) +"bse" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) +"bsf" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) +"bsg" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/wood,/area/security/vacantoffice) +"bsh" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) +"bsi" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bsj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bsk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/power/apc{dir = 4;name = "Locker Restrooms APC";pixel_x = 27;pixel_y = 2},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/crew_quarters/locker/locker_toilet) +"bsl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bsm" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bsn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bso" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsq" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bsr" = (/obj/machinery/conveyor{dir = 1;id = "packageSort1"},/turf/open/floor/plating,/area/quartermaster/office) +"bss" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/office) +"bst" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/office) +"bsu" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/office) +"bsv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office) +"bsw" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/bridge/meeting_room) +"bsx" = (/obj/machinery/button/door{id = "heads_meeting";name = "Security Shutters";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/bridge/meeting_room) +"bsy" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/bridge/meeting_room) +"bsz" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/camera{c_tag = "Conference Room";dir = 2},/turf/open/floor/wood,/area/bridge/meeting_room) +"bsA" = (/turf/open/floor/wood,/area/bridge/meeting_room) +"bsB" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"bsC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"bsD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/wood,/area/bridge/meeting_room) +"bsE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bsF" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bsG" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bsH" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bsI" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bsJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bsK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) +"bsL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) +"bsM" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) +"bsN" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bsO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bsP" = (/obj/machinery/status_display{pixel_x = 0;pixel_y = 32},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bsQ" = (/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Captain's Office APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bsR" = (/turf/open/floor/wood,/area/crew_quarters/captain) +"bsS" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) +"bsT" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/hallway/primary/starboard) +"bsU" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 2";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/hallway/primary/starboard) +"bsV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) +"bsW" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/library) +"bsX" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/chapel/main) +"bsY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) +"bsZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bta" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"btb" = (/mob/living/simple_animal/hostile/lizard{desc = "A Lizard Wizard!";name = "Merlin"},/turf/open/floor/grass,/area/hallway/secondary/exit) +"btc" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hallway/secondary/exit) +"btd" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/rec_room) +"bte" = (/turf/open/floor/plasteel{tag = "icon-stairs-l";icon_state = "stairs-l"},/area/hallway/secondary/entry) +"btf" = (/turf/open/floor/plasteel{tag = "icon-stairs-m";icon_state = "stairs-m"},/area/hallway/secondary/entry) +"btg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-stairs-m";icon_state = "stairs-m"},/area/hallway/secondary/entry) +"bth" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-stairs-r";icon_state = "stairs-r"},/area/hallway/secondary/entry) +"bti" = (/obj/machinery/power/apc{dir = 8;name = "Vacant Office APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/vacantoffice) +"btj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"btk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port) +"btl" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"btm" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"btn" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"bto" = (/obj/machinery/washing_machine,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) +"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"btq" = (/obj/structure/closet/crate,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"btr" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/office) +"bts" = (/turf/open/floor/plasteel,/area/quartermaster/office) +"btu" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "arrival";dir = 1},/area/quartermaster/office) +"btv" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "arrival";dir = 5},/area/quartermaster/office) +"btw" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"btx" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "heads_meeting";layer = 2.9;name = "privacy shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge/meeting_room) +"bty" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) +"btz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/bridge/meeting_room) +"btA" = (/obj/structure/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) +"btB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) +"btC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) +"btD" = (/obj/machinery/vending/snack,/turf/open/floor/wood,/area/bridge/meeting_room) +"btE" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload West";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"btF" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"btG" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/camera/motion{c_tag = "AI Upload East";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"btH" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/captain) +"btI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"btJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"btK" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) +"btL" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/captain) +"btM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) +"btN" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/crew_quarters/captain) +"btO" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm";location = "HOP2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"btP" = (/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = 28;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{dir = 1;icon_state = "direction_sec";pixel_x = 32;pixel_y = 36;tag = "icon-direction_sec (NORTH)"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"btQ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btR" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway";dir = 2;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btS" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btU" = (/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btX" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"btZ" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 5";dir = 2;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 4;icon_state = "whitecorner"},/area/hallway/secondary/exit) +"bub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/exit) +"buc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bud" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bue" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/machinery/door/window/southright,/turf/open/floor/grass,/area/hallway/secondary/exit) +"buf" = (/obj/structure/window,/obj/structure/flora/ausbushes,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bug" = (/obj/structure/window,/turf/open/floor/grass,/area/hallway/secondary/exit) +"buh" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/window,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bui" = (/obj/structure/window,/obj/machinery/vending/cola,/turf/open/floor/carpet,/area/rec_room) +"buj" = (/obj/structure/window,/obj/machinery/vending/snack,/turf/open/floor/carpet,/area/rec_room) +"buk" = (/obj/structure/window,/obj/item/weapon/twohanded/required/kirbyplants,/turf/open/floor/carpet,/area/rec_room) +"bul" = (/obj/structure/window,/obj/machinery/vending/coffee,/turf/open/floor/carpet,/area/rec_room) +"bum" = (/obj/structure/window,/obj/machinery/vending/cigarette,/turf/open/floor/carpet,/area/rec_room) +"bun" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"buo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"bup" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"buq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"bur" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"bus" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"but" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"buu" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port) +"buv" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) +"buy" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"buz" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"buA" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/crew_quarters/locker) +"buB" = (/obj/machinery/camera{c_tag = "Locker Room South";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"buC" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"buD" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"buE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"buF" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/office) +"buH" = (/obj/structure/table,/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) +"buI" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"buJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "heads_meeting";layer = 2.9;name = "privacy shutters"},/turf/open/floor/plating,/area/bridge/meeting_room) +"buK" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) +"buL" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) +"buM" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Command)";pixel_x = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) +"buN" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) +"buO" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/bridge/meeting_room) +"buP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"buQ" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/bridge/meeting_room) +"buR" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"buS" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai_upload) +"buT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) +"buU" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/captain) +"buV" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/captain) +"buW" = (/obj/machinery/camera{c_tag = "Central Hallway East";dir = 4;network = list("SS13")},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"buX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"buY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"buZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bva" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvb" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bve" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP2";location = "Stbd"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bvl" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bvm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bvn" = (/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) +"bvo" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/table/wood,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/open/floor/carpet,/area/rec_room) +"bvp" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/rec_room) +"bvq" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/computer/arcade,/turf/open/floor/carpet,/area/rec_room) +"bvr" = (/turf/closed/wall,/area/maintenance/disposal) +"bvs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal) +"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal) +"bvu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port) +"bvw" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bvx" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bvy" = (/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/port) +"bvz" = (/obj/effect/landmark{name = "blobstart"},/obj/item/clothing/suit/ianshirt,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/port) +"bvA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker) +"bvB" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bvC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bvD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bvE" = (/obj/structure/closet/crate,/obj/machinery/doorButtons,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bvF" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bvG" = (/obj/machinery/camera{c_tag = "Cargo Bay Storage";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bvI" = (/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/quartermaster/office) +"bvJ" = (/obj/machinery/conveyor{dir = 4;id = "packageExternal"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) +"bvK" = (/obj/machinery/conveyor{dir = 4;id = "packageExternal"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) +"bvL" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/primary/central) +"bvM" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) +"bvN" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) +"bvO" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) +"bvP" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/bridge/meeting_room) +"bvQ" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Core Modules";req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/robocop,/obj/item/weapon/aiModule/core/full/custom,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bvR" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bvS" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -21},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) +"bvT" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Upload APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) +"bvU" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_y = -29},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) +"bvV" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bvW" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left";dir = 8;icon_state = "left";name = "High-Risk Modules";req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) +"bvX" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/requests_console{announcementConsole = 1;department = "Captain's Desk";departmentType = 5;name = "Captain RC";pixel_x = -30;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain) +"bvY" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"bvZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) +"bwa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bwc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bwd" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office";dir = 8},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain) +"bwe" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) +"bwf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd";location = "HOP"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bwg" = (/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = 32;pixel_y = -24;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 4;icon_state = "direction_sci";pixel_x = 32;pixel_y = -32;tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32;pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bwh" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwi" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/starboard) +"bwj" = (/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/starboard) +"bwk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/starboard) +"bwl" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/starboard) +"bwm" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/hallway/primary/starboard) +"bwn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/hallway/primary/starboard) +"bwo" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/hallway/primary/starboard) +"bwp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwq" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bws" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwt" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwu" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bwv" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 4";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bww" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/exit) +"bwx" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) +"bwy" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) +"bwz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/hallway/secondary/exit) +"bwA" = (/obj/machinery/camera{c_tag = "Escape Hallway South";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bwB" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bwC" = (/obj/structure/easel,/turf/open/floor/carpet,/area/rec_room) +"bwD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/rec_room) +"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/rec_room) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/rec_room) +"bwG" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/rec_room) +"bwH" = (/obj/structure/chair/stool{pixel_y = 0},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/carpet,/area/rec_room) +"bwI" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Recreation Room";dir = 8;network = list("SS13")},/turf/open/floor/carpet,/area/rec_room) +"bwJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bwK" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/disposal) +"bwL" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"bwM" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"bwN" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/recycler,/obj/structure/sign/securearea{name = "\improper STAY CLEAR HEAVY MACHINERY";pixel_y = 32},/turf/open/floor/plating,/area/maintenance/disposal) +"bwO" = (/obj/machinery/conveyor{dir = 9;id = "garbage";verted = -1},/turf/open/floor/plating,/area/maintenance/disposal) +"bwP" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/port) +"bwQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) +"bwR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bwT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) +"bwU" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bwV" = (/obj/machinery/camera{c_tag = "Locker Room Toilets";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"bwW" = (/obj/machinery/power/apc{dir = 1;name = "Locker Room APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/crew_quarters/locker) +"bwX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bwY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bwZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/port) +"bxa" = (/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bxb" = (/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"bxc" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/office) +"bxd" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"bxf" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "packageExternal"},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) +"bxg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/office) +"bxh" = (/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bxi" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_y = -30},/obj/machinery/light,/turf/open/floor/wood,/area/bridge/meeting_room) +"bxj" = (/turf/open/floor/carpet,/area/bridge/meeting_room) +"bxk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) +"bxl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) +"bxm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) +"bxn" = (/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/turf/open/floor/wood,/area/bridge/meeting_room) +"bxo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxq" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxr" = (/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxs" = (/obj/machinery/status_display{density = 0;layer = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) +"bxv" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/wood,/area/crew_quarters/captain) +"bxw" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"bxx" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"bxy" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/crew_quarters/captain) +"bxz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bxA" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/item/weapon/storage/secure/safe{pixel_x = 35;pixel_y = 5},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bxB" = (/turf/closed/wall/r_wall,/area/medical/chemistry) +"bxC" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/medical/medbay) +"bxD" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/medbay) +"bxE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bxF" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bxG" = (/turf/closed/wall,/area/security/checkpoint/medical) +"bxH" = (/turf/closed/wall,/area/medical/morgue) +"bxI" = (/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bxJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bxK" = (/obj/machinery/power/apc{dir = 2;name = "Starboard Primary Hallway APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/hallway/primary/starboard) +"bxL" = (/turf/closed/wall,/area/storage/emergency) +"bxM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"bxN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/assembly/chargebay) +"bxO" = (/turf/open/floor/plasteel{dir = 1;icon_state = "loadingarea"},/area/hallway/primary/starboard) +"bxP" = (/turf/closed/wall/r_wall,/area/assembly/robotics) +"bxR" = (/turf/open/floor/plasteel{dir = 10;icon_state = "purple"},/area/hallway/primary/starboard) +"bxS" = (/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) +"bxT" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) +"bxU" = (/obj/structure/sign/securearea{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) +"bxV" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) +"bxW" = (/turf/open/floor/plasteel{dir = 6;icon_state = "purple"},/area/hallway/primary/starboard) +"bxX" = (/turf/closed/wall/r_wall,/area/toxins/lab) +"bxY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 10;icon_state = "escape"},/area/hallway/secondary/exit) +"bxZ" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) +"bya" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/exit) +"byb" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/exit) +"byc" = (/obj/structure/easel,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/carpet,/area/rec_room) +"byd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/rec_room) +"bye" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Arrivals Hallway South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"byf" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/contraband,/obj/effect/spawner/lootdrop/food,/turf/open/floor/plating,/area/maintenance/disposal) +"byg" = (/obj/structure/chair/stool{pixel_y = 0},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plating,/area/maintenance/disposal) +"byh" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/contraband,/obj/effect/spawner/lootdrop/plants,/turf/open/floor/plating,/area/maintenance/disposal) +"byi" = (/obj/machinery/conveyor{dir = 1;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/disposal) +"byj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/disposal) +"byk" = (/obj/machinery/power/apc{dir = 8;name = "Disposal APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"byl" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"byn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"byo" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"byp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) +"byq" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) +"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) +"bys" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"byt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"byu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"byv" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/power/apc{dir = 2;name = "Cargo Bay APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/storage) +"byw" = (/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = -1;pixel_y = -24;req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"byx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"byy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"byz" = (/obj/structure/closet/cardboard,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) +"byA" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/storage) +"byB" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office) +"byC" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"byE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"byF" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) +"byG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Delivery Desk";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) +"byH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"byI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"byJ" = (/obj/machinery/camera{c_tag = "Central Hallway West";dir = 8},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) +"byK" = (/obj/machinery/door/window/eastright{dir = 1;name = "Bridge Delivery";req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/bridge/meeting_room) +"byL" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/bridge/meeting_room) +"byM" = (/obj/machinery/computer/slot_machine,/turf/open/floor/wood,/area/bridge/meeting_room) +"byN" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -32},/turf/open/floor/wood,/area/bridge/meeting_room) +"byO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"byP" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/turf/open/floor/plating,/area/bridge/meeting_room) +"byQ" = (/turf/open/floor/plating,/area/maintenance/maintcentral) +"byR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral) +"byS" = (/obj/machinery/light,/turf/open/floor/plating,/area/maintenance/maintcentral) +"byT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral) +"byU" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/turf/open/floor/plating,/area/crew_quarters/captain) +"byV" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"byW" = (/obj/machinery/computer/communications,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"byX" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/coin/plasma,/turf/open/floor/wood,/area/crew_quarters/captain) +"byY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/open/floor/wood,/area/crew_quarters/captain) +"byZ" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/device/camera,/obj/item/weapon/storage/photo_album{pixel_y = -10},/turf/open/floor/wood,/area/crew_quarters/captain) +"bza" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bzb" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bzc" = (/obj/machinery/power/apc{dir = 1;name = "Chemistry APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bzd" = (/obj/machinery/camera{c_tag = "Chemistry";dir = 2;network = list("SS13")},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/chem_heater,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bze" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/chemistry) +"bzf" = (/obj/machinery/chem_master,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteyellow"},/area/medical/chemistry) +"bzg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bzh" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bzi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bzj" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bzk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/medical) +"bzl" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26;req_access_txt = "5"},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/medical) +"bzm" = (/obj/machinery/camera{c_tag = "Security Post - Medbay";dir = 2;network = list("SS13")},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/medical) +"bzn" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/medical) +"bzo" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzp" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzs" = (/obj/machinery/power/apc{dir = 1;name = "Morgue APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bzu" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency) +"bzv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"bzw" = (/turf/closed/wall,/area/assembly/chargebay) +"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bzy" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "mech bay"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/assembly/chargebay) +"bzz" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bzA" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2;pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/requests_console{department = "Robotics";departmentType = 2;name = "Robotics RC";pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bzB" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bzC" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics";name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) +"bzD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";closingLayer = 3.2;dir = 2;icon_state = "left";layer = 3.2;name = "Robotics Desk";req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{closingLayer = 3.3;id = "robotics";name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) +"bzE" = (/turf/closed/wall,/area/medical/research{name = "Research Division"}) +"bzF" = (/obj/machinery/door/airlock/research{name = "Research Division Access";req_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bzG" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd";name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/lab) +"bzH" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{closingLayer = 3.2;layer = 3.2;name = "Research and Development Desk";req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{closingLayer = 3.3;id = "rnd";name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab) +"bzI" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bzJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bzK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bzL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint2) +"bzM" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) +"bzN" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bzO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/rec_room) +"bzP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/rec_room) +"bzQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bzR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bzS" = (/obj/machinery/conveyor{dir = 5;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/disposal) +"bzT" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bzU" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"bzV" = (/obj/machinery/conveyor{dir = 10;id = "garbage";verted = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) +"bzW" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) +"bzX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bAh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/storage) +"bAj" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) +"bAk" = (/obj/machinery/door/window/eastleft{name = "Mail";req_access_txt = "50"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/quartermaster/office) +"bAl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"bAm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bAo" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) +"bAp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) +"bAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bAs" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) +"bAt" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";dir = 1;freq = 1400;location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/bridge/meeting_room) +"bAu" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/bridge/meeting_room) +"bAv" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral) +"bAw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bAx" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bAy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bAz" = (/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Command)";pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/captain) +"bAA" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"bAB" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/melee/chainofcommand,/turf/open/floor/wood,/area/crew_quarters/captain) +"bAC" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/requests_console{department = "Chemistry";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bAD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bAE" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bAF" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellow"},/area/medical/chemistry) +"bAG" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{dir = 8;name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bAH" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bAJ" = (/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bAK" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom{pixel_x = 25},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) +"bAL" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bAM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bAN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bAO" = (/turf/open/floor/plating,/area/storage/emergency) +"bAP" = (/obj/machinery/light/small{dir = 1},/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency) +"bAQ" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency) +"bAR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 4;name = "Mech Bay APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/assembly/chargebay) +"bAS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bAT" = (/turf/open/floor/plasteel,/area/assembly/chargebay) +"bAU" = (/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = 6;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/assembly/chargebay) +"bAV" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/chargebay) +"bAW" = (/obj/machinery/power/apc{dir = 8;name = "Robotics Lab APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bAX" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bAY" = (/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bBa" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) +"bBb" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) +"bBc" = (/obj/machinery/vending/robotics,/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) +"bBd" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bBe" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bBf" = (/obj/machinery/camera{c_tag = "Research Division Access";dir = 2;network = list("SS13")},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/medical/research{name = "Research Division"}) +"bBg" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurple"},/area/toxins/lab) +"bBh" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurple"},/area/toxins/lab) +"bBi" = (/obj/machinery/camera{c_tag = "Research and Development";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/button/door{dir = 2;id = "rnd";name = "Shutters Control Button";pixel_x = -6;pixel_y = 24;req_access_txt = "47"},/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurplecorner"},/area/toxins/lab) +"bBj" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bBk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bBl" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bBn" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) +"bBo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) +"bBp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) +"bBq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) +"bBr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/hallway/secondary/entry) +"bBs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bBt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bBu" = (/obj/machinery/conveyor{dir = 1;id = "garbage"},/obj/structure/sign/vacuum{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bBv" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{base_state = "right";density = 0;dir = 4;icon_state = "rightopen";layer = 3},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/disposal) +"bBw" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBx" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bBy" = (/obj/machinery/mineral/stacking_machine{input_dir = 1;stack_amt = 10},/turf/open/floor/plating,/area/maintenance/disposal) +"bBz" = (/obj/machinery/mineral/stacking_unit_console{dir = 2;machinedir = 8},/turf/closed/wall,/area/maintenance/disposal) +"bBA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bBB" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port) +"bBC" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bBD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bBE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bBF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) +"bBG" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) +"bBH" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBI" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBK" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/structure/closet/wardrobe/cargotech,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBL" = (/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBM" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBO" = (/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = -1;pixel_y = 24;req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bBP" = (/obj/machinery/photocopier,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/office) +"bBQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/office) +"bBR" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"bBT" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) +"bBU" = (/obj/machinery/power/apc{dir = 1;name = "Bridge Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/maintcentral) +"bBV" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plating,/area/maintenance/maintcentral) +"bBW" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) +"bBX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) +"bBY" = (/obj/structure/closet/secure_closet/freezer/money,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) +"bBZ" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) +"bCa" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) +"bCb" = (/obj/machinery/power/apc{dir = 1;name = "Vault APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) +"bCc" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) +"bCd" = (/obj/machinery/newscaster/security_unit{pixel_x = -32;pixel_y = 0},/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) +"bCe" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Captain's Desk Door";req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bCf" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bCg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/captain) +"bCh" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/captain) +"bCi" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bCj" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bCk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bCl" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellow"},/area/medical/chemistry) +"bCm" = (/obj/machinery/smartfridge/chemistry,/turf/closed/wall/r_wall,/area/medical/chemistry) +"bCn" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bCo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "whitebluecorner"},/area/medical/medbay) +"bCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) +"bCq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) +"bCr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) +"bCs" = (/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) +"bCu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bCT" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bCU" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bCV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bCW" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bCX" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bCY" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bCZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bDa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bDb" = (/turf/closed/wall,/area/maintenance/asmaint2) +"bDc" = (/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 12;id = "ferry_home";name = "port bay 2";turf_type = /turf/open/space;width = 5},/turf/open/space,/area/space) +"bDd" = (/obj/machinery/door/airlock/external{id_tag = null;name = "Port Docking Bay 2";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bDe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bDf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bDg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) +"bDh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/hallway/secondary/entry) +"bDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) +"bDj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bDk" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bDl" = (/obj/machinery/conveyor{dir = 1;id = "garbage";layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit";layer = 3;name = "disposal exit vent"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bDm" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/closed/wall,/area/maintenance/disposal) +"bDn" = (/obj/machinery/button/massdriver{id = "trash";pixel_x = -26;pixel_y = -6},/obj/machinery/button/door{id = "Disposal Exit";name = "Disposal Vent Control";pixel_x = -25;pixel_y = 4;req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) +"bDo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) +"bDp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) +"bDq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bDr" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access";req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bDs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/port) +"bDt" = (/turf/closed/wall/r_wall,/area/maintenance/port) +"bDu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/port) +"bDv" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance";req_access_txt = "31"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/quartermaster/storage) +"bDw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bDx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bDy" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) +"bDz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/quartermaster/office) +"bDA" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bDB" = (/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bDC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bDD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bDF" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) +"bDG" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bDH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bDI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) +"bDJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) +"bDK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/power/apc{dir = 2;name = "Head of Personnel APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads) +"bDL" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/maintcentral) +"bDM" = (/obj/machinery/power/apc{dir = 4;name = "Conference Room APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge/meeting_room) +"bDN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Confrence Room South";dir = 1},/turf/open/floor/wood,/area/bridge/meeting_room) +"bDO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bDP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) +"bDQ" = (/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) +"bDR" = (/obj/machinery/nuclearbomb/selfdestruct{layer = 2},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) +"bDS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) +"bDT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) +"bDU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bDV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) +"bDW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters";req_access = null;req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) +"bDX" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/captain) +"bDY" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bDZ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/item/clothing/glasses/science{pixel_x = 2;pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bEa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bEb" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bEc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bEd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bEe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteblue"},/area/medical/medbay) +"bEf" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bEg" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bEh" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bEi" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/cell_charger,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bEk" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bEl" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) +"bEm" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/assembly/chargebay) +"bEn" = (/turf/open/floor/plasteel/recharge_floor,/area/assembly/chargebay) +"bEo" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"bEp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bEq" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bEr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) +"bEs" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20;pixel_x = -3;pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) +"bEt" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) +"bEu" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) +"bEw" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) +"bEy" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bEz" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bEA" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) +"bEB" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) +"bEC" = (/obj/machinery/r_n_d/protolathe,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) +"bED" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/lab) +"bEE" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bEF" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3;pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bEG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bEH" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bEI" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bEJ" = (/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 = 32},/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bEK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bEL" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 4";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bEM" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 3";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) +"bEO" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bEP" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bEQ" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bER" = (/obj/machinery/light/small{dir = 8},/obj/machinery/mass_driver{id = "trash"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) +"bES" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/disposal) +"bET" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/disposal) +"bEU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"bEV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/disposal) +"bEW" = (/obj/effect/decal/cleanable/oil,/obj/machinery/light_switch{pixel_x = 25;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/disposal) +"bEX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/port) +"bEY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) +"bEZ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) +"bFa" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFc" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFf" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay";req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"bFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bFi" = (/obj/machinery/status_display{density = 0;pixel_y = 2;supply_display = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/office) +"bFj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/office) +"bFl" = (/obj/machinery/mineral/ore_redemption{input_dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) +"bFm" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bFn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bFo" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) +"bFp" = (/turf/closed/wall,/area/crew_quarters/heads) +"bFq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads) +"bFr" = (/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads) +"bFs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads) +"bFt" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1;pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1;pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) +"bFu" = (/obj/item/weapon/coin/silver{pixel_x = 7;pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12;pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4;pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6;pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5;pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) +"bFv" = (/turf/closed/wall,/area/crew_quarters/captain) +"bFw" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bFx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bFy" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bFz" = (/obj/machinery/door/airlock{name = "Private Restroom";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bFA" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bFC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bFD" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bFE" = (/obj/structure/table/glass,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bFF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bFG" = (/obj/structure/disposalpipe/segment,/obj/machinery/chem_heater,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bFH" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel{dir = 2;icon_state = "whiteyellow"},/area/medical/chemistry) +"bFI" = (/obj/machinery/chem_master,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteyellow"},/area/medical/chemistry) +"bFJ" = (/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/light,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bFK" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bFL" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = -26;req_access_txt = "5"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bFM" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bFO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/medical) +"bFP" = (/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/medical) +"bFQ" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bFR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bFS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bFT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bFU" = (/obj/structure/disposalpipe/segment{dir = 4},/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},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bFV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance";req_access_txt = "6"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/morgue) +"bFW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"bFX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/power/apc{dir = 1;name = "Starboard Emergency Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency) +"bFY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{sortType = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"bFZ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Mech Bay";dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bGa" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bGb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bGc" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bGd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/robotics) +"bGf" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) +"bGg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) +"bGi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) +"bGj" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bGk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bGl" = (/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) +"bGm" = (/obj/machinery/door/airlock/research{name = "Research Division Access";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bGn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) +"bGo" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/toxins/lab) +"bGp" = (/turf/open/floor/plasteel,/area/toxins/lab) +"bGq" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/open/floor/plasteel,/area/toxins/lab) +"bGr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/lab) +"bGs" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bGt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bGu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bGv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) +"bGx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/asmaint2) +"bGy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bGz" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bGA" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bGB" = (/obj/machinery/camera{c_tag = "Arrivals Bay 3 & 4";dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) +"bGC" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) +"bGD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"bGE" = (/turf/closed/wall/r_wall,/area/maintenance/disposal) +"bGF" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;icon_state = "switch-rev";id = "garbage";name = "disposal coveyor";position = -1},/turf/open/floor/plating,/area/maintenance/disposal) +"bGG" = (/turf/open/floor/plating,/area/maintenance/disposal) +"bGH" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/disposal) +"bGI" = (/obj/structure/closet,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plating,/area/maintenance/disposal) +"bGJ" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) +"bGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bGL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bGM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bGN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bGO" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay";req_access_txt = "31"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bGP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) +"bGQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/office) +"bGR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bGS" = (/obj/item/weapon/stamp{pixel_x = -3;pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4;pixel_y = -2},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bGT" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red,/obj/structure/table,/turf/open/floor/plasteel,/area/quartermaster/office) +"bGU" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/quartermaster/office) +"bGV" = (/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel,/area/quartermaster/office) +"bGW" = (/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/quartermaster/office) +"bGX" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/office) +"bGY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bGZ" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/central) +"bHa" = (/obj/machinery/button/flasher{id = "hopflash";pixel_x = 6;pixel_y = 36},/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = 6;pixel_y = 25;req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue";name = "Queue Shutters Control";pixel_x = -4;pixel_y = 25;req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -4;pixel_y = 36},/obj/machinery/pdapainter,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/heads) +"bHb" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = 32},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bHc" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/dogbed{anchored = 1;desc = "Ian's bed! Looks comfy.";name = "Ian's bed"},/mob/living/simple_animal/pet/dog/corgi/Ian{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bHe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bHf" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) +"bHg" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/ai_monitored/nuke_storage) +"bHh" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "vault"},/area/ai_monitored/nuke_storage) +"bHi" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/camera/motion{c_tag = "Vault";dir = 1;network = list("MiniSat")},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 10},/area/ai_monitored/nuke_storage) +"bHj" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/gun/projectile/revolver/russian,/obj/item/ammo_box/a357,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) +"bHk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/captain) +"bHl" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) +"bHm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) +"bHn" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/captain) +"bHo" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bHq" = (/obj/structure/table/glass,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2;pixel_y = 6},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bHr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bHs" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bHt" = (/turf/closed/wall,/area/medical/medbay) +"bHu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteblue"},/area/medical/medbay) +"bHv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteblue"},/area/medical/medbay) +"bHw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/medbay) +"bHx" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bHy" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 30;pixel_y = 0;pixel_z = 0},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bHz" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/security/checkpoint/medical) +"bHA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/medical) +"bHB" = (/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "6;5"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) +"bHC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/genetics) +"bHD" = (/turf/closed/wall,/area/medical/genetics) +"bHE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/genetics) +"bHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/genetics) +"bHG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/genetics) +"bHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) +"bHI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"bHJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall,/area/assembly/chargebay) +"bHK" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/assembly/chargebay) +"bHL" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bHM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bHN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) +"bHO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/assembly/robotics) +"bHP" = (/turf/open/floor/plasteel,/area/assembly/robotics) +"bHR" = (/obj/structure/table,/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/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000;pixel_x = 5;pixel_y = -5},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/crowbar,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bHS" = (/turf/closed/wall,/area/assembly/robotics) +"bHT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) +"bHU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) +"bHV" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) +"bHW" = (/turf/closed/wall,/area/toxins/lab) +"bHX" = (/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) +"bHY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) +"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) +"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhitecorner"},/area/toxins/lab) +"bIb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bIc" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2;pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/power/apc{dir = 4;name = "Research Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bId" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/toxins/lab) +"bIe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/toxins/lab) +"bIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bIg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bIh" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bIi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) +"bIj" = (/turf/closed/wall,/area/toxins/shuttledock) +"bIk" = (/turf/closed/wall/shuttle{icon_state = "swall_s6";dir = 2},/area/shuttle/outpost) +"bIl" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/outpost) +"bIm" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/open/floor/plating,/area/shuttle/outpost) +"bIn" = (/turf/closed/wall/shuttle{icon_state = "swall_s10";dir = 2},/area/shuttle/outpost) +"bIo" = (/obj/machinery/door/poddoor{id = "trash";name = "disposal bay door"},/turf/open/floor/plating,/area/maintenance/disposal) +"bIp" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) +"bIq" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) +"bIr" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bIs" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) +"bIt" = (/turf/open/floor/plasteel{dir = 1;icon_state = "browncorner"},/area/quartermaster/office) +"bIu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) +"bIv" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bIw" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bIx" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bIy" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Cargo Desk";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bIz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/quartermaster/office) +"bIB" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bIC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bID" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/primary/central) +"bIE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/hallway/primary/central) +"bIF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) +"bIG" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8;icon_state = "left";name = "Reception Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{base_state = "rightsecure";dir = 4;icon_state = "rightsecure";name = "Head of Personnel's Desk";req_access = null;req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/flasher{id = "hopflash";pixel_x = 0;pixel_y = 28},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bIH" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/heads) +"bII" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads) +"bIJ" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/carpet,/area/crew_quarters/heads) +"bIK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) +"bIL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bIM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) +"bIN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIP" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIQ" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked";locked = 1;req_access_txt = "53"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/nuke_storage) +"bIR" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"bIU" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bIV" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters";dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) +"bIW" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4;pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/open/floor/carpet,/area/crew_quarters/captain) +"bIX" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) +"bIY" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bIZ" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bJa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bJb" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bJc" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bJd" = (/obj/structure/bed/roller,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Exit Button";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-whitebot (WEST)";icon_state = "whitebot";dir = 8},/area/medical/medbay) +"bJe" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay) +"bJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJg" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJj" = (/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bJl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/medical/genetics) +"bJm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bJn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/genetics) +"bJo" = (/obj/machinery/computer/cloning,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/genetics) +"bJp" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/genetics) +"bJq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/genetics) +"bJr" = (/obj/machinery/power/apc{dir = 1;name = "Genetics APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_medsci,/obj/item/weapon/storage/pill_bottle/mutadone,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bJs" = (/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Genetics";departmentType = 0;name = "Genetics Requests Console";pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bJt" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteblue"},/area/medical/genetics) +"bJu" = (/obj/structure/window/reinforced{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) +"bJv" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) +"bJw" = (/turf/closed/wall/r_wall,/area/medical/genetics) +"bJx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall,/area/assembly/chargebay) +"bJy" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"bJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"bJA" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) +"bJB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bJC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bJD" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/plasteel,/area/assembly/robotics) +"bJF" = (/obj/structure/table,/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/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bJG" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) +"bJH" = (/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/medical/research{name = "Research Division"}) +"bJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/research{name = "Research Division"}) +"bJJ" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/medical/research{name = "Research Division"}) +"bJK" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bJL" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bJM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bJN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bJO" = (/obj/machinery/light_switch{pixel_x = 0;pixel_y = -23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bJP" = (/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Research Division Delivery";req_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/toxins/lab) +"bJQ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Research Division"},/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/lab) +"bJR" = (/turf/closed/wall/r_wall,/area/toxins/explab) +"bJS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bJT" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bJU" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bJV" = (/obj/machinery/power/apc{dir = 1;name = "Science Outpost Dock APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bJW" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/toxins/shuttledock) +"bJX" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/outpost) +"bJY" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) +"bJZ" = (/obj/machinery/computer/shuttle/outpost,/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) +"bKa" = (/obj/docking_port/stationary{dir = 2;dwidth = 11;height = 22;id = "whiteship_ss13";name = "SS13 Arrival Docking";width = 35},/turf/open/space,/area/space) +"bKb" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) +"bKc" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"bKd" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) +"bKe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/quartermaster/storage) +"bKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bKg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bKh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bKi" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bKj" = (/obj/machinery/autolathe,/obj/machinery/light_switch{pixel_x = -27},/turf/open/floor/plasteel,/area/quartermaster/office) +"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bKl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bKm" = (/obj/machinery/computer/cargo,/turf/open/floor/plasteel,/area/quartermaster/office) +"bKn" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/quartermaster/office) +"bKo" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"bKp" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/central) +"bKq" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) +"bKr" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/hallway/primary/central) +"bKs" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) +"bKt" = (/obj/machinery/computer/card,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/crew_quarters/heads) +"bKu" = (/turf/open/floor/carpet,/area/crew_quarters/heads) +"bKv" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads) +"bKw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) +"bKx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "Vault Access";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/nuke_storage) +"bKy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) +"bKz" = (/turf/closed/wall/r_wall,/area/teleporter) +"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/teleporter) +"bKB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/teleporter) +"bKC" = (/obj/machinery/door/airlock/maintenance{name = "Teleporter Maintenance";req_access_txt = "17"},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/teleporter) +"bKD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bKE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bKF" = (/turf/closed/wall,/area/medical/chemistry) +"bKG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Chemistry Lab";req_access_txt = "5; 33"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) +"bKH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/chemistry) +"bKI" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{dir = 1;name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry) +"bKJ" = (/obj/structure/bed/roller,/turf/open/floor/plasteel{tag = "icon-whitebot (WEST)";icon_state = "whitebot";dir = 8},/area/medical/medbay) +"bKK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKM" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bKQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor2";name = "Genetics";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKT" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKU" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKW" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bKX" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteblue"},/area/medical/genetics) +"bKY" = (/turf/open/floor/plasteel,/area/medical/genetics) +"bKZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 14},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) +"bLa" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance";req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/chargebay) +"bLb" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bLc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bLd" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bLe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) +"bLf" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/assembly/robotics) +"bLh" = (/obj/machinery/button/door{dir = 2;id = "robotics2";name = "Shutters Control Button";pixel_x = 24;pixel_y = -24;req_access_txt = "29"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bLi" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Robotics Desk";req_access_txt = "29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/assembly/robotics) +"bLj" = (/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bLk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bLl" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/lab) +"bLm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bLn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) +"bLo" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/toxins/explab) +"bLp" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab";dir = 2;network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) +"bLq" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) +"bLr" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) +"bLs" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/toxins/explab) +"bLv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bLw" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bLx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bLy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/shuttledock) +"bLz" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/outpost) +"bLA" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) +"bLB" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) +"bLC" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock";req_access_txt = "31"},/turf/open/floor/plating,/area/quartermaster/storage) +"bLD" = (/turf/open/floor/plating,/area/quartermaster/storage) +"bLE" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/storage) +"bLF" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) +"bLG" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400;home_destination = "QM #1";suffix = "#1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bLH" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/item/device/multitool,/obj/machinery/camera{c_tag = "Cargo Office";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/office) +"bLI" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel,/area/quartermaster/office) +"bLJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLK" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) +"bLL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bLM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/carpet,/area/crew_quarters/heads) +"bLN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) +"bLO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bLP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) +"bLQ" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/ai_monitored/nuke_storage) +"bLR" = (/turf/closed/wall,/area/teleporter) +"bLS" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/structure/table,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/teleporter) +"bLT" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) +"bLU" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) +"bLV" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) +"bLW" = (/obj/machinery/camera{c_tag = "Teleporter"},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) +"bLX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/teleporter) +"bLY" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/teleporter) +"bLZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) +"bMa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bMb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) +"bMc" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellowcorner"},/area/medical/medbay) +"bMd" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) +"bMe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) +"bMf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) +"bMg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellowcorner"},/area/medical/medbay) +"bMh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay West";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMn" = (/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"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bMo" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/genetics) +"bMp" = (/obj/structure/table/glass,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors.";id = "GeneticsDoor2";name = "Genetics Exit Button";normaldoorcontrol = 1;pixel_x = -6;pixel_y = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bMq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bMr" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteblue"},/area/medical/genetics) +"bMs" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bMt" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bMu" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bMv" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/assembly/chargebay) +"bMw" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "bot"},/area/assembly/chargebay) +"bMx" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 4},/area/assembly/robotics) +"bMy" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bMz" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bMB" = (/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) +"bMD" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bME" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bMF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bMG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bMH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Division North";dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bMI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bMJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bMK" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bML" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bMM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bMN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/explab) +"bMO" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMP" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Shuttle";req_access_txt = "7"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bMU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)";icon_state = "pipe-j2";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) +"bMW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bMX" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bMY" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/toxins/shuttledock) +"bMZ" = (/turf/open/floor/plating,/area/toxins/shuttledock) +"bNa" = (/obj/machinery/door/airlock/shuttle{req_access_txt = "7"},/turf/open/floor/plating,/area/shuttle/outpost) +"bNb" = (/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "outpost_home";name = "outpost shuttle bay";width = 7},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "outpost";name = "outpost shuttle";port_angle = 90;width = 7},/turf/closed/wall/shuttle{icon_state = "swall3"},/area/shuttle/outpost) +"bNc" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock";dir = 4},/obj/machinery/button/door{id = "QMLoaddoor";layer = 4;name = "Loading Doors";pixel_x = -24;pixel_y = -8},/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";layer = 4;name = "Loading Doors";pixel_x = -24;pixel_y = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) +"bNd" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2";suffix = "#2"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bNe" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel,/area/quartermaster/office) +"bNf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bNj" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"bNk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bNl" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/heads) +"bNm" = (/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bNn" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/coin/gold,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bNo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bNp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bNq" = (/turf/closed/wall,/area/ai_monitored/nuke_storage) +"bNr" = (/obj/structure/closet/secure_closet/security,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/ai_monitored/nuke_storage) +"bNs" = (/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/ai_monitored/nuke_storage) +"bNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/ai_monitored/nuke_storage) +"bNu" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bNv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/ai_monitored/nuke_storage) +"bNw" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/ai_monitored/nuke_storage) +"bNx" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/ai_monitored/nuke_storage) +"bNy" = (/obj/machinery/power/apc{dir = 8;name = "Teleporter APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/teleporter) +"bNz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) +"bNA" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) +"bNB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel,/area/teleporter) +"bNC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) +"bND" = (/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"},/turf/open/floor/plasteel,/area/teleporter) +"bNE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access";req_access_txt = "17"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) +"bNF" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) +"bNG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bNH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) +"bNI" = (/obj/structure/table,/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNJ" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNL" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNS" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNT" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bNU" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/medical_cloning,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bNV" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bNW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bNX" = (/obj/structure/chair/withwheels/office/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bNY" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteblue"},/area/medical/genetics) +"bNZ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/westleft{dir = 2;name = "Monkey Pen";req_access_txt = "9"},/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) +"bOa" = (/obj/structure/window/reinforced,/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) +"bOb" = (/turf/closed/wall/r_wall,/area/assembly/chargebay) +"bOc" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/assembly/robotics) +"bOd" = (/obj/machinery/door/airlock/research{name = "Robotics Lab";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) +"bOe" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bOf" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOg" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bOh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOk" = (/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bOm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOp" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOr" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOs" = (/obj/machinery/power/apc{dir = 4;name = "Experimentation Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bOt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/explab) +"bOw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bOx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"bOy" = (/obj/machinery/computer/shuttle/outpost,/turf/open/floor/plasteel/white,/area/toxins/shuttledock) +"bOz" = (/obj/docking_port/stationary{dir = 8;dwidth = 5;height = 7;id = "supply_home";name = "supply bay";width = 12},/turf/open/space,/area/space) +"bOA" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bOB" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #3"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bOC" = (/obj/structure/table,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/quartermaster/office) +"bOD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bOE" = (/obj/structure/chair{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office) +"bOF" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/hallway/primary/central) +"bOG" = (/obj/machinery/keycard_auth{pixel_x = -24;pixel_y = 0},/obj/machinery/computer/cargo,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/heads) +"bOH" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bOI" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bOJ" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bOL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bOM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bON" = (/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bOO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bOP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bOQ" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/ai_monitored/nuke_storage) +"bOR" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/teleporter) +"bOS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warning"},/area/teleporter) +"bOT" = (/turf/open/floor/plasteel{icon_state = "warning"},/area/teleporter) +"bOU" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/teleporter) +"bOV" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/teleporter) +"bOW" = (/obj/machinery/shieldwallgen,/turf/open/floor/plasteel{icon_state = "bot"},/area/teleporter) +"bOX" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/teleporter) +"bOY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) +"bOZ" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = -30;pixel_y = 0;pixel_z = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bPa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bPb" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bPc" = (/turf/closed/wall,/area/medical/sleeper) +"bPd" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/sleeper) +"bPe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bPf" = (/obj/machinery/door/firedoor,/obj/machinery/camera{c_tag = "Medbay Hallway";dir = 4;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bPg" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPh" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPj" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/disks{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/disks,/obj/item/device/radio/headset/headset_medsci,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPk" = (/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 12},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPl" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bPm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) +"bPn" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) +"bPo" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) +"bPp" = (/obj/machinery/camera{c_tag = "Research Division West";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bPq" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bPs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bPt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bPu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bPv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bPw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bPx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bPy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/hor) +"bPz" = (/turf/closed/wall,/area/crew_quarters/hor) +"bPA" = (/obj/machinery/light_switch{pixel_x = -20;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bPB" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bPC" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bPD" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bPE" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) +"bPF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bPG" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) +"bPH" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bPI" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) +"bPJ" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/light,/obj/machinery/status_display{density = 0;pixel_y = -30;supply_display = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) +"bPK" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/quartermaster/storage) +"bPL" = (/obj/machinery/camera{c_tag = "Cargo Bay South";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bPM" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #4"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) +"bPN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6;pixel_y = -5},/turf/open/floor/plasteel,/area/quartermaster/office) +"bPO" = (/obj/machinery/light,/obj/machinery/power/apc{dir = 2;name = "Cargo Office APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "browncorner"},/area/quartermaster/office) +"bPP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bPQ" = (/obj/structure/closet/crate,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/quartermaster/office) +"bPR" = (/turf/closed/wall,/area/security/checkpoint/supply) +"bPS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/supply) +"bPU" = (/obj/machinery/camera{c_tag = "Cargo Bay Entrance";dir = 4;network = list("SS13")},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bPV" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/hallway/primary/central) +"bPW" = (/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/obj/structure/closet/secure_closet/hop,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/crew_quarters/heads) +"bPX" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Personnel's Desk";departmentType = 5;name = "Head of Personnel RC";pixel_y = -30},/obj/machinery/camera{c_tag = "Head of Personnel's Office";dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bPY" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bPZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bQa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bQc" = (/obj/machinery/button/door{id = "vaultshut";name = "Vault Shutters Control";pixel_x = -25;pixel_y = -25;req_access_txt = "1"},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/ai_monitored/nuke_storage) +"bQd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bQe" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/withwheels/office/dark,/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bQg" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/ai_monitored/nuke_storage) +"bQh" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/ai_monitored/nuke_storage) +"bQi" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/teleporter) +"bQj" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/teleporter) +"bQk" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter) +"bQl" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/teleporter) +"bQm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQn" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/medbay) +"bQo" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/medical/medbay) +"bQp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bQq" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bQr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bQs" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bQt" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bQu" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitehall"},/area/medical/sleeper) +"bQv" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bQw" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/medical/sleeper) +"bQx" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7;pixel_y = 1},/turf/open/floor/plasteel,/area/medical/sleeper) +"bQy" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/open/floor/plasteel,/area/medical/sleeper) +"bQz" = (/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Medbay Cryogenics";dir = 2;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel,/area/medical/sleeper) +"bQA" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/bodybags{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQB" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitepurple"},/area/medical/genetics) +"bQF" = (/obj/machinery/door/airlock/research{name = "Genetics Research";req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQG" = (/obj/structure/disposalpipe/sortjunction{sortType = 23},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQH" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bQI" = (/obj/machinery/door/airlock/research{name = "Genetics Research Access";req_access_txt = "47"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) +"bQK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) +"bQL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bQS" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bQU" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3;pixel_y = -2},/obj/item/weapon/disk/tech_disk/gooncode,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bQV" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office.";name = "Research Monitor";network = list("RD");pixel_x = 0;pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bQW" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1;department = "Research Director's Desk";departmentType = 5;name = "Research Director RC";pixel_x = -2;pixel_y = 30},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bQX" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2;pixel_y = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bQY" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/crew_quarters/hor) +"bQZ" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/crew_quarters/hor) +"bRa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/explab) +"bRb" = (/turf/closed/wall,/area/toxins/explab) +"bRc" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/turf/open/floor/plasteel{dir = 4;icon_state = "whitecorner"},/area/toxins/explab) +"bRd" = (/obj/machinery/computer/rdconsole/experiment,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/toxins/explab) +"bRe" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/toxins/explab) +"bRf" = (/obj/machinery/button/door{id = "telelab";name = "Test Chamber Blast Doors";pixel_x = 25;pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/explab) +"bRg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bRh" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bRi" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bRj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bRk" = (/turf/closed/wall/shuttle{icon_state = "swall_s5";dir = 2},/area/shuttle/outpost) +"bRm" = (/turf/closed/wall/shuttle{icon_state = "swall_s9";dir = 2},/area/shuttle/outpost) +"bRn" = (/turf/closed/wall,/area/quartermaster/qm) +"bRo" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bRp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/qm) +"bRq" = (/turf/closed/wall,/area/quartermaster/miningdock) +"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/miningdock) +"bRs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bRt" = (/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/supply) +"bRv" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/supply) +"bRw" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/supply) +"bRx" = (/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/heads) +"bRz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/turf/open/floor/plating,/area/ai_monitored/nuke_storage) +"bRB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bRC" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/obj/machinery/door/window/eastright{dir = 2;name = "Vault Access";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red,/area/ai_monitored/nuke_storage) +"bRD" = (/obj/machinery/camera{c_tag = "Central Hallway South-East";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/sleeper) +"bRF" = (/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Surgery Observation";req_access_txt = "0"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bRG" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bRH" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bRI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "delivery"},/area/medical/sleeper) +"bRJ" = (/turf/open/floor/plasteel,/area/medical/sleeper) +"bRK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel,/area/medical/sleeper) +"bRL" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/medical/sleeper) +"bRM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plasteel,/area/medical/sleeper) +"bRN" = (/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor";name = "Genetics";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair,/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRP" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research";req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRS" = (/obj/machinery/camera{c_tag = "Genetics Research";dir = 1;network = list("SS13","RD");pixel_x = 0},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitepurple"},/area/medical/genetics) +"bRT" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) +"bRU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRV" = (/obj/machinery/camera{c_tag = "Genetics Access";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bRW" = (/turf/closed/wall/r_wall,/area/toxins/server) +"bRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room";req_access = null;req_access_txt = "30"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bRY" = (/turf/closed/wall,/area/security/checkpoint/science) +"bSa" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/security/checkpoint/science) +"bSb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) +"bSc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/science) +"bSd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bSe" = (/obj/structure/table,/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 5;req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2";name = "Research Lab Shutter Control";pixel_x = 5;pixel_y = 5;req_access_txt = "47"},/obj/item/weapon/coin/uranium,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bSf" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bSg" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bSh" = (/obj/structure/rack,/obj/item/device/aicard,/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bSi" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) +"bSj" = (/obj/structure/displaycase/labcage,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bSk" = (/turf/closed/wall/r_wall,/area/crew_quarters/hor) +"bSl" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) +"bSm" = (/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) +"bSn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bSo" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bSp" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6;pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4;pixel_y = 7},/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/item/weapon/coin/silver,/turf/open/floor/plasteel{dir = 9;icon_state = "brown"},/area/quartermaster/qm) +"bSq" = (/obj/machinery/power/apc{dir = 1;name = "Quartermaster APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) +"bSr" = (/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) +"bSs" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) +"bSt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) +"bSu" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{dir = 5;icon_state = "brown"},/area/quartermaster/qm) +"bSv" = (/obj/machinery/power/apc{dir = 1;name = "Mining Dock APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bSw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bSx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bSy" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bSz" = (/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/supply) +"bSC" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/computer/security/mining,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/supply) +"bSD" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bSE" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"bSF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"bSG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) +"bSI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/hallway/primary/central) +"bSJ" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) +"bSK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) +"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) +"bSM" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/hallway/primary/central) +"bSN" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bSO" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bSP" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bSQ" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Surgery Observation"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bSR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bSS" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bST" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bSU" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Medbay Treatment Center";dir = 4;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bSV" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bSW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/medical/sleeper) +"bSX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) +"bSY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/medical/sleeper) +"bSZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bTa" = (/obj/machinery/light,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors.";id = "GeneticsDoor";name = "Genetics Exit Button";normaldoorcontrol = 1;pixel_x = -24;pixel_y = 3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bTb" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side,/area/medical/genetics) +"bTc" = (/obj/machinery/computer/cloning,/turf/open/floor/plasteel/whiteblue/side,/area/medical/genetics) +"bTd" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/genetics) +"bTe" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/medical/genetics) +"bTf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bTg" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bTh" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bTi" = (/obj/structure/closet/wardrobe/genetics_white,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) +"bTj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint) +"bTk" = (/obj/machinery/r_n_d/server/robotics,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bTl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 140;on = 1;pressure_checks = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bTm" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) +"bTn" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bTo" = (/obj/machinery/camera{c_tag = "Server Room";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/power/apc{dir = 1;name = "Server Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bTp" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 2;on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bTq" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = -30;pixel_y = 0},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/science) +"bTs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) +"bTt" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office.";name = "Research Monitor";network = list("RD");pixel_x = 0;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) +"bTu" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/science) +"bTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bTw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/hor) +"bTx" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/pen/blue,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bTy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bTz" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bTA" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bTB" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bTC" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/crew_quarters/hor) +"bTD" = (/turf/open/floor/engine,/area/toxins/explab) +"bTE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bTF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bTG" = (/turf/open/floor/plating,/area/maintenance/asmaint2) +"bTH" = (/obj/machinery/computer/cargo,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/qm) +"bTI" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bTJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bTK" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Quartermaster"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bTL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bTM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "brown"},/area/quartermaster/qm) +"bTN" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bTO" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bTQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 3},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bTS" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"bTT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/supply) +"bUa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHE";location = "AIE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP";location = "CHE"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUh" = (/obj/structure/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bUi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bUj" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bUk" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) +"bUl" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bUm" = (/obj/machinery/light,/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bUn" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) +"bUo" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench{pixel_x = 5;pixel_y = -5},/obj/machinery/cell_charger,/turf/open/floor/plasteel,/area/medical/sleeper) +"bUp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/medical/sleeper) +"bUq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) +"bUr" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) +"bUs" = (/turf/open/floor/plating,/area/maintenance/asmaint) +"bUt" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"bUu" = (/obj/machinery/airalarm/server{dir = 4;pixel_x = -22;pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/bluegrid{icon_state = "dark";name = "Server Walkway";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bUv" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/bluegrid{icon_state = "dark";name = "Server Walkway";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room";req_access_txt = "30"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bUx" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bUy" = (/obj/structure/chair/withwheels/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bUz" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bUA" = (/obj/machinery/camera{c_tag = "Security Post - Science";dir = 4;network = list("SS13","RD")},/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/science) +"bUC" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bUD" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bUE" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/science) +"bUF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bUG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bUH" = (/obj/machinery/door/airlock/glass_command{name = "Research Director";req_access_txt = "30"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUI" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUL" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUM" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bUN" = (/obj/machinery/r_n_d/experimentor,/turf/open/floor/engine,/area/toxins/explab) +"bUO" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine,/area/toxins/explab) +"bUP" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bUQ" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Quartermaster's Office";dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/status_display{density = 0;pixel_x = -32;pixel_y = 0;supply_display = 1},/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/quartermaster/qm) +"bUR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) +"bUS" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) +"bUT" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) +"bUU" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) +"bUV" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "brown"},/area/quartermaster/qm) +"bUW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/qm) +"bUX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bUY" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bUZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bVa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) +"bVb" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/supply) +"bVd" = (/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply) +"bVe" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/obj/machinery/camera{c_tag = "Security Post - Cargo";dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/supply) +"bVf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) +"bVg" = (/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"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVh" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVi" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Central Primary Hallway South-West";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVj" = (/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;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVl" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVm" = (/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVo" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32;pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = -32;pixel_y = -24;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = -32;pixel_y = -32;tag = "icon-direction_evac (EAST)"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVu" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVv" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVw" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVx" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVA" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) +"bVB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) +"bVC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) +"bVD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) +"bVE" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Recovery Room";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bVF" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bVG" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/pen,/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 0;pixel_y = 30;pixel_z = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bVH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bVI" = (/turf/closed/wall,/area/medical/cmo) +"bVJ" = (/obj/machinery/suit_storage_unit/cmo,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bVK" = (/obj/machinery/computer/crew,/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Medical Officer's Desk";departmentType = 5;name = "Chief Medical Officer RC";pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bVL" = (/obj/machinery/computer/med_data,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bVM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) +"bVO" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"bVP" = (/obj/machinery/r_n_d/server/core,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bVQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) +"bVR" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) +"bVS" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bVT" = (/obj/machinery/computer/rdservercontrol,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bVU" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) +"bVV" = (/obj/item/device/radio/intercom{pixel_x = -25},/obj/structure/filingcabinet,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/science) +"bVX" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) +"bVY" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) +"bVZ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/science) +"bWa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bWb" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bWc" = (/obj/machinery/power/apc{dir = 8;name = "RD Office APC";pixel_x = -25},/obj/structure/cable,/obj/machinery/light_switch{pixel_y = -23},/obj/item/weapon/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWd" = (/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/obj/machinery/light,/obj/machinery/computer/card/minor/rd,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWe" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4;pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4;pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office";dir = 1;network = list("SS13","RD")},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWf" = (/obj/structure/closet/secure_closet/RD,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWg" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWh" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) +"bWi" = (/obj/machinery/camera{c_tag = "Experimentor Lab Chamber";dir = 1;network = list("SS13","RD")},/obj/machinery/light,/obj/structure/sign/nosmoking_2{pixel_y = -32},/turf/open/floor/engine,/area/toxins/explab) +"bWj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bWk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bWl" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bWm" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bWn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"bWo" = (/turf/closed/wall,/area/maintenance/aft) +"bWp" = (/turf/closed/wall,/area/storage/tech) +"bWq" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/central) +"bWs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/central) +"bWt" = (/turf/closed/wall,/area/janitor) +"bWu" = (/obj/machinery/door/airlock{name = "Custodial Closet";req_access_txt = "26"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) +"bWv" = (/turf/closed/wall,/area/maintenance/asmaint) +"bWw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) +"bWx" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) +"bWy" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/open/floor/plasteel,/area/medical/sleeper) +"bWz" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/sleeper) +"bWA" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWB" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/sleeper) +"bWC" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/open/floor/plasteel,/area/medical/sleeper) +"bWD" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "whitebluecorner"},/area/medical/sleeper) +"bWF" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWG" = (/obj/structure/closet/wardrobe/white/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWH" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWI" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/camera{c_tag = "Medbay Storage";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWJ" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWK" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bWL" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitebluecorner"},/area/medical/medbay) +"bWM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/cmo) +"bWN" = (/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bWO" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bWP" = (/obj/machinery/keycard_auth{pixel_x = 24;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bWQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"bWR" = (/turf/closed/wall/r_wall,/area/toxins/xenobiology) +"bWS" = (/turf/closed/wall,/area/toxins/storage) +"bWT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bWU" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bWV" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bWW" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bWX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bWY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 32},/turf/open/space,/area/space) +"bWZ" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining";departmentType = 0;pixel_x = -30;pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bXb" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bXc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bXd" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance";req_access_txt = "48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) +"bXe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bXf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1;name = "Cargo Security APC";pixel_x = 1;pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) +"bXg" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bXh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bXi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"bXk" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) +"bXl" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/storage/tech) +"bXm" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plating,/area/storage/tech) +"bXn" = (/obj/machinery/camera{c_tag = "Tech Storage";dir = 2},/obj/machinery/power/apc{dir = 1;name = "Tech Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/storage/tech) +"bXo" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) +"bXp" = (/obj/structure/table,/obj/item/device/plant_analyzer,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/storage/tech) +"bXq" = (/turf/open/floor/plating,/area/storage/tech) +"bXr" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"bXt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"bXu" = (/obj/structure/closet/jcloset,/turf/open/floor/plasteel,/area/janitor) +"bXv" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel,/area/janitor) +"bXw" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/vehicle/janicart,/turf/open/floor/plasteel,/area/janitor) +"bXx" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/janitor) +"bXy" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) +"bXz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/janitor) +"bXA" = (/turf/open/floor/plasteel,/area/janitor) +"bXB" = (/obj/machinery/door/window/westleft{name = "Janitoral Delivery";req_access_txt = "26"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/janitor) +"bXC" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Janitor"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/janitor) +"bXD" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/asmaint) +"bXE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint) +"bXF" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/button/door{id = "surgery";name = "Surgery Shutter Control";pixel_x = -25;req_one_access_txt = "5"},/turf/open/floor/plasteel{dir = 4;icon_state = "whitehall"},/area/medical/sleeper) +"bXG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXH" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXJ" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitehall"},/area/medical/sleeper) +"bXK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) +"bXL" = (/obj/structure/table,/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitebluecorner"},/area/medical/sleeper) +"bXM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteblue"},/area/medical/sleeper) +"bXO" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXR" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "45"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bXS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/medbay) +"bXT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bXU" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bXV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bXW" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/coin/silver,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bXX" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bXY" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/tie/stethoscope,/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bXZ" = (/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{pixel_x = 25},/obj/machinery/camera{c_tag = "Chief Medical Office";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bYa" = (/turf/open/floor/engine,/area/toxins/xenobiology) +"bYb" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber";dir = 2;network = list("Xeno","RD");pixel_x = 0},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) +"bYc" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/storage) +"bYd" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/storage) +"bYe" = (/obj/machinery/power/apc{dir = 8;name = "Misc Research APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bYf" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bYg" = (/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"bYh" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bYi" = (/turf/closed/wall,/area/toxins/mixing) +"bYj" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/plasmaresearch,/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYl" = (/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/camera{c_tag = "Toxins Lab West";dir = 2;network = list("SS13","RD");pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYm" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/item/weapon/storage/firstaid/toxin,/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYo" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) +"bYp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/toxins/mixing) +"bYq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/mixing) +"bYr" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/toxins/mixing) +"bYs" = (/turf/closed/wall/r_wall,/area/toxins/mixing) +"bYt" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bYu" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bYv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bYw" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"bYx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/mixing) +"bYy" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/labor) +"bYz" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Mining Dock";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bYA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bYB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bYC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/wardrobe/miner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bYD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/miningdock) +"bYE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bYF" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bYG" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 15},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bYH" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"bYI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/aft) +"bYJ" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"bYK" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"bYL" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"bYM" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"bYN" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/open/floor/plating,/area/storage/tech) +"bYO" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/storage/tech) +"bYP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) +"bYQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"bYR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bYS" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"bYT" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/open/floor/plasteel,/area/janitor) +"bYU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/janitor) +"bYV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/janitor) +"bYW" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor) +"bYX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) +"bYY" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor) +"bYZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 8;name = "Custodial Closet APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/janitor) +"bZa" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"bZb" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 6},/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) +"bZc" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) +"bZd" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"bZe" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) +"bZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) +"bZg" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZi" = (/obj/structure/table/optable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/medical/sleeper) +"bZm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/sleeper) +"bZn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZo" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitebluecorner"},/area/medical/sleeper) +"bZp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) +"bZq" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZs" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"bZt" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = -30;pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay South";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bZu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"bZv" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bZw" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bZx" = (/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"bZy" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"bZz" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"bZA" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"bZB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"bZC" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"bZD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/storage) +"bZE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"bZF" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"bZG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing) +"bZH" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"bZI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"bZJ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"bZK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"bZL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"bZM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/asmaint2) +"bZN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/mixing) +"bZO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/toxins/mixing) +"bZP" = (/obj/machinery/doppler_array{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/mixing) +"bZQ" = (/turf/closed/indestructible,/area/toxins/test_area) +"bZR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/toxins/test_area) +"bZS" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"bZT" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"bZU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock) +"bZV" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel{dir = 9;icon_state = "brown"},/area/quartermaster/miningdock) +"bZW" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bZX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bZY" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bZZ" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) +"caa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cab" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) +"cac" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"cad" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/borgupload{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/aiupload{pixel_x = 2;pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tech) +"cae" = (/obj/machinery/camera{c_tag = "Secure Tech Storage";dir = 2},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) +"caf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/storage/tech) +"cag" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) +"cah" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/pandemic{pixel_x = -3;pixel_y = 3},/obj/item/weapon/circuitboard/computer/rdconsole,/obj/item/weapon/circuitboard/machine/rdserver{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/destructive_analyzer,/obj/item/weapon/circuitboard/machine/protolathe,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/circuitboard/computer/aifixer,/obj/item/weapon/circuitboard/computer/teleporter,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/obj/item/weapon/circuitboard/machine/mechfab,/turf/open/floor/plating,/area/storage/tech) +"cai" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/mining,/obj/item/weapon/circuitboard/machine/autolathe{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/computer/arcade/battle,/turf/open/floor/plating,/area/storage/tech) +"caj" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/processor,/obj/item/weapon/circuitboard/machine/telecomms/receiver,/obj/item/weapon/circuitboard/machine/telecomms/server,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/item/weapon/circuitboard/computer/message_monitor{pixel_y = -5},/turf/open/floor/plating,/area/storage/tech) +"cak" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cal" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/key/janitor,/turf/open/floor/plasteel,/area/janitor) +"cam" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) +"can" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/janitor) +"cao" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/janitor) +"cap" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/janitor) +"caq" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/janitor) +"car" = (/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/open/floor/plating,/area/maintenance/asmaint) +"cas" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cat" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) +"cau" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) +"cav" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4;name = "Treatment Center APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) +"caw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitehall"},/area/medical/sleeper) +"cax" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cay" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"caz" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{dir = 1;icon_state = "whitebluecorner"},/area/medical/sleeper) +"caA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"caB" = (/obj/machinery/vending/wallmed{pixel_x = 28;pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay Recovery Room";dir = 8;network = list("SS13")},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"caC" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"caE" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caF" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caG" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv4";name = "Privacy Shutters";pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caH" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv4";name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) +"caI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"caL" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer";req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"caM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"caN" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"caO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"caP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/cmo) +"caQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"caR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"caS" = (/obj/machinery/power/apc{dir = 8;name = "Toxins Storage APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Toxins Storage";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/mob/living/simple_animal/mouse,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/door/airlock/research{name = "Toxins Storage";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"caY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"caZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"cba" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"cbb" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab";req_access_txt = "8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cbc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cbd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cbe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) +"cbf" = (/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/toxins/mixing) +"cbg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/toxins/mixing) +"cbh" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/mixing) +"cbi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/closed/wall,/area/toxins/mixing) +"cbj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing) +"cbk" = (/obj/machinery/button/massdriver{dir = 2;id = "toxinsdriver";pixel_y = 24},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/toxins/mixing) +"cbl" = (/obj/structure/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber.";dir = 8;layer = 4;name = "Test Chamber Telescreen";network = list("Toxins");pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/mixing) +"cbm" = (/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/toxins/test_area) +"cbn" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"cbo" = (/obj/item/weapon/ore/iron,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/miningdock) +"cbp" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/miningdock) +"cbq" = (/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/miningdock) +"cbs" = (/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) +"cbt" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft) +"cbu" = (/turf/open/floor/plating,/area/maintenance/aft) +"cbv" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/crew{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/card{pixel_x = 2;pixel_y = -2},/obj/item/weapon/circuitboard/computer/communications{pixel_x = 5;pixel_y = -5},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/storage/tech) +"cbw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/storage/tech) +"cbx" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage";req_access_txt = "19;23"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) +"cby" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) +"cbz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/storage/tech) +"cbA" = (/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},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/storage/tech) +"cbB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) +"cbC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) +"cbD" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage";req_access_txt = "23"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) +"cbE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cbG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cbH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/janitor) +"cbI" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance";req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/janitor) +"cbJ" = (/obj/machinery/power/apc{dir = 8;name = "Medbay Maintenance APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/asmaint) +"cbK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cbL" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) +"cbM" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/asmaint) +"cbN" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) +"cbO" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cbP" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cbQ" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plasteel,/area/medical/sleeper) +"cbR" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/sleeper) +"cbS" = (/obj/machinery/vending/wallmed{pixel_y = -28},/obj/machinery/camera{c_tag = "Surgery Operating";dir = 1;network = list("SS13");pixel_x = 22},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cbT" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/sleeper) +"cbU" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel,/area/medical/sleeper) +"cbV" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cbW" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cbX" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cbY" = (/obj/structure/table,/obj/machinery/light,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cbZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cca" = (/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"ccb" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 0;pixel_y = -30;pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"ccc" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"ccd" = (/obj/machinery/light,/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) +"cce" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ccf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ccg" = (/obj/machinery/door/airlock/medical{name = "Patient Room";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cch" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cci" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ccj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) +"cck" = (/obj/structure/table,/obj/item/weapon/cartridge/medical{pixel_x = -2;pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6;pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"ccl" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"ccm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"ccn" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) +"cco" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/xenobiology) +"ccp" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/toxins/xenobiology) +"ccq" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"ccr" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"ccs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) +"cct" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"ccu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"ccv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"ccw" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) +"ccx" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8;pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9;pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccy" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccz" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccA" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccB" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"ccD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/mixing) +"ccE" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) +"ccF" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/mixing) +"ccG" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/mixing) +"ccH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) +"ccI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/mixing) +"ccJ" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/mixing) +"ccK" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE";name = "BOMB RANGE"},/turf/closed/indestructible,/area/toxins/test_area) +"ccL" = (/obj/structure/chair,/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/toxins/test_area) +"ccM" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/toxins/test_area) +"ccN" = (/obj/structure/chair,/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/toxins/test_area) +"ccO" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock";req_access_txt = "48"},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "mining";name = "mining shuttle";port_angle = 90;width = 7},/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "mining_home";name = "mining shuttle bay";width = 7},/turf/open/floor/plating,/area/shuttle/labor) +"ccP" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/plating,/area/quartermaster/miningdock) +"ccQ" = (/obj/machinery/door/airlock/glass_mining{name = "Mining Dock";req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"ccR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"ccS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"ccT" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft) +"ccU" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/robotics{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/mecha_control{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/tech) +"ccV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) +"ccW" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/storage/tech) +"ccX" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/open/floor/plating,/area/storage/tech) +"ccY" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/computer/med_data{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/clonescanner,/obj/item/weapon/circuitboard/machine/clonepod,/obj/item/weapon/circuitboard/computer/scan_consolenew,/turf/open/floor/plating,/area/storage/tech) +"ccZ" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/secure_data{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/security{pixel_x = 1;pixel_y = -1},/turf/open/floor/plating,/area/storage/tech) +"cda" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/powermonitor{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/stationalert{pixel_x = 1;pixel_y = -1},/obj/item/weapon/circuitboard/computer/atmos_alert{pixel_x = 3;pixel_y = -3},/turf/open/floor/plating,/area/storage/tech) +"cdb" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plating,/area/storage/tech) +"cdc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cde" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cdf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cdi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cdj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdm" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdn" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cdo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cdp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plating,/area/maintenance/asmaint) +"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/sleeper) +"cdr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/sleeper) +"cds" = (/turf/closed/wall/r_wall,/area/medical/medbay) +"cdt" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cdu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cdv" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/shieldwallgen{req_access = list(55)},/turf/open/floor/plating,/area/toxins/xenobiology) +"cdw" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cdx" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cdy" = (/obj/machinery/door/window/southleft{dir = 1;name = "Test Chamber";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cdz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cdA" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cdB" = (/turf/closed/wall,/area/toxins/xenobiology) +"cdC" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) +"cdD" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"cdE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"cdF" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"cdG" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdH" = (/obj/structure/closet/wardrobe/science_white,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdI" = (/obj/item/device/assembly/signaler{pixel_x = 0;pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = -2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdJ" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdK" = (/obj/item/device/assembly/timer{pixel_x = 5;pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4;pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6;pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0;pixel_y = 0},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdL" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdN" = (/obj/machinery/power/apc{dir = 4;name = "Toxins Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cdO" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/toxins/mixing) +"cdP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/toxins/mixing) +"cdQ" = (/obj/machinery/camera{c_tag = "Toxins Launch Room Access";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/toxins/mixing) +"cdR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/toxins/mixing) +"cdS" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/toxins/mixing) +"cdT" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/mixing) +"cdU" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/toxins/mixing) +"cdV" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/toxins/test_area) +"cdW" = (/turf/open/floor/plating/airless,/area/toxins/test_area) +"cdX" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/toxins/test_area) +"cdY" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/quartermaster/miningdock) +"cdZ" = (/obj/machinery/camera{c_tag = "Mining Dock External";dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{icon_state = "warning"},/area/quartermaster/miningdock) +"cea" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/closed/wall,/area/quartermaster/miningdock) +"ceb" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/quartermaster/miningdock) +"cec" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"ced" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"cee" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"cef" = (/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"ceg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) +"ceh" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"cei" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) +"cej" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/open/floor/plating,/area/storage/tech) +"cek" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/open/floor/plating,/area/storage/tech) +"cel" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/storage/tech) +"cem" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) +"cen" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/storage/tech) +"ceo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"ceq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cer" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint) +"ces" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/asmaint) +"cet" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/asmaint) +"ceu" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cev" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cew" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cex" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cey" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cez" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/sign/securearea{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceB" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"ceC" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceE" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceF" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{dir = 4;name = "Medbay APC";pixel_x = 24;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/medbay) +"ceG" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ceH" = (/obj/machinery/door/airlock/medical{name = "Patient Room 2";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ceI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay) +"ceK" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceL" = (/obj/machinery/power/apc{dir = 1;name = "CM Office APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) +"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) +"ceO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"ceP" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) +"ceQ" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter";network = list("Xeno");pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) +"ceR" = (/obj/machinery/button/door{id = "misclab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = -2;req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/xenobiology) +"ceS" = (/obj/machinery/door/window/southleft{name = "Test Chamber";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) +"ceT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) +"ceU" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) +"ceV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) +"ceW" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/xenobiology) +"ceX" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"ceY" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"ceZ" = (/obj/machinery/camera{c_tag = "Research Division South";dir = 8;network = list("SS13")},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"cfa" = (/obj/structure/sign/fire,/turf/closed/wall,/area/medical/research{name = "Research Division"}) +"cfb" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) +"cfc" = (/obj/machinery/mass_driver{dir = 4;id = "toxinsdriver"},/turf/open/floor/plating,/area/toxins/mixing) +"cfd" = (/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 = -32},/turf/open/floor/plating,/area/toxins/mixing) +"cfe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/toxins/mixing) +"cff" = (/obj/machinery/door/poddoor{id = "toxinsdriver";name = "toxins launcher bay door"},/turf/open/floor/plating,/area/toxins/mixing) +"cfg" = (/turf/open/floor/plating/airless{dir = 8;icon_state = "warnplate"},/area/toxins/test_area) +"cfh" = (/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/toxins/test_area) +"cfi" = (/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/toxins/test_area) +"cfj" = (/obj/machinery/camera{active_power_usage = 0;c_tag = "Bomb Test Site";desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";dir = 8;invuln = 1;light = null;name = "Hardened Bomb-Test Camera";network = list("Toxins");use_power = 0},/obj/item/target/alien{anchored = 1},/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/toxins/test_area) +"cfk" = (/obj/structure/shuttle/engine/heater,/turf/open/floor/plating,/area/shuttle/labor) +"cfl" = (/obj/structure/ore_box,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) +"cfm" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cfn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) +"cfo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cfp" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/open/floor/plating,/area/storage/tech) +"cfq" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) +"cfr" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/open/floor/plating,/area/storage/tech) +"cfs" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) +"cft" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) +"cfu" = (/obj/machinery/requests_console{department = "Tech storage";pixel_x = 0;pixel_y = -32},/turf/open/floor/plating,/area/storage/tech) +"cfv" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech) +"cfw" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Primary Hallway 2";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cfy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cfz" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/hallway/primary/aft) +"cfA" = (/turf/closed/wall/r_wall,/area/atmos) +"cfB" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) +"cfC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) +"cfD" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) +"cfE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) +"cfF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/atmos) +"cfG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) +"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/atmos) +"cfI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/atmos) +"cfJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cfK" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cfL" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cfM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv1";name = "Privacy Shutters";pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cfN" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv1";name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) +"cfO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cfP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) +"cfQ" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) +"cfR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cfT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cfU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cfV" = (/obj/machinery/power/apc{dir = 8;name = "Xenobiology APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cfW" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cfX" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cfY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cfZ" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cga" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract.";name = "Slime Processor"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgb" = (/obj/machinery/smartfridge/extract,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgc" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgd" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cge" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgf" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) +"cgg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"cgh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"}) +"cgi" = (/obj/machinery/door/poddoor{id = "mixvent2";name = "Mixer Room Vent"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) +"cgk" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker2";pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/toxins/mixing) +"cgl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) +"cgm" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor2";master_tag = "tox_airlock_control";pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/mixing) +"cgn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump2";exterior_door_tag = "tox_airlock_exterior2";id_tag = "tox_airlock_control";interior_door_tag = "tox_airlock_interior2";pixel_x = -24;pixel_y = 0;sanitize_external = 1;sensor_tag = "tox_airlock_sensor2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warnwhitecorner"},/area/toxins/mixing) +"cgo" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "mix to port"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) +"cgp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/mixing) +"cgq" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cgr" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cgs" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/toxins/test_area) +"cgt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/toxins/test_area) +"cgu" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) +"cgv" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cgw" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/primary/aft) +"cgx" = (/turf/closed/wall,/area/atmos) +"cgy" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel,/area/atmos) +"cgz" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cgA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/atmos) +"cgB" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) +"cgC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) +"cgD" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/atmos) +"cgE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cgF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/meter{frequency = 1443;id_tag = "wloop_atm_meter";name = "Waste Loop"},/turf/open/floor/plasteel,/area/atmos) +"cgG" = (/obj/machinery/camera{c_tag = "Atmospherics North East"},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Distro to Waste";on = 0},/turf/open/floor/plasteel,/area/atmos) +"cgH" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1443;id_tag = "dloop_atm_meter";name = "Distribution Loop"},/turf/open/floor/plasteel,/area/atmos) +"cgI" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) +"cgJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to Distro";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cgK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plasteel,/area/atmos) +"cgL" = (/turf/open/floor/plasteel,/area/atmos) +"cgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/virology) +"cgN" = (/turf/closed/wall/r_wall,/area/medical/virology) +"cgO" = (/turf/closed/wall,/area/medical/virology) +"cgP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "39"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cgQ" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/medical/virology) +"cgR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 13},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) +"cgS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) +"cgT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cha" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab";req_access_txt = "55"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"chb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) +"chc" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) +"chd" = (/turf/open/floor/engine/vacuum,/area/toxins/mixing) +"che" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_exterior2";locked = 1;name = "Mixing Room Exterior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) +"chf" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2;frequency = 1449;id = "tox_airlock_pump2"},/turf/open/floor/engine,/area/toxins/mixing) +"chg" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_interior2";locked = 1;name = "Mixing Room Interior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) +"chh" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/mixing) +"chi" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) +"chj" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Toxins Lab East";dir = 8;network = list("SS13","RD");pixel_y = -22},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/mixing) +"chk" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint2) +"chl" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plating,/area/maintenance/asmaint2) +"chm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"chn" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/toxins/test_area) +"cho" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/toxins/test_area) +"chp" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/toxins/test_area) +"chq" = (/turf/closed/wall,/area/construction) +"chr" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/construction) +"chs" = (/turf/open/floor/plating,/area/construction) +"cht" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plating,/area/construction) +"chu" = (/turf/open/floor/plasteel,/area/construction) +"chv" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/construction) +"chw" = (/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/hallway/primary/aft) +"chx" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel,/area/atmos) +"chy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"chz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) +"chA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Atmospherics Monitoring";dir = 2;network = list("SS13")},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/atmos) +"chB" = (/obj/machinery/camera{c_tag = "Atmospherics North West";dir = 4;network = list("SS13")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"chC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) +"chD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/atmos) +"chE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/atmos) +"chF" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"chG" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"chH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"chI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/atmos) +"chJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Mix to Distro";on = 0},/turf/open/floor/plasteel,/area/atmos) +"chK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"chM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"chN" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos) +"chO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/medical/virology) +"chP" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4;pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1;pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2;pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chQ" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5;pixel_y = 29},/obj/machinery/camera{c_tag = "Virology Break Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chR" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chS" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chT" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/virology) +"chU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chV" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/medical/virology) +"chW" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chX" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chY" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"chZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cia" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/xenobiology) +"cib" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cic" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cid" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cie" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cig" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cih" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) +"cii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) +"cij" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) +"cik" = (/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) +"cil" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker2";pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;frequency = 1443;id = "air_in"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) +"cim" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8;on = 1},/turf/open/floor/engine,/area/toxins/mixing) +"cin" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent2";name = "Mixing Room Vent Control";pixel_x = -25;pixel_y = 5;req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker2";pixel_x = -25;pixel_y = -5},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhitecorner"},/area/toxins/mixing) +"cio" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "port to mix"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) +"cip" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/mixing) +"ciq" = (/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/toxins/test_area) +"cir" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft) +"cis" = (/obj/machinery/light_construct{dir = 8},/turf/open/floor/plating,/area/construction) +"cit" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/construction) +"ciu" = (/obj/machinery/light_construct{dir = 4},/turf/open/floor/plasteel,/area/construction) +"civ" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"ciw" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cix" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/hallway/primary/aft) +"ciy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Atmospherics"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) +"ciz" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/atmos) +"ciA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ciB" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ciC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) +"ciD" = (/obj/machinery/computer/atmos_control{frequency = 1441;name = "Tank Monitor";sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")},/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) +"ciE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/atmos) +"ciF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/autolathe/atmos,/turf/open/floor/plasteel,/area/atmos) +"ciG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/atmos) +"ciH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) +"ciI" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ciJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"ciK" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Waste In";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ciL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) +"ciM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) +"ciN" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/atmos) +"ciO" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix Outlet Pump";on = 0},/turf/open/floor/plasteel,/area/atmos) +"ciP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Mix";on = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ciQ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/atmos) +"ciR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"ciS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space) +"ciT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) +"ciU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "waste_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"ciV" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"ciW" = (/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"ciX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) +"ciY" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ciZ" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cja" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/virology) +"cjb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cjc" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/medical/virology) +"cjd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cjf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"cjg" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cji" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjj" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjk" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjm" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjn" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4;pixel_y = 3},/obj/item/weapon/extinguisher,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjo" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjp" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjq" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cjs" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) +"cjt" = (/obj/machinery/door/airlock/research{name = "Testing Lab";req_access_txt = "47"},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cju" = (/turf/closed/wall,/area/toxins/misc_lab) +"cjv" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cjw" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cjx" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cjy" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft) +"cjz" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/aft) +"cjA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/aft) +"cjC" = (/obj/item/weapon/shard,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/aft) +"cjD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/aft) +"cjE" = (/obj/structure/girder,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/aft) +"cjF" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fsmaint2) +"cjG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cjH" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plating,/area/maintenance/aft) +"cjI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) +"cjJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/construction) +"cjL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"cjM" = (/obj/structure/closet/crate,/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"cjN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/construction) +"cjO" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"cjP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) +"cjQ" = (/obj/machinery/door/airlock/engineering{name = "Construction Area";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"cjR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cjU" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/hallway/primary/aft) +"cjV" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cjW" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) +"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/atmos) +"cjY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cjZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/atmos) +"cka" = (/obj/machinery/computer/atmos_control{frequency = 1443;level = 3;name = "Distribution and Waste Monitor";sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) +"ckb" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) +"ckc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ckd" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) +"cke" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/atmos) +"ckg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"ckh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cki" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ckj" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) +"ckk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) +"ckl" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"ckm" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "waste_in";name = "Gas Mix Tank Control";output_tag = "waste_out";sensors = list("waste_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/atmos) +"ckn" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cko" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/atmos) +"ckp" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "waste_sensor"},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"ckq" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"ckr" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cks" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ckt" = (/obj/structure/closet/wardrobe/virology_white,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cku" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = 8;pixel_y = -28;req_access_txt = "39"},/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/virology) +"ckv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"ckw" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/medical/virology) +"ckx" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cky" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) +"ckz" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) +"ckB" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = -20;pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"ckC" = (/turf/open/floor/plasteel,/area/toxins/misc_lab) +"ckD" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"ckE" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;dir = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"ckF" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/machinery/camera{c_tag = "Testing Lab North";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"ckG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) +"ckH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/engine,/area/toxins/misc_lab) +"ckI" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;req_access = null},/turf/open/floor/engine,/area/toxins/misc_lab) +"ckJ" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) +"ckK" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/toxins/misc_lab) +"ckL" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/misc_lab) +"ckM" = (/turf/closed/wall/r_wall,/area/toxins/misc_lab) +"ckN" = (/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/asmaint2) +"ckO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/aft) +"ckP" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft) +"ckQ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/aft) +"ckR" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"ckS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"ckT" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) +"ckU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Construction Area Maintenance";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"ckV" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"ckW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"ckX" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) +"ckY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/construction) +"ckZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cla" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"clb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4;icon_state = "left";name = "Atmospherics Desk";req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) +"clc" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) +"cld" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) +"cle" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) +"clf" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) +"clg" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) +"clh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/atmos) +"cli" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"clj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"clk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) +"cll" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"clm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) +"cln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) +"clo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) +"clp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Pure to Mix";on = 0},/turf/open/floor/plasteel,/area/atmos) +"clq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) +"clr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Unfiltered to Mix";on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) +"cls" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 6},/area/atmos) +"clt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"clu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space) +"clv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "waste_in";pixel_y = 1},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) +"clw" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/machinery/reagentgrinder,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"clx" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cly" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"clz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"clA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/virology) +"clB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"clC" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/engine,/area/toxins/xenobiology) +"clD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/toxins/xenobiology) +"clE" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"clF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/xenobiology) +"clG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"clH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"clI" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio8";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) +"clJ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"clK" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"clL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"clM" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/device/electropack,/obj/item/device/healthanalyzer,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"clN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/engine,/area/toxins/misc_lab) +"clO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) +"clP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) +"clQ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) +"clR" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"clS" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"clT" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"clU" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/maintenance/aft) +"clV" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/rack,/obj/item/clothing/head/cone,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plating,/area/maintenance/aft) +"clW" = (/obj/item/weapon/storage/secure/safe,/turf/closed/wall,/area/maintenance/aft) +"clX" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) +"clY" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"clZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)";icon_state = "connector_map";dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) +"cma" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"cmb" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/aft) +"cmc" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cmd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cme" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/construction) +"cmf" = (/obj/machinery/camera{c_tag = "Construction Area";dir = 1},/turf/open/floor/plating,/area/construction) +"cmg" = (/obj/structure/rack{dir = 1},/obj/item/clothing/suit/hazardvest,/turf/open/floor/plating,/area/construction) +"cmh" = (/obj/structure/table,/obj/item/stack/cable_coil{amount = 5},/obj/item/device/flashlight,/turf/open/floor/plating,/area/construction) +"cmi" = (/obj/structure/table,/turf/open/floor/plating,/area/construction) +"cmj" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cmk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cml" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/turf/open/floor/plating,/area/atmos) +"cmm" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) +"cmo" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = 24;pixel_y = 4;req_access_txt = "24"},/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/atmos) +"cmp" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5;pixel_y = 3},/obj/machinery/light{dir = 8},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/atmos) +"cmq" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/open/floor/plasteel,/area/atmos) +"cmr" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/turf/open/floor/plasteel,/area/atmos) +"cms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) +"cmt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmy" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cmA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmD" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/firealarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmH" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Virology APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology Module"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmI" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cmJ" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cmK" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cmL" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/xenobiology) +"cmM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cmN" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/xenobiology) +"cmO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cmP" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cmQ" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cmR" = (/turf/open/floor/engine,/area/toxins/misc_lab) +"cmS" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/engine,/area/toxins/misc_lab) +"cmT" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) +"cmU" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5;pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5;pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = -1},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/turf/open/floor/engine,/area/toxins/misc_lab) +"cmV" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/misc_lab) +"cmW" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/misc_lab) +"cmX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/toxins/misc_lab) +"cmY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cmZ" = (/obj/structure/rack,/obj/item/clothing/glasses/sunglasses/garb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cna" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/aft) +"cnb" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/aft) +"cnc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/maintenance/aft) +"cnd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/rack,/obj/item/clothing/tie/black,/obj/item/clothing/tie/red,/obj/item/clothing/mask/bandana/red,/obj/item/clothing/mask/bandana/skull,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cne" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) +"cnf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/aft) +"cng" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft) +"cnh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cni" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) +"cnj" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cnk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/aft) +"cnl" = (/obj/machinery/power/apc{name = "Aft Hall APC";dir = 8;pixel_x = -25;pixel_y = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cnm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cnn" = (/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/structure/window/reinforced,/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/hallway/primary/aft) +"cno" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/atmos) +"cnp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/atmos) +"cnq" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) +"cnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/turf/open/floor/plasteel,/area/atmos) +"cns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cnt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cnu" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cnv" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) +"cnw" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cnx" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "N2O Outlet Pump";on = 0},/turf/open/floor/plasteel{icon_state = "escape";dir = 5},/area/atmos) +"cny" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "n2o_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2o,/area/atmos) +"cnz" = (/obj/machinery/camera{c_tag = "Atmospherics N2O Tanks"},/turf/open/floor/engine/n2o,/area/atmos) +"cnA" = (/turf/open/floor/engine/n2o,/area/atmos) +"cnB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/medical/virology) +"cnC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"cnD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/medical/virology) +"cnE" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cnF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cnG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cnH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cnI" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cnJ" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) +"cnK" = (/obj/structure/disposalpipe/segment,/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/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cnL" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/toxins/xenobiology) +"cnM" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cnN" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) +"cnO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cnP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cnQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cnR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/engine,/area/toxins/misc_lab) +"cnS" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/turf/open/floor/engine,/area/toxins/misc_lab) +"cnT" = (/turf/open/floor/plating,/area/toxins/misc_lab) +"cnU" = (/obj/structure/target_stake,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/toxins/misc_lab) +"cnV" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/turf/open/floor/plasteel,/area/maintenance/aft) +"cnW" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"cnX" = (/obj/machinery/door/window{dir = 2},/obj/structure/table/reinforced,/turf/open/floor/plating,/area/maintenance/aft) +"cnY" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/turf/open/floor/plating,/area/maintenance/aft) +"cnZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/cups,/turf/open/floor/plating,/area/maintenance/aft) +"coa" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft) +"cob" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/aft) +"coc" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cod" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"coe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cof" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) +"cog" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"coh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"coi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"coj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cok" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/power/apc{dir = 1;name = "Construction Area APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) +"col" = (/obj/machinery/power/apc{dir = 2;name = "Telecoms Monitoring APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"com" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"con" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"coo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "arrival";dir = 8},/area/atmos) +"cop" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) +"coq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/atmos) +"cor" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) +"cos" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) +"cot" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) +"cou" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to External";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cov" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cow" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) +"cox" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/atmos) +"coy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) +"coz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Mix to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) +"coA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Pure to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) +"coB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/atmos) +"coC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/atmos) +"coD" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2o_in";name = "Nitrous Oxide Supply Control";output_tag = "n2o_out";sensors = list("n2o_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "escape";dir = 4},/area/atmos) +"coE" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/atmos) +"coF" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/atmos) +"coG" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/atmos) +"coH" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) +"coI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"coJ" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) +"coK" = (/obj/machinery/smartfridge/chemistry/virology,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) +"coL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"coM" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) +"coN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/virology) +"coO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"coP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) +"coQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"coR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall,/area/toxins/xenobiology) +"coS" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"coT" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"coU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"coV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"coW" = (/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) +"coX" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) +"coY" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) +"coZ" = (/obj/machinery/camera{c_tag = "Testing Firing Range";dir = 8;network = list("SS13","RD");pixel_y = -22},/turf/open/floor/plating,/area/toxins/misc_lab) +"cpa" = (/obj/structure/target_stake,/turf/open/floor/plating,/area/toxins/misc_lab) +"cpb" = (/obj/structure/sign/nosmoking_1,/turf/closed/wall,/area/maintenance/aft) +"cpc" = (/turf/open/floor/plasteel,/area/maintenance/aft) +"cpd" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/aft) +"cpe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cpf" = (/turf/closed/wall/r_wall,/area/tcommsat/server) +"cpg" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cph" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cpj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) +"cpk" = (/obj/machinery/camera{c_tag = "Atmospherics Access";dir = 4;network = list("SS13")},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/atmos) +"cpl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) +"cpm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) +"cpn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) +"cpo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/securearea,/turf/closed/wall,/area/atmos) +"cpp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "External to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cpq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cpr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/atmos) +"cps" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/atmos) +"cpt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/atmos) +"cpu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"cpv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cpw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos) +"cpx" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "n2o";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cpy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "escape";dir = 6},/area/atmos) +"cpz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "n2o_in";pixel_y = 1},/turf/open/floor/engine/n2o,/area/atmos) +"cpA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cpB" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/machinery/requests_console{department = "Virology";name = "Virology Requests Console";pixel_x = -32},/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) +"cpC" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) +"cpD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/medical/virology) +"cpE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cpF" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cpG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cpH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cpI" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio7";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) +"cpJ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cpK" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cpL" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cpM" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cpN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cpO" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cpP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/misc_lab) +"cpQ" = (/obj/structure/chair{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/maintenance/aft) +"cpR" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/aft) +"cpS" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/aft) +"cpT" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/aft) +"cpU" = (/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cpV" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cpW" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cpX" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Telecoms Server APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cpY" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cpZ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqa" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) +"cqb" = (/obj/machinery/computer/message_monitor,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/tcommsat/computer) +"cqc" = (/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cqd" = (/obj/machinery/light{dir = 1},/obj/machinery/announcement_system,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cqe" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cqf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/atmos) +"cqg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) +"cqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "atmos";name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) +"cqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/preopen{id = "atmos";name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) +"cqj" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) +"cqk" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel,/area/atmos) +"cql" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics West";dir = 8;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) +"cqm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"cqn" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cqo" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/asmaint) +"cqp" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{pixel_x = -25},/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) +"cqq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cqr" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cqs" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) +"cqt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) +"cqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cqv" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cqw" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cqx" = (/obj/effect/landmark{name = "revenantspawn"},/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/toxins/xenobiology) +"cqy" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cqz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cqA" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqB" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/ignition{id = "testigniter";pixel_x = -6;pixel_y = 2},/obj/machinery/button/door{id = "testlab";name = "Test Chamber Blast Doors";pixel_x = 4;pixel_y = 2;req_access_txt = "55"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqC" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqE" = (/obj/structure/rack,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter";network = list("Test");pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqF" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/closet,/obj/item/pipe{dir = 4;icon_state = "mixer";name = "gas mixer fitting";pipe_type = 14},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cqH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cqI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) +"cqJ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/turf/open/floor/plating{tag = "icon-warnplate (SOUTHEAST)";icon_state = "warnplate";dir = 6},/area/toxins/misc_lab) +"cqK" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/structure/window/reinforced{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plating{tag = "icon-warnplate (SOUTHWEST)";icon_state = "warnplate";dir = 10},/area/toxins/misc_lab) +"cqL" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cqM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/aft) +"cqN" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/aft) +"cqO" = (/turf/open/floor/plating{dir = 2;icon_state = "warnplate"},/area/maintenance/aft) +"cqP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/pill/mannitol,/turf/open/floor/plating,/area/maintenance/aft) +"cqQ" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft) +"cqR" = (/turf/closed/wall,/area/maintenance/strangeroom) +"cqS" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/strangeroom) +"cqT" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqU" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqW" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqX" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cqY" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"cqZ" = (/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/tcommsat/computer) +"cra" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"crb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"crc" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) +"crd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/atmos) +"cre" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) +"crf" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) +"crg" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/atmos) +"crh" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Security APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/engineering) +"cri" = (/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/engineering) +"crj" = (/obj/structure/filingcabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/engineering) +"crk" = (/obj/structure/fireaxecabinet{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/atmos) +"crl" = (/obj/structure/closet/secure_closet/atmospherics,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/atmos) +"crm" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos) +"crn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos) +"cro" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"crp" = (/obj/machinery/camera{c_tag = "Atmospherics East";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Plasma Outlet Pump";on = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/atmos) +"crq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "tox_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"crr" = (/obj/machinery/camera{c_tag = "Atmospherics Plasma Tank"},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"crs" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"crt" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint) +"cru" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) +"crv" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{anchored = 1;density = 0;pixel_x = -30},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) +"crw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"crx" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cry" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) +"crz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) +"crA" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"crB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"crC" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) +"crD" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"crE" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) +"crF" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) +"crG" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/misc_lab) +"crH" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"crI" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"crJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"crK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) +"crL" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"crM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) +"crN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) +"crO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{tag = "icon-warningcorner (EAST)";icon_state = "warningcorner";dir = 4},/area/toxins/misc_lab) +"crP" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"crQ" = (/obj/structure/closet/crate,/obj/item/clothing/under/color/lightpurple,/obj/item/stack/spacecash/c200,/turf/open/floor/plating,/area/maintenance/asmaint2) +"crR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/vomit/old,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/cobweb,/obj/structure/kitchenspike,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) +"crS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/human,/obj/structure/kitchenspike,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) +"crT" = (/obj/effect/decal/cleanable/shreds,/obj/machinery/power/apc{dir = 1;name = "Worn Out APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) +"crU" = (/turf/open/floor/plating,/area/maintenance/strangeroom) +"crV" = (/obj/structure/table/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/molten_item,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/strangeroom) +"crW" = (/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"crX" = (/obj/machinery/blackbox_recorder,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"crY" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"crZ" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"csa" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/tcommsat/computer) +"csb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer) +"csc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) +"csd" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"csn" = (/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/atmos) +"cso" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/atmos) +"csp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"csq" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "tox_in";name = "Toxin Supply Control";output_tag = "tox_out";sensors = list("tox_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/atmos) +"csr" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "tox_sensor"},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"css" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"cst" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"csu" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "whitegreen"},/area/medical/virology) +"csv" = (/obj/structure/closet/secure_closet/medical1,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 2;icon_state = "whitegreen"},/area/medical/virology) +"csw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/medical/virology) +"csx" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"csy" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"csz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;unacidable = 1},/turf/open/floor/engine,/area/toxins/misc_lab) +"csA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/engine,/area/toxins/misc_lab) +"csB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"csC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) +"csD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/misc_lab) +"csE" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"csF" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"csG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) +"csH" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/turf/open/floor/plating,/area/maintenance/aft) +"csI" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/aft) +"csJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"csK" = (/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/aft) +"csL" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil{amount = 1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"csM" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (SOUTHWEST)";icon_state = "tracks";dir = 10},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"csN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) +"csO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) +"csP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTHEAST)";icon_state = "tracks";dir = 5},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) +"csQ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"csR" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"csS" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"csT" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) +"csU" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"csV" = (/obj/machinery/status_display,/turf/closed/wall,/area/tcommsat/computer) +"csW" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/tcommsat/computer) +"csX" = (/obj/machinery/door/airlock/glass_command{name = "Control Room";req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"csY" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) +"csZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cta" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ctb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"ctc" = (/turf/closed/wall,/area/engine/break_room) +"ctd" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cte" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"ctf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"ctg" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cth" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"cti" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/engineering) +"ctj" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"ctk" = (/obj/machinery/computer/secure_data,/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/engineering) +"ctl" = (/obj/machinery/power/apc{dir = 8;name = "Atmospherics APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/atmos) +"ctm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/atmos) +"ctn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos) +"cto" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"ctp" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "plasma";on = 1},/turf/open/floor/plasteel,/area/atmos) +"ctq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/atmos) +"ctr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "tox_in";pixel_y = 1},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"cts" = (/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) +"ctt" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint) +"ctu" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint) +"ctv" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) +"ctw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/virology) +"ctx" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating{icon_state = "warnplate";dir = 9},/area/maintenance/asmaint) +"cty" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)";icon_state = "mvalve_map";dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/asmaint) +"ctz" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating{icon_state = "warnplate";dir = 5},/area/maintenance/asmaint) +"ctA" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) +"ctB" = (/obj/structure/rack{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) +"ctC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"ctD" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) +"ctE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"ctF" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) +"ctG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) +"ctH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/toxins/misc_lab) +"ctI" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) +"ctJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"ctK" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/asmaint2) +"ctL" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/asmaint2) +"ctM" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"ctN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/bodypart/r_leg,/obj/item/bodypart/r_arm,/obj/item/weapon/shard,/obj/item/weapon/hatchet,/obj/item/weapon/staplegun,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"ctO" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/structure/chair{dir = 1},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"ctP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/bodypart/l_leg,/obj/item/bodypart/l_arm,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"ctQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) +"ctR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/strangeroom) +"ctS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) +"ctT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall/r_wall,/area/tcommsat/server) +"ctU" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"ctV" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"ctW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"ctX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/bluegrid{dir = 8;icon_state = "vault";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"ctY" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"ctZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cua" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room";req_access_txt = "61"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) +"cub" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) +"cuc" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room";req_access_txt = "61"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) +"cud" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/tcommsat/computer) +"cue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cuf" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Telecoms Monitoring";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cug" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) +"cuh" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cui" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cuj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cuk" = (/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cul" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/engine/break_room) +"cum" = (/turf/open/floor/plasteel,/area/engine/break_room) +"cun" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cuo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) +"cup" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) +"cuq" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/engineering) +"cur" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/engineering) +"cus" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/engineering) +"cut" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) +"cuu" = (/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) +"cuv" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos) +"cuw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/atmos) +"cux" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"cuy" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cuz" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cuA" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) +"cuB" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) +"cuC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cuD" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) +"cuE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cuF" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "warnplate";dir = 10},/area/maintenance/asmaint) +"cuG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating{dir = 2;icon_state = "warnplate"},/area/maintenance/asmaint) +"cuH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating{icon_state = "warnplate";dir = 6},/area/maintenance/asmaint) +"cuI" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) +"cuJ" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cuK" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cuL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) +"cuM" = (/obj/machinery/sparker{id = "testigniter";pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) +"cuN" = (/obj/item/device/radio/beacon,/turf/open/floor/engine,/area/toxins/misc_lab) +"cuO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/misc_lab) +"cuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) +"cuQ" = (/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/machinery/door/airlock/glass_research{name = "Test Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) +"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/misc_lab) +"cuS" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/misc_lab) +"cuT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/misc_lab) +"cuU" = (/obj/machinery/power/apc{dir = 4;name = "Testing Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cuV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cuW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cuX" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cuY" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cuZ" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/blood/tracks,/turf/open/floor/plasteel{tag = "icon-damaged5";icon_state = "damaged5"},/area/maintenance/strangeroom) +"cva" = (/obj/machinery/camera{c_tag = "Telecoms Server Room";dir = 4;network = list("SS13")},/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cvb" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"cvc" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"cvd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 0},/turf/closed/wall,/area/tcommsat/computer) +"cve" = (/turf/open/floor/plasteel,/area/tcommsat/computer) +"cvf" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cvg" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Telecoms Admin";departmentType = 5;name = "Telecoms RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cvh" = (/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) +"cvi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cvj" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Aft Primary Hallway 1";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cvk" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Foyer APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/engine/break_room) +"cvl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cvm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cvn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/engineering) +"cvo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos) +"cvp" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/open/floor/plasteel,/area/atmos) +"cvq" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/atmos) +"cvr" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/atmos) +"cvs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos) +"cvt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/cigbutt,/turf/open/floor/plasteel,/area/atmos) +"cvu" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel,/area/atmos) +"cvv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "CO2 Outlet Pump";on = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/atmos) +"cvw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "co2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cvx" = (/obj/machinery/camera{c_tag = "Atmospherics CO2 Tank"},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cvy" = (/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cvz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/asmaint) +"cvA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cvB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cvC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cvD" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance";req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cvE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cvF" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cvG" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cvH" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) +"cvI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) +"cvJ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) +"cvK" = (/obj/machinery/camera{c_tag = "Testing Chamber";dir = 1;network = list("Test","RD");pixel_x = 0},/obj/machinery/light,/turf/open/floor/engine,/area/toxins/misc_lab) +"cvL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/toxins/misc_lab) +"cvM" = (/obj/machinery/camera{c_tag = "Testing Lab South";dir = 8;network = list("SS13","RD");pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cvN" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cvO" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target/clown,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cvP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cvQ" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cvR" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cvS" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cvT" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cvU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed,/turf/open/floor/plasteel{tag = "icon-damaged2";icon_state = "damaged2"},/area/maintenance/strangeroom) +"cvV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/strangeroom) +"cvW" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"cvX" = (/obj/effect/decal/cleanable/blood/drip,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) +"cvY" = (/obj/structure/table/reinforced,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chem_pile,/turf/open/floor/plating,/area/maintenance/strangeroom) +"cvZ" = (/obj/machinery/message_server,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cwa" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cwb" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cwc" = (/obj/structure/table,/obj/item/device/multitool,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/tcommsat/computer) +"cwd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cwe" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cwf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cwg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/hallway/primary/aft) +"cwh" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/hallway/primary/aft) +"cwi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cwj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cwk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/hallway/primary/aft) +"cwl" = (/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/hallway/primary/aft) +"cwm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/break_room) +"cwn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cwo" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cwp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cwq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cwr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/break_room) +"cws" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) +"cwt" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/break_room) +"cwu" = (/turf/closed/wall/r_wall,/area/engine/engineering) +"cwv" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/atmos) +"cww" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel,/area/atmos) +"cwx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cwy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "N2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos) +"cwz" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "co2_in";name = "Carbon Dioxide Supply Control";output_tag = "co2_out";sensors = list("co2_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/atmos) +"cwA" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "co2_sensor"},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cwB" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cwC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cwD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwE" = (/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 28},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwF" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2";icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cwG" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwI" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwK" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"cwM" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) +"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cwO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) +"cwP" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) +"cwQ" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"cwR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cwS" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) +"cwT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint2) +"cwU" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cwV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cwW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cwX" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plating,/area/maintenance/aft) +"cwY" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) +"cwZ" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft) +"cxa" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"cxb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) +"cxc" = (/obj/structure/spirit_board,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) +"cxd" = (/obj/structure/closet/crate/secure,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/pen,/obj/item/weapon/paper{info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough.";name = "Strange Paper"},/turf/open/floor/plasteel{tag = "icon-damaged4";icon_state = "damaged4"},/area/maintenance/strangeroom) +"cxe" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/closet/crate/bin,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/strangeroom) +"cxf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/gibber,/turf/open/floor/plasteel,/area/maintenance/strangeroom) +"cxg" = (/obj/machinery/vending/cart{desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort.";icon_state = "cart-broken";name = "Old Machine";product_slogans = "Bzzzt..-6-4-!";products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0)},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2";icon_state = "cobweb2"},/turf/open/floor/plasteel{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) +"cxh" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cxi" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cxj" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cxk" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cxl" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/tcommsat/computer) +"cxm" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cxn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cxo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cxp" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications";req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cxq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/hallway/primary/aft) +"cxr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cxs" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cxt" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE";location = "AftH"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cxu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cxv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/hallway/primary/aft) +"cxw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cxx" = (/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},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cxy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cxz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) +"cxA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cxB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cxC" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/break_room) +"cxD" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/atmos) +"cxE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) +"cxF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plasteel,/area/atmos) +"cxG" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4;node1_concentration = 0.8;node2_concentration = 0.2;on = 1;pixel_x = 0;pixel_y = 0;target_pressure = 4500},/turf/open/floor/plasteel,/area/atmos) +"cxH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos) +"cxI" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "co2";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cxJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/atmos) +"cxK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "co2_in";pixel_y = 1},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) +"cxL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxO" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxP" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cxQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxS" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) +"cxU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxV" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cxW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cxX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space) +"cxY" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cxZ" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cya" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"cyb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cyc" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cyd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cye" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Maintenance APC";pixel_x = -25;pixel_y = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cyf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cyg" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft) +"cyh" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cyi" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cyj" = (/obj/structure/sign/nosmoking_2{pixel_y = -32},/obj/machinery/light,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cyk" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cyl" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) +"cym" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"cyn" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/tcommsat/computer) +"cyo" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cyp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/light,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cyq" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cyr" = (/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/hallway/primary/aft) +"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) +"cyt" = (/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) +"cyu" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) +"cyv" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) +"cyw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/hallway/primary/aft) +"cyx" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/break_room) +"cyy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cyz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cyA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cyB" = (/obj/machinery/camera{c_tag = "Engineering Foyer";dir = 1},/obj/structure/noticeboard{dir = 1;pixel_y = -27},/turf/open/floor/plasteel,/area/engine/break_room) +"cyC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cyD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cyE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cyF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"cyG" = (/obj/machinery/camera{c_tag = "Atmospherics South West";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/atmos) +"cyH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) +"cyI" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) +"cyJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/atmos) +"cyK" = (/obj/machinery/power/apc{dir = 2;name = "Incinerator APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/incinerator) +"cyL" = (/obj/structure/sign/fire{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cyM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating{icon_state = "warnplate"},/area/maintenance/asmaint) +"cyN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cyO" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"cyP" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/maintenance/asmaint) +"cyQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint) +"cyR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint) +"cyS" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint) +"cyT" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/l3closet,/turf/open/floor/plating,/area/maintenance/asmaint) +"cyU" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cyV" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cyW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cyX" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) +"cyY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) +"cyZ" = (/obj/item/stack/sheet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cza" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"czb" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2) +"czc" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/asmaint2) +"czd" = (/obj/item/clothing/under/rank/vice,/obj/structure/closet,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/aft) +"cze" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/aft) +"czf" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/closed/wall,/area/maintenance/aft) +"czg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"czh" = (/turf/closed/wall/r_wall,/area/engine/chiefs_office) +"czi" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"czj" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/chiefs_office) +"czk" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer";req_access_txt = "56"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/chiefs_office) +"czl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/engine/break_room) +"czm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/break_room) +"czn" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/engine/break_room) +"czo" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2;filter_type = "n2";on = 1},/turf/open/floor/plasteel,/area/atmos) +"czp" = (/turf/closed/wall,/area/maintenance/incinerator) +"czq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/incinerator) +"czr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/incinerator) +"czs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/toy/minimeteor,/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/asmaint) +"czt" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/roller,/turf/open/floor/plating,/area/maintenance/asmaint) +"czu" = (/obj/structure/disposalpipe/segment,/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"czv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/c_tube,/turf/open/floor/plating,/area/maintenance/asmaint) +"czw" = (/obj/structure/mopbucket,/obj/item/weapon/caution,/turf/open/floor/plating,/area/maintenance/asmaint) +"czx" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) +"czy" = (/obj/machinery/door/airlock/maintenance{name = "Air Supply Maintenance";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"czz" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance";req_access_txt = "47"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/toxins/misc_lab) +"czA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/toxins/misc_lab) +"czB" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) +"czC" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"czD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/maintenance/portsolar) +"czE" = (/turf/closed/wall/r_wall,/area/maintenance/portsolar) +"czF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft) +"czG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/aft) +"czH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"czI" = (/obj/structure/closet/wardrobe/black,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/aft) +"czJ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"czK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"czL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"czM" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) +"czN" = (/obj/machinery/suit_storage_unit/ce,/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/engine/chiefs_office) +"czO" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"czP" = (/obj/machinery/light{dir = 1},/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"czQ" = (/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"czR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"czS" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "CE Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"czT" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/engineering) +"czV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/engine/engineering) +"czW" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/atmos) +"czX" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/atmos) +"czY" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) +"czZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) +"cAa" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;filter_type = "o2";on = 1},/turf/open/floor/plasteel,/area/atmos) +"cAb" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) +"cAc" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) +"cAd" = (/obj/machinery/chem_master,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAe" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/kitchenspike_frame,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAh" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAi" = (/obj/structure/table/wood,/obj/item/weapon/retractor/alien,/obj/item/weapon/reagent_containers/glass/bowl,/turf/open/floor/wood,/area/maintenance/incinerator) +"cAj" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint) +"cAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAl" = (/obj/structure/disposalpipe/segment,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAn" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cAq" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAw" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) +"cAy" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAz" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAB" = (/obj/structure/rack{dir = 1},/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAC" = (/obj/machinery/door/airlock/maintenance{name = "Research Delivery access";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cAD" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cAE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/portsolar) +"cAF" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/portsolar) +"cAG" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/portsolar) +"cAH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/portsolar) +"cAI" = (/obj/machinery/camera{c_tag = "Aft Port Solar Access";dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) +"cAJ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) +"cAK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) +"cAN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cAO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"cAP" = (/obj/machinery/computer/atmos_alert,/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Engineer's Desk";departmentType = 3;name = "Chief Engineer RC";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cAQ" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cAR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cAS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cAT" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"cAU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cAV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cAW" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"cAX" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/atmos) +"cAY" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2_in";name = "Nitrogen Supply Control";output_tag = "n2_out";sensors = list("n2_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "red"},/area/atmos) +"cAZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "N2 Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/atmos) +"cBa" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/atmos) +"cBb" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/atmos) +"cBc" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "o2_in";name = "Oxygen Supply Control";output_tag = "o2_out";sensors = list("o2_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/atmos) +"cBd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/atmos) +"cBe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel{icon_state = "arrival";dir = 10},/area/atmos) +"cBf" = (/obj/machinery/computer/atmos_control/tank{frequency = 1443;input_tag = "air_in";name = "Mixed Air Supply Control";output_tag = "air_out";sensors = list("air_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "arrival"},/area/atmos) +"cBg" = (/obj/machinery/camera{c_tag = "Atmospherics South East";dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Air Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "arrival";dir = 6},/area/atmos) +"cBh" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) +"cBi" = (/turf/open/floor/plating,/area/atmos) +"cBj" = (/turf/open/floor/wood,/area/maintenance/incinerator) +"cBk" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/incinerator) +"cBl" = (/obj/effect/decal/cleanable/greenglow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/maintenance/incinerator) +"cBm" = (/turf/open/floor/wood{tag = "icon-wood-broken5";icon_state = "wood-broken5"},/area/maintenance/incinerator) +"cBn" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/machinery/light/small{dir = 4},/obj/item/weapon/lighter/greyscale,/turf/open/floor/wood,/area/maintenance/incinerator) +"cBo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/asmaint) +"cBp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBq" = (/obj/structure/chair,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBr" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) +"cBt" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cBv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBw" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBy" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBz" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBB" = (/obj/structure/rack{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBE" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cBG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) +"cBH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cBI" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cBJ" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cBK" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cBL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBO" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBQ" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) +"cBR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/aft) +"cBS" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft) +"cBT" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft) +"cBU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cBV" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/aft) +"cBW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cBZ" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Engineering APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCa" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCb" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCd" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCe" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCf" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cCg" = (/turf/closed/wall,/area/engine/engineering) +"cCh" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/engine/engineering) +"cCi" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/engine/engineering) +"cCj" = (/obj/machinery/computer/station_alert,/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -10;req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage";name = "Engineering Secure Storage";pixel_x = -24;pixel_y = 0;req_access_txt = "11"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = -24;pixel_y = 10;req_access_txt = "24"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cCk" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cCl" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cCm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cCn" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cCo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"cCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cCq" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cCr" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"cCs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/atmos) +"cCt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cCu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cCv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) +"cCw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/atmos) +"cCx" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/wood,/area/maintenance/incinerator) +"cCy" = (/obj/effect/decal/cleanable/vomit/old,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/wood,/area/maintenance/incinerator) +"cCz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/maintenance/incinerator) +"cCA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/wood,/area/maintenance/incinerator) +"cCC" = (/obj/structure/table,/obj/item/weapon/cartridge/medical,/obj/item/pizzabox/mushroom,/turf/open/floor/plating,/area/maintenance/asmaint) +"cCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset/full,/turf/open/floor/plating,/area/maintenance/asmaint) +"cCE" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/asmaint) +"cCF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCG" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCH" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCK" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCL" = (/obj/machinery/power/apc{dir = 8;name = "Science Maintenance APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Aft Starboard Solar Access";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCM" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCN" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCO" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/switchblade{force = 12},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCP" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cCQ" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cCR" = (/obj/machinery/power/solar_control{id = "portsolar";name = "Aft Port Solar Control";track = 0},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) +"cCS" = (/turf/open/floor/plating,/area/maintenance/portsolar) +"cCT" = (/obj/machinery/power/apc{dir = 4;name = "Aft Port Solar APC";pixel_x = 23;pixel_y = 2},/obj/machinery/camera{c_tag = "Aft Port Solar Control";dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) +"cCU" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) +"cCV" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cCW" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cCY" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/engine/engineering) +"cCZ" = (/turf/open/floor/plating,/area/engine/engineering) +"cDa" = (/obj/machinery/door/poddoor{id = "Secure Storage";name = "secure storage"},/turf/open/floor/plating,/area/engine/engineering) +"cDb" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) +"cDc" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cDd" = (/turf/open/floor/plasteel,/area/engine/engineering) +"cDe" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cDf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cDg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cDh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) +"cDi" = (/obj/machinery/camera{c_tag = "Chief Engineer's Office";dir = 4;network = list("SS13")},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/computer/card/minor/ce,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDj" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDl" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/structure/filingcabinet/chestdrawer,/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDm" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) +"cDn" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) +"cDo" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) +"cDp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space) +"cDq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space) +"cDr" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space) +"cDs" = (/obj/structure/sign/science,/turf/closed/wall,/area/maintenance/incinerator) +"cDt" = (/obj/structure/chair{dir = 4},/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/incinerator) +"cDu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/maintenance/incinerator) +"cDv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/wood,/area/maintenance/incinerator) +"cDw" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/item/clothing/tie/black,/turf/open/floor/wood,/area/maintenance/incinerator) +"cDx" = (/obj/structure/table/wood,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/wood,/area/maintenance/incinerator) +"cDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/maintenance/incinerator) +"cDz" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/incinerator) +"cDA" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/shard,/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/asmaint) +"cDB" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/asmaint) +"cDC" = (/obj/structure/closet,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cDD" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cDE" = (/obj/structure/rack,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cDF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cDG" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cDH" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"cDI" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cDJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cDK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cDM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cDN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cDQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cDR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDU" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4;pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3;pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/machinery/light_switch{pixel_x = 27},/obj/item/weapon/cartridge/atmos,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cDV" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"cDW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/engineering) +"cDX" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) +"cDY" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{frequency = 1443;id_tag = "mair_in_meter";name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/atmos) +"cDZ" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{frequency = 1443;id_tag = "mair_out_meter";name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/atmos) +"cEa" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/maintenance/incinerator) +"cEb" = (/obj/item/clothing/head/cone,/obj/item/weapon/restraints/handcuffs/cable/orange,/turf/open/floor/wood,/area/maintenance/incinerator) +"cEc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/maintenance/incinerator) +"cEd" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) +"cEe" = (/obj/machinery/door/airlock/maintenance{name = "Biohazard Disposals";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cEf" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint2) +"cEg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEh" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEk" = (/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEl" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEm" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEn" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cEo" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cEp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cEq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cEr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cEs" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cEt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cEz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cEA" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/computer/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/open/floor/plasteel,/area/engine/engineering) +"cEB" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/engineering) +"cED" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"cEE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"cEF" = (/obj/machinery/door/airlock/glass_command{name = "Chief Engineer";req_access_txt = "56"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) +"cEG" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) +"cEH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/chiefs_office) +"cEI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) +"cEJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cEK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/engine/engineering) +"cEL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "n2_in"},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cEM" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2_sensor"},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cEN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "n2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cEO" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "o2_in"},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cEP" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "o2_sensor"},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cEQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "o2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cER" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1443;id = "air_in"},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cES" = (/obj/machinery/air_sensor{frequency = 1443;id_tag = "air_sensor"},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cET" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1;external_pressure_bound = 0;frequency = 1443;icon_state = "vent_map";id_tag = "air_out";internal_pressure_bound = 2000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cEU" = (/obj/machinery/iv_drip,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/maintenance/incinerator) +"cEV" = (/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/incinerator) +"cEW" = (/obj/item/clothing/suit/toggle/labcoat/mad,/turf/open/floor/wood,/area/maintenance/incinerator) +"cEX" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/incinerator) +"cEY" = (/obj/structure/table/wood,/obj/item/organ/internal/butt/xeno,/turf/open/floor/wood,/area/maintenance/incinerator) +"cEZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cFa" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (NORTH)";icon_state = "manifold";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"cFb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cFc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/asmaint) +"cFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"cFe" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/aft) +"cFf" = (/obj/structure/rack,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFl" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFp" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFq" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cFr" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft) +"cFs" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/aft) +"cFt" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cFu" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/engine/engine_smes) +"cFv" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) +"cFw" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/engine/engine_smes) +"cFx" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cFy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/engine/engineering) +"cFz" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cFC" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) +"cFD" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cFE" = (/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) +"cFF" = (/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) +"cFG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) +"cFI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cFJ" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) +"cFK" = (/obj/machinery/camera{c_tag = "Atmospherics N2 Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cFL" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cFM" = (/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cFN" = (/obj/machinery/camera{c_tag = "Atmospherics O2 Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cFO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cFP" = (/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cFQ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/camera{c_tag = "Atmospherics Air-mix Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cFR" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cFS" = (/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cFT" = (/obj/machinery/iv_drip,/obj/effect/decal/cleanable/xenoblood/xsplatter,/turf/open/floor/wood,/area/maintenance/incinerator) +"cFU" = (/obj/item/weapon/kitchen/knife,/turf/open/floor/wood,/area/maintenance/incinerator) +"cFV" = (/obj/structure/table/wood,/obj/item/weapon/scalpel,/obj/item/weapon/wirecutters,/obj/item/organ/brain/alien,/turf/open/floor/wood,/area/maintenance/incinerator) +"cFW" = (/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/incinerator) +"cFX" = (/turf/open/floor/plating,/area/maintenance/incinerator) +"cFY" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/incinerator) +"cFZ" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGa" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGb" = (/obj/structure/disposalpipe/junction{dir = 2;icon_state = "pipe-y"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGc" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGd" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGe" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGf" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) +"cGg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGh" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGi" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) +"cGj" = (/obj/structure/closet/toolcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/asmaint2) +"cGn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cGo" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) +"cGp" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cGq" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) +"cGr" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Engineering"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/engine/engineering) +"cGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"cGt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = -32;pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cGu" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) +"cGD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cGE" = (/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/open/floor/plasteel,/area/engine/engineering) +"cGF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cGG" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cGH" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) +"cGI" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) +"cGJ" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) +"cGK" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) +"cGL" = (/obj/structure/table/wood,/obj/item/weapon/hatchet,/obj/item/weapon/lighter,/turf/open/floor/wood,/area/maintenance/incinerator) +"cGM" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/incinerator) +"cGN" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/crowbar,/turf/open/floor/plating,/area/maintenance/incinerator) +"cGO" = (/obj/item/weapon/bedsheet/cult,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGP" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGS" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGT" = (/obj/machinery/light/small,/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/clipboard,/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/plating,/area/maintenance/asmaint) +"cGU" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cGV" = (/obj/structure/chair{dir = 8},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cGW" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) +"cGX" = (/obj/machinery/vending/cola,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/asmaint2) +"cGY" = (/obj/structure/reagent_dispensers,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/asmaint2) +"cGZ" = (/obj/structure/table/glass,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cHa" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cHb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cHc" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"cHd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHe" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/engine/engine_smes) +"cHf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) +"cHg" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/engine/engine_smes) +"cHh" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "SMES Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHi" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Engineering Delivery";req_access_txt = "10"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/engine/engineering) +"cHk" = (/obj/machinery/camera{c_tag = "Engineering Middle";dir = 4;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) +"cHl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cHm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cHp" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) +"cHq" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) +"cHr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2;name = "Waste Out";on = 1},/turf/open/floor/plating,/area/maintenance/asmaint) +"cHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/emitter{anchored = 1;dir = 4;state = 2},/turf/open/floor/plating,/area/maintenance/asmaint) +"cHt" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) +"cHu" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) +"cHv" = (/obj/structure/table,/obj/item/weapon/weldingtool,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cHw" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cHx" = (/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) +"cHy" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cHz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) +"cHA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHB" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/terminal{icon_state = "term";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHC" = (/obj/machinery/door/window{name = "SMES Chamber";req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHD" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHE" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) +"cHF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cHG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) +"cHH" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "SMES Access";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) +"cHI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/engine/engineering) +"cHJ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/engineering) +"cHK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHL" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cHR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cHT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cHU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cHW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cHX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cHY" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5;pixel_y = 6},/obj/item/weapon/airlock_painter,/turf/open/floor/plasteel,/area/engine/engineering) +"cHZ" = (/obj/machinery/camera{c_tag = "Engineering East";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) +"cIa" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) +"cIb" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cIc" = (/turf/open/floor/plating,/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/asmaint2) +"cId" = (/obj/structure/table/glass,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cIe" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plating,/area/space) +"cIf" = (/obj/machinery/power/apc{dir = 8;name = "Aft Starboard Solar APC";pixel_x = -26;pixel_y = 3},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIg" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIh" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) +"cIk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cIl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) +"cIm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/engine_smes) +"cIn" = (/obj/machinery/door/airlock/engineering{name = "SMES Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) +"cIo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) +"cIp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) +"cIq" = (/obj/machinery/door/airlock/engineering{name = "SMES Room";req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) +"cIr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engineering) +"cIs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cIu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cIv" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cIw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"cIx" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) +"cIz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) +"cIA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall,/area/maintenance/fsmaint) +"cIC" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) +"cID" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) +"cIF" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/grass,/area/hallway/secondary/exit) +"cIG" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/grass,/area/hallway/secondary/exit) +"cIH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cII" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) +"cIJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) +"cIK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cIL" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/engineering) +"cIM" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) +"cIN" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_4) +"cIO" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_4) +"cIP" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_4) +"cIQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/space,/area/space) +"cIR" = (/obj/structure/table_frame,/obj/item/weapon/wirerod,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "warnplate";dir = 5},/area/maintenance/asmaint2) +"cIS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space) +"cIT" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIU" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIV" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cIW" = (/obj/machinery/biogenerator,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cIX" = (/obj/machinery/seed_extractor,/turf/open/floor/plating,/area/maintenance/asmaint2) +"cIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cIZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Research Shuttle";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) +"cJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engine_smes) +"cJb" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) +"cJc" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warning"},/area/engine/engine_smes) +"cJd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) +"cJe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) +"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) +"cJg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cJh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cJi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cJj" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint";req_access = null;req_access_txt = "1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) +"cJk" = (/obj/structure/window,/turf/open/floor/plating,/area/toxins/mixing) +"cJl" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior";idInterior = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Console";pixel_x = 8;pixel_y = 22;req_access_txt = "0";req_one_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) +"cJm" = (/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cJn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cJo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) +"cJp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cJq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)";icon_state = "pipe-j2";dir = 1},/turf/open/floor/plating,/area/maintenance/aft) +"cJr" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cJs" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/engine/engineering) +"cJt" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) +"cJu" = (/obj/structure/table,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) +"cJv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cJw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/engineering) +"cJx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cJy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/engineering) +"cJz" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engineering) +"cJA" = (/obj/machinery/door/airlock/external{name = "Escape Pod Four";req_access = null;req_access_txt = "0"},/turf/open/floor/plating,/area/engine/engineering) +"cJB" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;id = "pod4";name = "escape pod 4"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cJC" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_y = -30},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cJD" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -30;possible_destinations = "asteroid_pod4";shuttleId = "pod4"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) +"cJE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_4) +"cJF" = (/obj/docking_port/stationary/random{dir = 4;id = "asteroid_pod4"},/turf/open/space,/area/space) +"cJG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/space) +"cJH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space) +"cJI" = (/obj/machinery/power/solar_control{id = "starboardsolar";name = "Aft Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cJJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cJK" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cJL" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/engine/engineering) +"cJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "32"},/turf/open/floor/plasteel,/area/engine/engineering) +"cJN" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/apc,/turf/open/floor/plasteel,/area/engine/engineering) +"cJO" = (/obj/structure/table,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/cell_charger,/turf/open/floor/plasteel,/area/engine/engineering) +"cJP" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) +"cJQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cJR" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Engineering West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/engineering) +"cJS" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel,/area/engine/engineering) +"cJT" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) +"cJU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) +"cJV" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) +"cJW" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/engine/engineering) +"cJX" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plating,/area/engine/engineering) +"cJY" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plating,/area/engine/engineering) +"cJZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/engine/engineering) +"cKa" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cKb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "32";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cKd" = (/turf/closed/wall/r_wall,/area/engine/port_engineering) +"cKe" = (/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_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) +"cKf" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKg" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) +"cKh" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/engineering) +"cKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cKj" = (/obj/structure/sign/pods{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engineering) +"cKk" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/engine/engineering) +"cKl" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_4) +"cKm" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_4) +"cKn" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cKo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cKp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cKq" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKr" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) +"cKs" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/camera{c_tag = "Engineering Materials";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/engineering) +"cKt" = (/obj/structure/sign/map/left{pixel_y = 32},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/engine/engineering) +"cKu" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/engine/engineering) +"cKv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/engine/engineering) +"cKw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cKx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cKy" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cKz" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Engineering";departmentType = 4;name = "Engineering RC";pixel_y = 30},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) +"cKD" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) +"cKE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cKF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cKG" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) +"cKI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"cKJ" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cKL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKM" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/apc,/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKN" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/gravity_generator) +"cKO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cKP" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKQ" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKR" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft) +"cKS" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) +"cKT" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "32"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering) +"cKU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cKV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cKW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cKX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cKY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cKZ" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLa" = (/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLb" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Port Engineering APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/camera{c_tag = "Port Engineering North"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLc" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) +"cLe" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"cLf" = (/obj/machinery/camera{c_tag = "Engineering MiniSat Access";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cLg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cLh" = (/obj/structure/transit_tube{tag = "icon-Block";icon_state = "Block"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) +"cLi" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/obj/structure/sign/securearea{name = "EXTERNAL AIRLOCK";desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;pixel_x = 32;pixel_y = 32},/turf/open/floor/plating,/area/maintenance/asmaint2) +"cLj" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "10"},/turf/open/floor/plating,/area/engine/port_engineering) +"cLk" = (/obj/effect/decal/cleanable/vomit/old,/obj/item/weapon/kitchen/fork,/turf/open/floor/plating,/area/maintenance/aft) +"cLl" = (/obj/item/weapon/lighter{lit = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) +"cLm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/camera{c_tag = "Gravity Generator Entrance";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/gravity_generator) +"cLn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cLo" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/gravity_generator) +"cLp" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50;pixel_x = 5},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2},/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) +"cLq" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 5},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -2},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -8},/turf/open/floor/plasteel,/area/engine/engineering) +"cLr" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = -4},/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = -6},/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = 5},/turf/open/floor/plasteel,/area/engine/engineering) +"cLs" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 18},/obj/item/weapon/storage/backpack/industrial,/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) +"cLt" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel,/area/engine/engineering) +"cLu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/engineering) +"cLv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/engineering) +"cLw" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3;pixel_y = -2},/turf/open/floor/plasteel,/area/engine/engineering) +"cLx" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) +"cLy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) +"cLz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3;pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) +"cLA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cLB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cLC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/supermatter) +"cLD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cLE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cLF" = (/obj/machinery/door/airlock/command{name = "MiniSat Access";req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cLG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cLH" = (/obj/structure/transit_tube/station{dir = 8;icon_state = "closed";reverse_launch = 1;tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) +"cLI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cLJ" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cLK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator";req_access_txt = "11"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cLL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cLM" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cLN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/engineering) +"cLO" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cLP" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cLQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cLR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Supermatter Control Room";req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cLS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/supermatter) +"cLT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/supermatter) +"cLU" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLV" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLX" = (/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;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cLZ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cMa" = (/obj/structure/table,/obj/item/weapon/pocketknife,/obj/item/weapon/reagent_containers/food/snacks/beans{bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30);desc = "Smells kind of funny."},/turf/open/floor/plating,/area/maintenance/aft) +"cMb" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) +"cMc" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/engine/engineering) +"cMd" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engineering) +"cMe" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) +"cMf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cMg" = (/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cMh" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cMi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/engine/engine_smes) +"cMj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) +"cMk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cMl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/engineering) +"cMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cMn" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/item/weapon/reagent_containers/pill/charcoal,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"cMo" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering) +"cMp" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/engine/engineering) +"cMq" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) +"cMr" = (/obj/structure/chair/withwheels/office/light,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cMs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/gravity_generator) +"cMt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cMu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cMv" = (/obj/structure/closet/radiation,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark (NORTHWEST)";icon_state = "warndark";dir = 9},/area/engine/supermatter) +"cMw" = (/turf/closed/wall/r_wall,/area/engine/supermatter) +"cMx" = (/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) +"cMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) +"cMz" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark (NORTHEAST)";icon_state = "warndark";dir = 5},/area/engine/supermatter) +"cMA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) +"cMB" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/engineering) +"cMC" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/engine/engineering) +"cMD" = (/obj/structure/transit_tube{tag = "icon-N-SE";icon_state = "N-SE"},/turf/open/space,/area/space) +"cME" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/open/space,/area/space) +"cMF" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cMG" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Gravity Generator APC";pixel_x = -25;pixel_y = 1},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/engine/gravity_generator) +"cMH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/gravity_generator) +"cMI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/gravity_generator) +"cMJ" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/gravity_generator) +"cMK" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cML" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) +"cMM" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) +"cMN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/engineering) +"cMP" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cMQ" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/open/space,/area/space) +"cMR" = (/obj/structure/transit_tube{tag = "icon-E-NW";icon_state = "E-NW"},/turf/open/space,/area/space) +"cMS" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/open/space,/area/space) +"cMT" = (/obj/structure/transit_tube,/turf/open/space,/area/space) +"cMU" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass";icon_state = "E-W-Pass"},/turf/open/space,/area/space) +"cMV" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/open/space,/area/space) +"cMW" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/lattice,/turf/open/space,/area/space) +"cMX" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"cMY" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cMZ" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNa" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_engineering{name = "Gravity Generator";req_access_txt = "11";req_one_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNc" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 32;pixel_y = 0},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNd" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cNe" = (/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cNf" = (/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cNg" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cNh" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/obj/structure/lattice,/turf/open/space,/area/space) +"cNi" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNj" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/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},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNk" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNl" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNm" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNn" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cNo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNp" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNr" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "10"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/engine/port_engineering) +"cNs" = (/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/space) +"cNt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) +"cNu" = (/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/space) +"cNv" = (/obj/item/weapon/crowbar,/turf/open/space,/area/space) +"cNw" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/open/space,/area/space) +"cNx" = (/turf/closed/wall/r_wall,/area/aisat) +"cNy" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"cNz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) +"cNA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/engine/engine_smes) +"cNC" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/firealarm{dir = 4;pixel_x = 26;pixel_y = 6},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engine_smes) +"cND" = (/obj/structure/table,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/turf/open/floor/plasteel,/area/engine/engineering) +"cNE" = (/obj/structure/transit_tube{tag = "icon-D-NE";icon_state = "D-NE"},/turf/open/space,/area/space) +"cNF" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/aisat) +"cNG" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/aisat) +"cNH" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/aisat) +"cNI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Gravity Generator";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNJ" = (/obj/item/weapon/weldingtool,/turf/open/space,/area/space) +"cNK" = (/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/space) +"cNM" = (/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/space) +"cNN" = (/obj/structure/transit_tube{tag = "icon-D-NE";icon_state = "D-NE"},/obj/structure/lattice,/turf/open/space,/area/space) +"cNO" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/open/space,/area/space) +"cNP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) +"cNQ" = (/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) +"cNR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) +"cNS" = (/obj/machinery/gravity_generator/main/station,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNT" = (/obj/structure/transit_tube{tag = "icon-S-NW";icon_state = "S-NW"},/obj/structure/lattice,/turf/open/space,/area/space) +"cNU" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter";dir = 1;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = -28;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cNV" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cNW" = (/obj/machinery/button/door{id = "teledoor";name = "AI Satellite Teleport Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "17;65"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cNX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cNZ" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cOa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cOb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) +"cOc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cOd" = (/turf/closed/wall,/area/aisat) +"cOe" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/aisat) +"cOf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/aisat) +"cOg" = (/obj/machinery/door/airlock/hatch{name = "Teleporter Room";req_access_txt = "17;65"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOh" = (/obj/machinery/door/poddoor/shutters{id = "teledoor";name = "AI Satellite Teleport Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cOj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cOk" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/aisat) +"cOl" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/aisat) +"cOm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 0;pixel_y = 25},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) +"cOn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) +"cOp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cOq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/aisat) +"cOr" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cOs" = (/turf/open/floor/plasteel{tag = "icon-warndark (WEST)";icon_state = "warndark";dir = 8},/area/engine/supermatter) +"cOt" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cOu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cOv" = (/obj/structure/transit_tube/station{dir = 4;icon_state = "closed";reverse_launch = 1;tag = "icon-closed (EAST)"},/turf/open/floor/plating,/area/aisat) +"cOw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) +"cOx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) +"cOy" = (/obj/machinery/door/airlock/external{name = "MiniSat External Access";req_access = null;req_access_txt = "65;13"},/turf/open/floor/plating,/area/aisat) +"cOz" = (/turf/open/floor/plating,/area/aisat) +"cOA" = (/turf/open/floor/plasteel{tag = "icon-warndark (EAST)";icon_state = "warndark";dir = 4},/area/engine/supermatter) +"cOB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cOC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cOD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/port_engineering) +"cOE" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/port_engineering) +"cOF" = (/obj/structure/transit_tube{dir = 1;icon_state = "Block";tag = "icon-Block (NORTH)"},/turf/open/floor/plating,/area/aisat) +"cOG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/aisat) +"cOH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) +"cOI" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) +"cOK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cOL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/aisat) +"cOM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cON" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"cOO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "11";req_one_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cOP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "MiniSat Entrance";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/power/apc{dir = 8;name = "MiniSat External Power APC";pixel_x = -27;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) +"cOQ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) +"cOS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/aisat) +"cOT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) +"cOV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) +"cOW" = (/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat");pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) +"cOX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) +"cOY" = (/obj/machinery/turretid{control_area = "AI Satellite Antechamber";enabled = 1;icon_state = "control_standby";name = "Antechamber Turret Control";pixel_x = 0;pixel_y = -24;req_access = list(65)},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) +"cOZ" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) +"cPa" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) +"cPb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/aisat) +"cPc" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/aisat) +"cPd" = (/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/aisat) +"cPe" = (/turf/closed/wall,/area/turret_protected/aisat_interior) +"cPf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/turret_protected/aisat_interior) +"cPg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber";req_one_access_txt = "65"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/turret_protected/aisat_interior) +"cPi" = (/obj/structure/window/reinforced{dir = 4},/turf/closed/wall,/area/aisat) +"cPj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cPk" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/aisat) +"cPl" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space) +"cPm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cPn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) +"cPo" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/space,/area/space) +"cPp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) +"cPs" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cPu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPv" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPw" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/space,/area/space) +"cPx" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) +"cPy" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/aisat) +"cPz" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_sw";name = "southwest of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"cPA" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) +"cPB" = (/obj/machinery/door/window{dir = 1;name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cPC" = (/obj/structure/window/reinforced,/obj/machinery/door/window{base_state = "right";dir = 1;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cPD" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cPE" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPG" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) +"cPI" = (/obj/machinery/hologram/holopad,/obj/effect/landmark/start{name = "Cyborg"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cPK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPL" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPM" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cPN" = (/obj/structure/window/reinforced,/obj/machinery/door/window{dir = 1;name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) +"cPO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{base_state = "right";dir = 1;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/aisat) +"cPP" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cPQ" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPR" = (/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) +"cPS" = (/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cPT" = (/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) +"cPU" = (/obj/machinery/power/apc{aidisabled = 0;cell_type = 2500;dir = 4;name = "MiniSat Antechamber APC";pixel_x = 29;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cPV" = (/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) +"cPW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) +"cPX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) +"cPY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space) +"cPZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior North West";dir = 8;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cQa" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/bot/floorbot{on = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cQb" = (/obj/machinery/porta_turret{ai = 1;dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) +"cQc" = (/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/turret_protected/aisat_interior) +"cQd" = (/obj/machinery/camera/motion{c_tag = "MiniSat Antechamber";dir = 1;network = list("MiniSat")},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_y = -29},/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/turret_protected/aisat_interior) +"cQe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/bot/cleanbot{on = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) +"cQf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "MiniSat Exterior North East";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) +"cQg" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space) +"cQh" = (/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQj" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQk" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_locked";locked = 1;name = "AI Chamber";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQm" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQp" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQq" = (/obj/machinery/camera{c_tag = "AI Chamber North";dir = 2;network = list("MiniSat","RD");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) +"cQr" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) +"cQs" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) +"cQt" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQw" = (/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQy" = (/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQz" = (/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -21},/obj/machinery/ai_slipper{icon_state = "motion0";uses = 10},/obj/machinery/light,/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQA" = (/obj/machinery/porta_turret{ai = 1;dir = 8},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cQC" = (/turf/closed/wall,/area/turret_protected/ai) +"cQD" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) +"cQE" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 0;pixel_y = -25},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQF" = (/obj/machinery/ai_slipper{icon_state = "motion0";uses = 10},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQG" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 27},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 27;pixel_y = 5},/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI";departmentType = 5;pixel_x = 32;pixel_y = 32},/obj/machinery/newscaster/security_unit{pixel_x = -32;pixel_y = 32},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQH" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = 27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 0;pixel_y = -25},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQI" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "AI Chamber APC";pixel_y = 24},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQJ" = (/obj/machinery/door/window{name = "AI Core Door";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/turretid{name = "AI Chamber turret control";pixel_x = 5;pixel_y = 24},/obj/machinery/flasher{id = "AI";pixel_x = -6;pixel_y = 24},/obj/machinery/camera/motion{c_tag = "AI Chamber South";dir = 2;network = list("RD","MiniSat")},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/turret_protected/ai) +"cQM" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQN" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQO" = (/obj/machinery/hologram/holopad,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQP" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior South West";dir = 8;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cQR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQS" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) +"cQT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "MiniSat Exterior South East";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) +"cQV" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_se";name = "southeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"cQW" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQX" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/closed/wall/r_wall,/area/turret_protected/ai) +"cQY" = (/turf/closed/wall,/area/ai_monitored/storage/secure) +"cQZ" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plating,/area/ai_monitored/storage/secure) +"cRa" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) +"cRb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) +"cRc" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) +"cRd" = (/obj/structure/rack,/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/item/clothing/head/welding,/turf/open/floor/plating,/area/ai_monitored/storage/secure) +"cRe" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space) +"cRf" = (/obj/structure/window/reinforced,/turf/open/space,/area/space) +"cRg" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space) +"cRh" = (/obj/machinery/power/apc{dir = 8;name = "MiniSat Maint APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/ai_monitored/storage/secure) +"cRi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air Out";on = 1},/turf/open/floor/plasteel{tag = "icon-warndark (NORTHEAST)";icon_state = "warndark";dir = 5},/area/ai_monitored/storage/secure) +"cRj" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating{icon_state = "warnplate"},/area/ai_monitored/storage/secure) +"cRk" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{tag = "icon-warndark (NORTHWEST)";icon_state = "warndark";dir = 9},/area/ai_monitored/storage/secure) +"cRl" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 28;pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/ai_monitored/storage/secure) +"cRm" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) +"cRn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/aisat) +"cRo" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cRp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/aisat) +"cRq" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRr" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRt" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRw" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRx" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/aisat) +"cRy" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space) +"cRz" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera/motion{c_tag = "MiniSat Maintenance";dir = 4;network = list("MiniSat")},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRB" = (/obj/structure/chair,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ai_monitored/storage/secure) +"cRF" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating/airless,/area/space) +"cRG" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_s";name = "south of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) +"cRH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRI" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRJ" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRK" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRL" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) +"cRM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/secure) +"cRN" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/port_engineering) +"cRP" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cRQ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cRR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cRS" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cRT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cRU" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2;name = "SMES room APC";pixel_y = -24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/engine/engine_smes) +"cRV" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering";req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engine_smes) +"cRW" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engine_smes) +"cRX" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "warning"},/area/engine/engine_smes) +"cRY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cRZ" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters"},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{tag = "icon-warndark (WEST)";icon_state = "warndark";dir = 8},/area/engine/supermatter) +"cSa" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cSb" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Supermatter Control Room";dir = 8;network = list("SS13")},/obj/machinery/button/door{id = "superinput";name = "Emitter Shutters"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{tag = "icon-warndark (EAST)";icon_state = "warndark";dir = 4},/area/engine/supermatter) +"cSc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) +"cSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cSe" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSf" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSg" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSh" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSi" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSj" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/port_engineering) +"cSk" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSl" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/camera{c_tag = "Port Engineering North-East";dir = 5;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSo" = (/obj/machinery/vending/tool,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSp" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSq" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/port_engineering) +"cSr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cSA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator";req_access_txt = "11"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) +"cSB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) +"cSC" = (/turf/closed/wall/r_wall,/area/engine/heat_exchange) +"cSD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) +"cSE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) +"cSF" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters"},/turf/open/floor/plasteel{tag = "icon-warndark (SOUTHWEST)";icon_state = "warndark";dir = 10},/area/engine/supermatter) +"cSG" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) +"cSH" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) +"cSI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "smblast";name = "Control Room Shutters"},/turf/open/floor/plasteel{tag = "icon-warndark (SOUTHEAST)";icon_state = "warndark";dir = 6},/area/engine/supermatter) +"cSJ" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) +"cSK" = (/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSL" = (/obj/item/device/radio/off,/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSM" = (/obj/machinery/power/emitter{anchored = 1;state = 2},/obj/structure/cable,/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSN" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSO" = (/obj/structure/grille,/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSP" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSQ" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) +"cSR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cSS" = (/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 = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) +"cST" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSW" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cSY" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/port_engineering) +"cSZ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/port_engineering) +"cTd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/port_engineering) +"cTe" = (/obj/structure/closet/radiation,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/engine/gravity_generator) +"cTf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cTg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/gravity_generator) +"cTh" = (/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "32";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/engine/engineering) +"cTi" = (/obj/structure/table,/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) +"cTj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) +"cTk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plating,/area/engine/supermatter) +"cTl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/engine/supermatter) +"cTm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/engine/supermatter) +"cTn" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) +"cTo" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "smblast"},/turf/open/floor/engine,/area/engine/supermatter) +"cTp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cTq" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/turf/open/floor/plating,/area/engine/supermatter) +"cTr" = (/obj/machinery/atmospherics/components/unary/tank/oxygen{volume = 1e+007},/turf/open/floor/plating,/area/engine/supermatter) +"cTs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cTt" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/tank/nitrogen{volume = 1e+007},/turf/open/floor/plating,/area/engine/supermatter) +"cTu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plating,/area/engine/supermatter) +"cTx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTB" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/port_engineering) +"cTD" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) +"cTE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) +"cTF" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cTG" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plating,/area/engine/supermatter) +"cTH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter) +"cTI" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cTJ" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/engine/supermatter) +"cTK" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cTL" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4;layer = 3},/obj/machinery/camera{c_tag = "Supermatter Center"},/turf/open/floor/plating,/area/engine/supermatter) +"cTM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plating,/area/engine/supermatter) +"cTN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cTO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cTP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plating,/area/engine/supermatter) +"cTQ" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Supermatter APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/atmospherics/components/binary/pump{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) +"cTR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cTS" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plating,/area/engine/supermatter) +"cTX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cTY" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/engine/port_engineering) +"cTZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUd" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) +"cUe" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/heat_exchange) +"cUh" = (/obj/machinery/atmospherics/components/binary/volume_pump,/turf/open/floor/plating,/area/engine/supermatter) +"cUi" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plating,/area/engine/supermatter) +"cUj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/volume_pump{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) +"cUk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) +"cUl" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cUm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cUn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/power/emitter,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cUo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cUp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/supermatter) +"cUq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cUr" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cUs" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cUt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) +"cUu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cUv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/item/weapon/wrench,/turf/open/floor/plating,/area/engine/supermatter) +"cUw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plating,/area/engine/supermatter) +"cUx" = (/turf/closed/wall,/area/engine/port_engineering) +"cUA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUB" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUE" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUF" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUG" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cUH" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/space,/area/space) +"cUI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/space,/area/space) +"cUJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/heat_exchange) +"cUK" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/space) +"cUL" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/engine/heat_exchange) +"cUM" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plating,/area/engine/heat_exchange) +"cUN" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Filtering Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/heat_exchange) +"cUO" = (/obj/machinery/camera{c_tag = "Filtering Room"},/turf/open/floor/plating,/area/engine/heat_exchange) +"cUP" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters";pixel_x = 22},/turf/open/floor/plating,/area/engine/heat_exchange) +"cUQ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cUR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/camera{c_tag = "Supermatter West";dir = 4;network = list("SS13")},/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters";pixel_x = -22},/turf/open/floor/plating,/area/engine/supermatter) +"cUS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) +"cUT" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/supermatter) +"cUU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cUV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cUW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "superinput";name = "Emitter Shutters";pixel_y = -22},/turf/open/floor/plating,/area/engine/supermatter) +"cUX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cUY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) +"cUZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cVa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) +"cVb" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cVc" = (/obj/machinery/field/generator{anchored = 1;state = 2},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cVf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = -25;req_access_txt = "11"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVg" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVh" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -8},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVj" = (/obj/machinery/power/smes/engineering,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/space,/area/space) +"cVl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVm" = (/obj/machinery/atmospherics/pipe/manifold4w/green/visible,/turf/open/floor/plating,/area/engine/heat_exchange) +"cVn" = (/turf/open/floor/plating,/area/engine/heat_exchange) +"cVo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVp" = (/obj/machinery/door/poddoor{id = "heatexchange"},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/heat_exchange) +"cVr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cVs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cVt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters";pixel_x = 22},/turf/open/floor/plating,/area/engine/supermatter) +"cVu" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cVv" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "smcollector"},/turf/open/floor/plating,/area/engine/supermatter) +"cVw" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "superinput"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cVx" = (/obj/machinery/door/airlock/maintenance_hatch{locked = 1;req_access_txt = "11"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cVy" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cVz" = (/obj/machinery/door/airlock/maintenance_hatch{locked = 1;req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cVA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) +"cVB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters";pixel_x = -22},/turf/open/floor/plating,/area/engine/supermatter) +"cVC" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/camera{c_tag = "Supermatter East";dir = 8;network = list("SS13")},/turf/open/floor/plating,/area/engine/supermatter) +"cVD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/engine/port_engineering) +"cVG" = (/obj/item/weapon/wirecutters,/turf/open/space,/area/space) +"cVH" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating,/area/engine/port_engineering) +"cVI" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVK" = (/obj/machinery/door/firedoor,/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cVL" = (/obj/machinery/shieldgen,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plating,/area/engine/port_engineering) +"cVM" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/open/floor/plating,/area/engine/port_engineering) +"cVN" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/port_engineering) +"cVO" = (/obj/machinery/atmospherics/components/unary/heat_exchanger{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVP" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVQ" = (/obj/machinery/atmospherics/components/unary/heat_exchanger{dir = 4},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVR" = (/obj/machinery/door/window{dir = 8;name = "Filtering Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plating,/area/engine/heat_exchange) +"cVS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "smcollector"},/turf/open/floor/plating,/area/engine/supermatter) +"cVT" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) +"cVU" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/rad_collector{anchored = 1;req_access = list(32)},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/supermatter) +"cVV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cVW" = (/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cVX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cVY" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/rad_collector{anchored = 1;req_access = list(32)},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/engine/supermatter) +"cVZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cWa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter) +"cWb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cWc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/space) +"cWd" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/space,/area/space) +"cWe" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWj" = (/turf/open/floor/plating,/area/engine/port_engineering) +"cWk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cWl" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cWm" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/engine/port_engineering) +"cWo" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/engine/port_engineering) +"cWp" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) +"cWq" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/turf/open/floor/plating,/area/engine/heat_exchange) +"cWr" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/door/poddoor{id = "heatexchange"},/turf/open/floor/plating,/area/engine/heat_exchange) +"cWs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) +"cWt" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) +"cWu" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) +"cWv" = (/obj/machinery/mass_driver{id = "engicannon"},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;tag = "smin";volume_rate = 700},/obj/machinery/power/supermatter_shard{anchored = 1},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cWw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cWx" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) +"cWy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cWz" = (/turf/open/floor/plating,/area/engine/supermatter) +"cWA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cWB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/turf/open/floor/plating,/area/engine/supermatter) +"cWC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space,/area/space) +"cWE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWF" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/engine/port_engineering) +"cWG" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cWH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWI" = (/obj/machinery/particle_accelerator/control_box{dir = 1},/obj/structure/cable/yellow{d1 = 0;d2 = 2},/turf/open/floor/plating,/area/engine/port_engineering) +"cWJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating,/area/engine/port_engineering) +"cWK" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cWL" = (/obj/machinery/door/poddoor{id = "Secure Storage1";name = "secure storage"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/port_engineering) +"cWM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cWN" = (/obj/structure/closet/crate,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/electronics/airlock,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/engine/port_engineering) +"cWO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/heat_exchange) +"cWP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/tank_dispenser,/turf/open/floor/plating,/area/engine/supermatter) +"cWQ" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson{pixel_x = -4;pixel_y = -3},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) +"cWR" = (/obj/machinery/door/poddoor/preopen{id = "smcollector"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cWS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/engine/supermatter) +"cWT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cWU" = (/obj/machinery/camera{c_tag = "Supermatter Chamber";dir = 1},/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cWV" = (/obj/structure/sign/securearea{color = "";desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'.";name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE.";pixel_y = -32},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) +"cWW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/supermatter) +"cWX" = (/turf/open/floor/plating/airless{dir = 8;icon_state = "warnplate"},/area/space) +"cWY" = (/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/space) +"cXc" = (/obj/structure/particle_accelerator/power_box{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cXd" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cXe" = (/obj/structure/particle_accelerator/end_cap{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cXf" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cXg" = (/obj/machinery/camera{c_tag = "Engineering PA";dir = 9;network = list("SS13")},/turf/open/floor/plating,/area/engine/port_engineering) +"cXh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/security/telescreen{desc = "Used for watching the singularity chamber.";dir = 2;layer = 4;name = "Singularity Engine Telescreen";network = list("Singularity");pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXi" = (/obj/item/weapon/storage/box/matches,/turf/open/floor/plating,/area/engine/port_engineering) +"cXj" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/camera{c_tag = "Port Engineering Secure Storage";dir = 8;network = list("SS13")},/turf/open/floor/plating,/area/engine/port_engineering) +"cXk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/heat_exchange) +"cXl" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cXm" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cXn" = (/obj/machinery/door/poddoor{id = "engicannon"},/obj/machinery/atmospherics/pipe/manifold/yellow/hidden,/turf/open/floor/engine/vacuum,/area/engine/supermatter) +"cXo" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cXp" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) +"cXq" = (/obj/structure/window{color = "red";desc = "A window, break in case of emergency.";dir = 1;icon_state = "window";tag = "icon-window (NORTH)"},/obj/machinery/button/massdriver{id = "engicannon";name = "\improper JETTISON ENGINE";pixel_y = -22;req_access_txt = "32"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/engine/supermatter) +"cXr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cXt" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) +"cXu" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plating,/area/engine/port_engineering) +"cXv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXw" = (/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage1";name = "Secure Storage";pixel_x = 24;pixel_y = 0;req_access_txt = "10"},/obj/machinery/camera{c_tag = "Port Engineering Middle";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXx" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/port_engineering) +"cXy" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;volume_rate = 5000},/turf/open/floor/plating/airless,/area/space) +"cXz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall,/area/space) +"cXA" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) +"cXB" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = -25;req_access_txt = "11"},/turf/open/floor/plating,/area/engine/port_engineering) +"cXC" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXD" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXE" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/port_engineering) +"cXF" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXG" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXI" = (/obj/machinery/field/generator,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) +"cXJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = 25;req_access_txt = "11"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXM" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Port Engineering South"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXN" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 22},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXY" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{pixel_x = 2;pixel_y = 3},/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cXZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYb" = (/obj/item/device/multitool,/turf/open/space,/area/space) +"cYd" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYe" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 3;pixel_y = 5},/obj/item/device/flashlight,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYf" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/port_engineering) +"cYg" = (/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 = 32},/turf/open/floor/plating,/area/engine/port_engineering) +"cYh" = (/obj/machinery/power/emitter{anchored = 1;dir = 1;state = 2},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cYi" = (/obj/structure/grille,/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cYj" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cYk" = (/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 = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) +"cYl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYp" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/port_engineering) +"cYq" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cYr" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) +"cYs" = (/obj/structure/closet/emcloset,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) +"cYt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYu" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYw" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYx" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYy" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYz" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel,/area/engine/port_engineering) +"cYA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) +"cYB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/port_engineering) +"cYC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/port_engineering) +"cYD" = (/obj/structure/lattice,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/space,/area/space) -( -1, -1, -1) = {" +(1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -72278,7 +7689,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaA aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJapXaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -72296,16 +7707,16 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebcLbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYaZLbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLaZLbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -72331,7 +7742,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccsbZzbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -72359,7 +7770,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGczocEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -72438,4 +7849,3 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} - From e3ec14d25008de1cc0738b4ec24915441c333322 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sat, 24 Dec 2016 23:59:11 -0800 Subject: [PATCH 45/55] LetsTryagain --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 145561 ++++++++++++++- 1 file changed, 137713 insertions(+), 7848 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index d533981..e9a9bff 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -1,7851 +1,137716 @@ -"aaa" = (/turf/open/space,/area/space) -"aab" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_n";name = "north of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"aac" = (/obj/structure/lattice,/turf/open/space,/area/space) -"aad" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) -"aae" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/grille,/turf/open/space,/area/space) -"aaf" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space) -"aag" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_ne";name = "northeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"aah" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_nw";name = "northwest of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"aai" = (/turf/closed/wall/r_wall,/area/security/transfer) -"aaj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/engine,/area/security/transfer) -"aak" = (/obj/machinery/door/poddoor{id = "executionspacevent"},/turf/open/floor/engine,/area/security/transfer) -"aal" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/engine,/area/security/transfer) -"aam" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space) -"aan" = (/obj/machinery/flasher{id = "executionflasher";pixel_y = 24},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/engine,/area/security/transfer) -"aao" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/security/processing) -"aap" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/transfer) -"aaq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/processing) -"aar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/security/transfer) -"aas" = (/obj/machinery/sparker{id = "executionsparker";pixel_x = 24},/turf/open/floor/engine,/area/security/transfer) -"aat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/chair,/turf/open/floor/engine,/area/security/transfer) -"aau" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aav" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aaw" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aax" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aay" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/engine,/area/security/transfer) -"aaz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/security/transfer) -"aaA" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/security/transfer) -"aaB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/machinery/camera{c_tag = "Prison Shuttle Dock Northwest";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aaC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/processing) -"aaD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aaE" = (/obj/machinery/door/airlock/external{req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) -"aaF" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aaG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aaH" = (/obj/structure/grille,/obj/structure/window,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/security/transfer) -"aaI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{heat_proof = 1;name = "Prisoner Transfer Chamber";req_access_txt = "2"},/turf/open/floor/engine,/area/security/transfer) -"aaJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/grille,/obj/structure/window,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/security/transfer) -"aaK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aaL" = (/obj/machinery/door/airlock/shuttle{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"aaM" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen{volume = 10000},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaN" = (/obj/machinery/atmospherics/components/unary/tank/toxins,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaO" = (/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaP" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/razor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaQ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaR" = (/obj/machinery/button/flasher{id = "executionflasher";pixel_x = 24;pixel_y = 4;req_access_txt = "1"},/obj/machinery/button/door{id = "executionspacevent";name = "vent to space";pixel_x = 24;pixel_y = -8;req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaS" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/weapon/tank/internals/anesthetic,/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/mask/breath,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aaV" = (/obj/machinery/camera{c_tag = "Prison Shuttle Dock Northeast";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"aaW" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaX" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaY" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aaZ" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aba" = (/obj/machinery/button/ignition{id = "executionsparker";pixel_x = 24;pixel_y = 8;req_access_txt = "1"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abb" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abd" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space,/area/space) -"abe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abf" = (/obj/machinery/flasher{id = "gulagshuttleflasher";pixel_x = 25},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"abg" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/transfer) -"abk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/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"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/door/window/northleft{dir = 4;req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/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"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abp" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abq" = (/obj/machinery/door/airlock/security{name = "Prisoner Transfer";req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abu" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abv" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abw" = (/obj/structure/table,/obj/item/device/electropack,/obj/item/clothing/head/helmet,/obj/item/device/assembly/signaler,/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Transfer Center APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abx" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"aby" = (/obj/structure/closet/secure_closet/injection,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abz" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/light,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/transfer) -"abA" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abF" = (/turf/closed/wall/r_wall,/area/security/lockers) -"abG" = (/turf/closed/wall/r_wall,/area/security/hos) -"abH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/hos) -"abI" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"abJ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"abK" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/machinery/camera{c_tag = "Brig Interrogation"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"abL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"abN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/processing) -"abO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"abP" = (/obj/structure/filingcabinet,/turf/open/floor/carpet,/area/security/hos) -"abQ" = (/obj/machinery/computer/security,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/security/hos) -"abR" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/carpet,/area/security/hos) -"abS" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"abT" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/carpet,/area/security/hos) -"abU" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"abV" = (/obj/machinery/computer/card/minor/hos,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/carpet,/area/security/hos) -"abW" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/lockers) -"abX" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/closet/bombclosetsecurity,/turf/open/floor/plasteel,/area/security/lockers) -"abY" = (/turf/open/floor/plasteel,/area/security/lockers) -"abZ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Cappers! Fairly unremarkable really.";name = "\improper Officer Cappers"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"aca" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1;icon_state = "tube1"},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Camilla! He constantly seeks validation.";name = "\improper Officer Camilla"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acb" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/flasher/portable,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acc" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/flasher/portable,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acd" = (/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"ace" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acf" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/barricade/security,/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acg" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"ach" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"aci" = (/obj/structure/table,/obj/item/weapon/lighter,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"acj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Prison Shuttle Dock West";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"ack" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) -"acl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"acm" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"acn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Prison Shuttle Dock APC";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing) -"aco" = (/obj/structure/table,/obj/item/device/assembly/flash,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"acp" = (/obj/machinery/computer/shuttle/labor{name = "prison shuttle console"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/security/processing) -"acq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel,/area/security/processing) -"acr" = (/obj/machinery/camera{c_tag = "Prison Shuttle Dock East";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"acs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"act" = (/obj/structure/closet/ammunitionlocker,/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) -"acu" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) -"acv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) -"acw" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/deputy,/obj/item/weapon/storage/box/seccarts,/turf/open/floor/carpet,/area/security/hos) -"acx" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"acy" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel,/area/security/lockers) -"acz" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/closet/l3closet/security,/turf/open/floor/plasteel,/area/security/lockers) -"acA" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acB" = (/turf/open/floor/carpet,/area/security/hos) -"acC" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acD" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acE" = (/obj/vehicle/secway,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/lockers) -"acF" = (/obj/structure/table,/obj/item/device/taperecorder,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"acG" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"acH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"acI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) -"acJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"acK" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/security/processing) -"acL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/processing) -"acM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) -"acN" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"acO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) -"acP" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Head of Security's Office";dir = 4;network = list("SS13")},/obj/machinery/recharger,/turf/open/floor/carpet,/area/security/hos) -"acQ" = (/obj/structure/table/wood,/obj/item/weapon/coin/adamantine,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) -"acR" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet,/area/security/hos) -"acS" = (/obj/structure/closet/secure_closet/hos,/turf/open/floor/carpet,/area/security/hos) -"acT" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Brig Locker Room West";dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/lockers) -"acU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/security/lockers) -"acV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/lockers) -"acW" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/lockers) -"acX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/lockers) -"acY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"acZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"ada" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"adb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) -"adc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"add" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) -"ade" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) -"adf" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/processing) -"adg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/processing) -"adh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/processing) -"adi" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/processing) -"adj" = (/obj/structure/closet/ammunitionlocker,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) -"adk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"adl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"adm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/security/hos) -"adn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/security/hos) -"ado" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/hos) -"adp" = (/turf/closed/wall,/area/security/transfer) -"adq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/security/hos) -"adr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/transfer) -"ads" = (/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Security Locker Room APC";pixel_x = -24},/turf/open/floor/plasteel,/area/security/lockers) -"adt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) -"adu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/security/lockers) -"adv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/lockers) -"adw" = (/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/open/floor/plasteel,/area/security/lockers) -"adx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/brig) -"ady" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation";req_access_txt = "63"},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"adz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/security/isolation) -"adA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) -"adB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Transfer Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/processing) -"adC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"adD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"adE" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/security/hos) -"adF" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera{c_tag = "Brig Riot Equipment";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"adG" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Head of Security's Office APC";pixel_x = -24},/turf/open/floor/carpet,/area/security/hos) -"adH" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/security/hos) -"adI" = (/turf/closed/wall,/area/security/hos) -"adJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/carpet,/area/security/hos) -"adK" = (/obj/machinery/disposal/bin,/turf/open/floor/carpet,/area/security/hos) -"adL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel,/area/security/lockers) -"adM" = (/obj/structure/closet/secure_closet/security,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/lockers) -"adN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/lockers) -"adO" = (/obj/structure/closet/secure_closet/security,/turf/open/floor/plasteel,/area/security/lockers) -"adP" = (/obj/structure/closet/secure_closet/security,/obj/machinery/light,/turf/open/floor/plasteel,/area/security/lockers) -"adQ" = (/obj/structure/closet/secure_closet/security,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) -"adR" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 20},/obj/item/stack/sheet/metal{amount = 20},/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/lockers) -"adS" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/security/lockers) -"adT" = (/obj/structure/table,/obj/item/key/security,/obj/item/key/security,/obj/item/key/security,/obj/item/key/security,/obj/machinery/camera{c_tag = "Brig Locker Room East";dir = 1},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/security/lockers) -"adU" = (/obj/machinery/vending/security,/obj/machinery/light,/turf/open/floor/plasteel,/area/security/lockers) -"adV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/isolation) -"adW" = (/obj/machinery/vending/medical{pixel_x = -2;req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 9;icon_state = "whitered"},/area/security/isolation) -"adX" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitered"},/area/security/isolation) -"adY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"adZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aea" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aeb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aec" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aed" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aee" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aef" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/camera{c_tag = "Brig Cell Corridor Northwest";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/brig) -"aeg" = (/obj/structure/rack,/obj/item/weapon/storage/box/flashbangs,/obj/item/weapon/storage/box/flashbangs,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aeh" = (/obj/structure/rack,/obj/item/weapon/storage/box/teargas,/obj/item/weapon/storage/box/teargas,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aei" = (/obj/machinery/suit_storage_unit/security,/obj/machinery/camera/motion{c_tag = "Armory";name = "motion-sensitive security camera"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aej" = (/obj/machinery/suit_storage_unit/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aek" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"ael" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aem" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/hos) -"aen" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Head of Security's Office";req_access_txt = "58"},/turf/open/floor/carpet,/area/security/hos) -"aeo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/hos) -"aep" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Equipment Room";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/lockers) -"aeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Equipment Room";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/lockers) -"aer" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/main) -"aes" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/isolation) -"aet" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/whitered,/area/security/isolation) -"aeu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) -"aev" = (/turf/closed/wall/r_wall,/area/security/main) -"aew" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Brig Medbay";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/isolation) -"aex" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) -"aey" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"aez" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"aeA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"aeB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"aeC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"aeD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aeE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"aeF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"aeG" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp,/obj/item/weapon/storage/box/trackimp,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aeH" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeK" = (/obj/machinery/button/door{id = "riotequipment";name = "Riot Equipment Shutters";pixel_x = 24;pixel_y = 32;req_access_txt = "1"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeM" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeN" = (/obj/machinery/door/airlock/glass_security{name = "Riot Equipment";req_access_txt = "3"},/obj/machinery/door/poddoor/shutters{id = "riotequipment"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeO" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/mask/gas/sechailer,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "vault"},/area/ai_monitored/security/armory) -"aeP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/hos) -"aeQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"aeR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/main) -"aeS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aeT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main) -"aeU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light{dir = 1;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"aeV" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"aeW" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"aeX" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"aeY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"aeZ" = (/obj/machinery/computer/secure_data,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/main) -"afa" = (/obj/machinery/computer/security,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"afb" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afc" = (/obj/item/device/radio/intercom{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afd" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afe" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"aff" = (/obj/structure/closet/wardrobe/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afg" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"afh" = (/obj/machinery/shower{dir = 8},/obj/machinery/light/small{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afi" = (/obj/structure/bed,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/security/isolation) -"afj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) -"afk" = (/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) -"afl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/fpmaint) -"afm" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"afn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) -"afo" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"afp" = (/obj/structure/rack,/obj/item/weapon/storage/lockbox/loyalty,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/mob/living/simple_animal/bot/secbot{desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands.";name = "\improper Officer Lock n Lode"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"afr" = (/obj/structure/rack,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afs" = (/obj/structure/rack,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/weapon/tank/internals/emergency_oxygen/double,/obj/item/device/multitool,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"aft" = (/obj/structure/cable,/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Armory APC";pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"afu" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/main) -"afv" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Head of Security"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main) -"afw" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"afx" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/security/main) -"afy" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) -"afz" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"afA" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afB" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afC" = (/obj/machinery/door/window/northleft{dir = 2;name = "Shower Door"},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afD" = (/obj/machinery/door/window/northleft{dir = 2;name = "Shower Door"},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"afE" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/whitered,/area/security/isolation) -"afF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 8;icon_state = "whitered"},/area/security/isolation) -"afG" = (/obj/machinery/camera{c_tag = "Brig Medbay";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "whitered"},/area/security/isolation) -"afH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"afI" = (/turf/closed/wall,/area/security/main) -"afJ" = (/obj/structure/grille,/turf/open/space,/area/space) -"afK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"afL" = (/obj/machinery/disposal/trapdoor{id = "Cell 6"},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"afM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"afN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"afO" = (/obj/machinery/door_timer{id = "Cell 6";name = "Secure Cell 2";pixel_x = -32},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) -"afP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/brig) -"afQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"afR" = (/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afS" = (/obj/machinery/door/window/brigdoor{name = "Armory";req_access_txt = "3"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"afT" = (/obj/structure/window/reinforced,/obj/structure/rack,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/obj/item/weapon/gun/energy/gun/advtaser,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afU" = (/obj/structure/window/reinforced,/obj/structure/guncase/ecase,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/ionrifle,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun,/obj/item/weapon/gun/energy/gun,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afV" = (/obj/structure/window/reinforced,/obj/structure/guncase/shotgun,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/obj/item/weapon/gun/projectile/shotgun/riot,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/security/armory) -"afW" = (/obj/machinery/door/airlock/glass_security{name = "Riot Equipment";req_access_txt = "2"},/obj/machinery/door/poddoor/shutters{id = "riotequipment"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/security/armory) -"afX" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/main) -"afY" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) -"afZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"aga" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) -"agb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"agc" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) -"agd" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/security/main) -"age" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/security/main) -"agf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"agg" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) -"agh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Security Office APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) -"agi" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"agj" = (/obj/machinery/door/airlock{name = "Showers";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"agk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"agl" = (/obj/machinery/camera{c_tag = "Brig Showers";dir = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"agm" = (/turf/open/floor/plasteel,/area/security/main) -"agn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"ago" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/gauze,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{dir = 2;icon_state = "whitered"},/area/security/isolation) -"agp" = (/obj/structure/table,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/turf/open/floor/plasteel{dir = 10;icon_state = "whitered"},/area/security/isolation) -"agq" = (/obj/structure/table,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/turf/open/floor/plasteel{dir = 6;icon_state = "whitered"},/area/security/isolation) -"agr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main) -"ags" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"agt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/apc{dir = 8;name = "Brig Medbay APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/isolation) -"agu" = (/obj/item/device/radio/intercom{pixel_x = -25;prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"agv" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_3) -"agw" = (/turf/closed/wall/shuttle{icon_state = "swall14";dir = 2},/area/shuttle/pod_3) -"agx" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_3) -"agy" = (/turf/closed/wall/shuttle{icon_state = "swall_s10";dir = 2},/area/shuttle/pod_3) -"agz" = (/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"agA" = (/obj/machinery/flasher{id = "Cell 6"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"agB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) -"agC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "SecureCell2";name = "Secure Cell 2";req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) -"agD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"agE" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"agF" = (/obj/machinery/computer/secure_data,/obj/machinery/camera{c_tag = "Warden's Office";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"agG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"agH" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"agI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) -"agJ" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"agK" = (/obj/vehicle/secway,/obj/item/key/security,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"agL" = (/obj/structure/table,/obj/machinery/syndicatebomb/training,/obj/item/weapon/gun/energy/laser/practice,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/main) -"agM" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"agN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"agO" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/security/main) -"agP" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Security Office West";dir = 2;network = list("Xeno","RD");pixel_x = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/main) -"agQ" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel,/area/security/main) -"agR" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"agS" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Security Office East";dir = 8;network = list("SS13")},/obj/item/clothing/head/welding,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) -"agT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"agU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"agV" = (/turf/closed/wall/r_wall,/area/maintenance/fsmaint) -"agW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/maintenance/fsmaint) -"agX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/fsmaint) -"agY" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/maintenance/fsmaint) -"agZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aha" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ahb" = (/obj/structure/closet/secure_closet/brig{id = "Cell 6"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"ahc" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"ahd" = (/turf/closed/wall/shuttle{icon_state = "swallc4"},/area/shuttle/pod_3) -"ahe" = (/obj/structure/chair,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"ahf" = (/obj/structure/chair,/obj/machinery/flasher{id = "brigshuttleflash";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"ahg" = (/obj/structure/chair,/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"ahh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ahi" = (/obj/structure/chair,/obj/item/weapon/storage/pod{pixel_y = 30},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ahj" = (/obj/structure/chair,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ahk" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ahl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/camera{c_tag = "Brig Secure Cell 2";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"ahm" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) -"ahn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) -"aho" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"ahp" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Warden's Office";req_access_txt = "3"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"aht" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahu" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahv" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Security Officer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahx" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/main) -"ahy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ahz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahA" = (/obj/machinery/computer/shuttle/labor{name = "prison shuttle console"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"ahB" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = -31;pixel_y = 0},/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"ahC" = (/turf/closed/wall/shuttle{icon_state = "swall1";dir = 2},/area/shuttle/labor) -"ahD" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"ahE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main) -"ahF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahG" = (/obj/structure/rack,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahM" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ahN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ahO" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ahP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Brig Cell Corridor West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) -"ahQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"ahR" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Warden"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahS" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahU" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/button/door{id = "armorylockdown";name = "Brig Control Lockdown";req_access_txt = "1"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahV" = (/obj/structure/closet/secure_closet/warden,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahW" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Brig Control APC";pixel_x = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahX" = (/turf/closed/wall,/area/security/warden) -"ahY" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"ahZ" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/item/device/radio/intercom{pixel_x = -26},/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/security/main) -"aia" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) -"aib" = (/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) -"aic" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) -"aid" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;dwidth = 2;height = 9;id = "pod3";name = "escape pod 3";width = 5},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"aie" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"aif" = (/obj/machinery/door/airlock/glass_security{name = "Brig Escape Shuttle";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"aig" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"aih" = (/obj/docking_port/stationary/random{dir = 4;dwidth = 2;height = 9;id = "asteroid_pod3";width = 5},/turf/open/space,/area/space) -"aii" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space) -"aij" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "red"},/area/security/main) -"aik" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/door/window/westleft{name = "Security Delivery";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/security/main) -"ail" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/main) -"aim" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ain" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Medbay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/security/main) -"aio" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aip" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiq" = (/obj/structure/closet/emcloset,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"air" = (/obj/structure/table,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ais" = (/obj/structure/table,/obj/item/baseball,/obj/item/baseball,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ait" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiv" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aix" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aiy" = (/obj/machinery/disposal/trapdoor{id = "Cell 5"},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"aiz" = (/obj/machinery/door_timer{id = "Cell 5";name = "Secure Cell 1";pixel_x = -32},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel{dir = 8;icon_state = "red"},/area/security/brig) -"aiA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/brig) -"aiB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2},/obj/machinery/door/window/brigdoor{dir = 1;req_access_txt = "3"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/security/warden) -"aiC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) -"aiD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Warden's Office";req_access_txt = "3"},/turf/open/floor/plasteel,/area/security/warden) -"aiE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "armorylockdown"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/warden) -"aiF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/main) -"aiG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/main) -"aiH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/main) -"aiI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/main) -"aiJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/courtroom) -"aiK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/courtroom) -"aiL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aiM" = (/obj/effect/decal/cleanable/oil,/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aiN" = (/obj/machinery/flasher{id = "Cell 5"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"aiO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{id_tag = "SecureCell1";name = "Secure Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) -"aiP" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Brig APC";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aiQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/security/brig) -"aiR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aiS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aiT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aiU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/machinery/camera{c_tag = "Brig Cell Corridor"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aiV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aiW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aiX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/main) -"aiY" = (/turf/closed/wall/shuttle{icon_state = "swallc1"},/area/shuttle/pod_3) -"aiZ" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"aja" = (/obj/structure/chair{dir = 1},/obj/machinery/flasher{id = "brigshuttleflash";pixel_x = 0;pixel_y = -25},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/pod_3) -"ajb" = (/obj/structure/chair{dir = 1},/obj/machinery/button/flasher{id = "brigshuttleflash";name = "Flash Control";pixel_x = -4;pixel_y = -38;req_access_txt = "1"},/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 0;pixel_y = -31},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ajc" = (/obj/structure/chair{dir = 1},/obj/machinery/computer/shuttle/pod{pixel_y = -30;possible_destinations = "asteroid_pod3";shuttleId = "pod3"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_3) -"ajd" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/lattice,/turf/open/space,/area/space) -"aje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"aji" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajj" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajm" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajn" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "red"},/area/security/brig) -"ajo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/brig) -"ajp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) -"ajq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"ajr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/courtroom) -"ajs" = (/obj/structure/chair,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) -"ajt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/courtroom) -"aju" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Courtroom North";dir = 2;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) -"ajv" = (/obj/structure/closet/secure_closet/courtroom,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"ajw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/courtroom) -"ajx" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice{pixel_y = 4},/obj/item/weapon/dice/d8{pixel_x = -7;pixel_y = -3},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajy" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajz" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajA" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher";name = "Flash Control";pixel_x = 0;pixel_y = -26;req_access_txt = "1"},/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"ajB" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d20,/turf/open/floor/plating,/area/maintenance/fsmaint) -"ajC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ajD" = (/obj/structure/closet/secure_closet/brig{id = "Cell 5"},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"ajE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/camera{c_tag = "Brig Secure Cell 1";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"ajF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door_timer{id = "Cell 4";name = "Cell 4";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/security/brig) -"ajG" = (/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";tag = "90Curve"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajI" = (/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";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3";name = "Cell 3";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajJ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2";name = "Cell 2";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajL" = (/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/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajM" = (/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/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/door_timer{id = "Cell 1";name = "Cell 1";pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"ajP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"ajS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"ajV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"ajW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ajZ" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/brig) -"aka" = (/turf/closed/wall/shuttle{icon_state = "swall13";dir = 2},/area/shuttle/pod_3) -"akb" = (/turf/closed/wall/shuttle{icon_state = "swall_s9";dir = 2},/area/shuttle/pod_3) -"akc" = (/obj/structure/lattice/catwalk,/obj/structure/lattice/catwalk,/turf/open/space,/area/space) -"akd" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"ake" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Courtroom";req_access_txt = "63"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akg" = (/obj/structure/table/wood,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) -"akh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/courtroom) -"aki" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/turf/open/floor/plasteel/darkblue,/area/crew_quarters/courtroom) -"akj" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d12,/turf/open/floor/plating,/area/maintenance/fsmaint) -"akk" = (/obj/structure/table/wood/poker,/obj/item/weapon/pen,/obj/item/weapon/paper_bin,/turf/open/floor/plating,/area/maintenance/fsmaint) -"akl" = (/obj/machinery/door/airlock/shuttle{name = "Prison Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"akm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"akn" = (/turf/closed/wall,/area/security/isolation) -"ako" = (/obj/machinery/door/window/brigdoor{name = "Cell 4";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) -"akp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) -"akq" = (/turf/closed/wall/shuttle{icon_state = "swall7";dir = 2},/area/shuttle/labor) -"akr" = (/obj/machinery/door/window/brigdoor{name = "Cell 3";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) -"aks" = (/turf/closed/wall/shuttle{icon_state = "swall11";dir = 2},/area/shuttle/labor) -"akt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile{color = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"aku" = (/obj/machinery/door/window/brigdoor{name = "Cell 2";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) -"akv" = (/obj/machinery/door/window/brigdoor{name = "Cell 1";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) -"akw" = (/obj/machinery/door/airlock/glass_security{name = "Evidence";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"akx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"aky" = (/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"akz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"akA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"akB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"akC" = (/obj/machinery/camera{c_tag = "Brig Cell Corridor East";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/brig) -"akD" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akE" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/courtroom) -"akF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (EAST)";icon_state = "yellowcornersiding";dir = 4},/area/crew_quarters/courtroom) -"akG" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"akH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (NORTH)";icon_state = "yellowcornersiding";dir = 1},/area/crew_quarters/courtroom) -"akI" = (/obj/structure/table/wood/poker,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/fsmaint) -"akJ" = (/obj/structure/table/wood/poker,/obj/item/weapon/dice/d10,/turf/open/floor/plating,/area/maintenance/fsmaint) -"akK" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fpmaint) -"akL" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) -"akM" = (/obj/structure/chair/comfy/brown,/obj/item/clothing/under/rank/janitor,/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/fpmaint) -"akN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate/trashcart,/obj/item/trash/cheesie,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/weapon/mop,/turf/open/floor/plating,/area/maintenance/fpmaint) -"akO" = (/obj/structure/bed,/obj/item/weapon/bedsheet/ian,/turf/open/floor/plating,/area/maintenance/fpmaint) -"akP" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"akQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{pixel_x = -25;prison_radio = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"akR" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) -"akS" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Brig Evidence Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) -"akT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"akU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"akV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"akW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"akX" = (/turf/closed/wall,/area/maintenance/fsmaint) -"akY" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"akZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"ala" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Front Desk";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/brig) -"alb" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/crew_quarters/courtroom) -"alc" = (/obj/structure/table/wood,/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"ald" = (/turf/closed/wall/r_wall,/area/security/isolation) -"ale" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/crew_quarters/courtroom) -"alf" = (/obj/item/weapon/dice/d4,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"alg" = (/obj/structure/grille,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alh" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/candy,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ali" = (/obj/item/stack/teeth/lizard{amount = 3},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alj" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alk" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/raisins,/turf/open/floor/plating,/area/maintenance/fpmaint) -"all" = (/obj/machinery/flasher{id = "Cell 4";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alm" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"aln" = (/obj/machinery/flasher{id = "Cell 3";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alo" = (/obj/machinery/flasher{id = "Cell 2";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alp" = (/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 5;id = "laborcamp";name = "perma prison shuttle";port_angle = 90;width = 9},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 5;id = "laborcamp_home";name = "fore bay 1";width = 9},/obj/machinery/door/airlock/shuttle{name = "Prison Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"alq" = (/obj/machinery/flasher{id = "Cell 1";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alr" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) -"als" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/rack,/obj/item/clothing/head/bowler,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"alt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/security/brig) -"alu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"alv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) -"alw" = (/obj/machinery/computer/security,/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/open/floor/plasteel,/area/security/brig) -"alx" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"aly" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 10;icon_state = "red"},/area/crew_quarters/courtroom) -"alz" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{dir = 6;icon_state = "green"},/area/crew_quarters/courtroom) -"alA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{cell_type = 2500;dir = 8;name = "Courtroom APC";pixel_x = -24},/turf/open/floor/plating,/area/crew_quarters/courtroom) -"alB" = (/obj/machinery/vending/snack,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alC" = (/obj/machinery/vending/coffee,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alD" = (/obj/item/trash/can,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alE" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigars,/obj/item/weapon/lighter,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/fpmaint) -"alF" = (/obj/structure/closet/secure_closet/brig{id = "Cell 4"},/obj/machinery/camera{c_tag = "Brig Cell 4";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alG" = (/obj/machinery/disposal/trapdoor{id = "Cell 4"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alH" = (/obj/machinery/disposal/trapdoor{id = "Cell 3"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alI" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"},/obj/machinery/camera{c_tag = "Brig Cell 3";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alJ" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/obj/machinery/camera{c_tag = "Brig Cell 2";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alK" = (/obj/machinery/disposal/trapdoor{id = "Cell 2"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alL" = (/obj/machinery/disposal/trapdoor{id = "Cell 1"},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alM" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/obj/machinery/camera{c_tag = "Brig Cell 1";dir = 1},/turf/open/floor/plasteel/floorgrime,/area/security/brig) -"alN" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) -"alO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plasteel,/area/security/brig) -"alP" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/brig) -"alQ" = (/obj/structure/chair/withwheels/office/dark,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) -"alR" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"alS" = (/obj/machinery/camera{c_tag = "Brig Lobby Desk";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/security/brig) -"alT" = (/obj/structure/table/reinforced,/obj/machinery/button/flasher{id = "lobbyflash";pixel_y = -4;req_access_txt = "1"},/obj/machinery/button/door{id = "lobbylockdown";name = "Lobby Lockdown";pixel_y = 4;req_access_txt = "1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"alU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"alV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"alW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/crew_quarters/courtroom) -"alX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"alY" = (/obj/structure/lattice,/obj/item/stack/cable_coil,/turf/open/space,/area/space) -"alZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Courtroom";req_access_txt = "63"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"ama" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amb" = (/obj/structure/closet{name = "locker"},/obj/item/weapon/gun/magic/staff,/obj/item/weapon/gun/magic/wand,/obj/item/weapon/sord,/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amc" = (/obj/structure/closet{name = "locker"},/obj/item/clothing/suit/armor/riot/knight,/obj/item/clothing/head/helmet/knight,/obj/item/clothing/head/wizard/fake,/obj/item/clothing/suit/wizrobe/fake,/obj/item/clothing/head/helmet/roman,/obj/item/clothing/shoes/roman,/obj/item/clothing/under/roman,/obj/item/clothing/suit/space/pirate,/obj/item/clothing/under/kilt,/obj/item/clothing/under/pirate,/obj/item/clothing/under/gladiator,/obj/item/clothing/head/helmet/gladiator,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amd" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ame" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"amf" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint) -"amg" = (/obj/structure/grille,/obj/structure/window,/turf/open/floor/plating,/area/maintenance/fpmaint) -"amh" = (/obj/effect/decal/cleanable/dirt,/obj/item/trash/sosjerky,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ami" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/security/brig) -"amj" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"amk" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/brig) -"aml" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/disposalpipe/segment,/obj/machinery/door/window/northleft{dir = 2},/obj/machinery/door/window/brigdoor{dir = 1;req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/security/brig) -"amm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"amn" = (/obj/structure/chair{dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"amo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/contraband,/turf/open/floor/plating,/area/maintenance/fpmaint) -"amq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ams" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amt" = (/obj/structure/table,/obj/effect/spawner/lootdrop/food,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amu" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/spawner/lootdrop/food,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fpmaint) -"amw" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amx" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"amy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amz" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel/bar,/area/security/brig) -"amB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) -"amC" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Brig Lobby"},/obj/item/device/radio/intercom{pixel_y = 24},/turf/open/floor/plasteel/bar,/area/security/brig) -"amD" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) -"amE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/bar,/area/security/brig) -"amF" = (/obj/machinery/flasher{id = "lobbyflash";pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/bar,/area/security/brig) -"amG" = (/obj/structure/chair{dir = 8},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel/bar,/area/security/brig) -"amH" = (/obj/machinery/flasher{id = "lobbyflash";pixel_y = 28},/turf/open/floor/plasteel/bar,/area/security/brig) -"amI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/security/main) -"amJ" = (/obj/structure/chair{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"amK" = (/obj/structure/chair{dir = 1},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"amL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/courtroom) -"amN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"amO" = (/turf/open/floor/plating,/area/maintenance/fsmaint) -"amP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amQ" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fsmaint) -"amR" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"amS" = (/obj/structure/table/wood,/obj/machinery/reagentgrinder,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"amT" = (/obj/machinery/power/apc{dir = 1;name = "Worn Out APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/table/wood,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"amU" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"amV" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"amW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amY" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) -"amZ" = (/obj/structure/chair,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ana" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anb" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"and" = (/obj/structure/table,/obj/item/weapon/stamp,/obj/item/weapon/poster/legit,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ane" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ang" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anh" = (/obj/structure/rack,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/belt/utility,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ani" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ank" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anm" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ann" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/bar,/area/security/brig) -"ano" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel/bar,/area/security/brig) -"anp" = (/obj/machinery/atmospherics/pipe/manifold,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/security/brig) -"anr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/security/brig) -"ans" = (/obj/structure/chair{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/item/weapon/poster/legit{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/bar,/area/security/brig) -"ant" = (/turf/open/floor/plasteel/bar,/area/security/brig) -"anu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anv" = (/turf/closed/wall/r_wall,/area/security/warden) -"anw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anx" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"any" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Courtroom";dir = 1;network = list("SS13","RD");pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anA" = (/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";tag = "90Curve"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"anC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"anD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"anE" = (/obj/structure/table,/obj/item/clothing/glasses/monocle,/obj/item/clothing/mask/cigarette/pipe,/turf/open/floor/plating,/area/maintenance/fpmaint) -"anF" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/pill/morphine,/obj/item/weapon/reagent_containers/pill/morphine,/turf/open/floor/plating,/area/maintenance/fpmaint) -"anG" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/security/brig) -"anI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/security/brig) -"anJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/bar,/area/security/brig) -"anK" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/bar,/area/security/brig) -"anL" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/bar,/area/security/brig) -"anM" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"anN" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"anO" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anP" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anQ" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anR" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anS" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anU" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"anV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"anY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"anZ" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aoa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aob" = (/obj/structure/falsewall,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aoc" = (/turf/closed/wall,/area/security/brig) -"aod" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/brig) -"aoe" = (/obj/machinery/camera{c_tag = "Cargo North";dir = 4;network = list("perma")},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"aof" = (/obj/machinery/door/firedoor,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera{c_tag = "Xenobiology North";dir = 8;network = list("perma")},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) -"aog" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"aoh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"aoi" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"aoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aok" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aol" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"aom" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"aon" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"aoo" = (/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aop" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aoq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aor" = (/obj/effect/decal/cleanable/vomit,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aos" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/main) -"aot" = (/turf/closed/wall,/area/crew_quarters/courtroom) -"aou" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/courtroom) -"aov" = (/obj/structure/rack,/obj/item/weapon/storage/box/matches,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aow" = (/obj/structure/table/wood,/obj/machinery/light/small{brightness = 1;color = "red";dir = 1},/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left.";name = "detectives camera";pictures_left = 30},/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aox" = (/obj/structure/table/wood,/obj/item/weapon/storage/bag/tray{pixel_y = 3},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoy" = (/obj/structure/table/wood,/obj/item/weapon/storage/photo_album,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoz" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoA" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoB" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoC" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoD" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoE" = (/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"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"aoG" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxport) -"aoH" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/briefcase,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"aoJ" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Port Engineering Hallway"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"aoK" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Northwest";dir = 5;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"aoL" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Northeast";dir = 8;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"aoM" = (/obj/structure/filingcabinet,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoN" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Southwest";dir = 4;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"aoO" = (/obj/item/weapon/crowbar,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/port_engineering) -"aoP" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoQ" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"aoR" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"aoS" = (/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoT" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Detective's Office";pixel_x = 0;pixel_y = 30},/obj/machinery/camera{c_tag = "Detective's Office"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoU" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aoV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aoW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"aoX" = (/obj/structure/rack,/obj/item/weapon/storage/backpack/satchel/sec,/obj/item/weapon/storage/backpack/security,/obj/item/weapon/storage/backpack/dufflebag/sec,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aoY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint) -"aoZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/turf/open/floor/plating,/area/maintenance/fpmaint) -"apa" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/bar,/area/security/brig) -"apb" = (/obj/machinery/vending/snack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) -"apc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel/bar,/area/security/brig) -"apd" = (/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/bar,/area/security/brig) -"ape" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/bar,/area/security/brig) -"apf" = (/turf/open/floor/plasteel,/area/security/brig) -"apg" = (/obj/structure/table,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/plasteel/bar,/area/security/brig) -"aph" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/plasteel/bar,/area/security/brig) -"api" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"apj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"apk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/secelectrical) -"apl" = (/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"apm" = (/obj/structure/closet/cardboard,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apn" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"apo" = (/obj/structure/chair{dir = 1},/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"app" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"apq" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Detective"},/turf/open/floor/carpet,/area/security/detectives_office) -"apr" = (/obj/machinery/button/door{id = "detshutters";name = "Privacy Shutters";pixel_x = 24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aps" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"apt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/brig) -"apu" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Lobby"},/turf/open/floor/plasteel/bar,/area/security/brig) -"apv" = (/obj/structure/cable,/obj/machinery/power/solar{id = "auxsolareast";name = "Port Auxiliary Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/auxstarboard) -"apw" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/outpost) -"apx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"apy" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"apz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"apA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"apB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/entry) -"apC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/security/brig) -"apD" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"apE" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"apF" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"apG" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"apH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "lobbylockdown"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Lobby"},/turf/open/floor/plasteel/bar,/area/security/brig) -"apI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"apJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom) -"apK" = (/obj/machinery/door/airlock/engineering{name = "Security Electrical Maintenance";req_access_txt = "11"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/secelectrical) -"apL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"apM" = (/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"},/turf/open/floor/plating,/area/maintenance/secelectrical) -"apN" = (/obj/machinery/power/apc{dir = 4;name = "Security Electrical Maintenance APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"apO" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"apP" = (/turf/closed/wall,/area/maintenance/secelectrical) -"apQ" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"apR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"apS" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"apT" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) -"apU" = (/obj/structure/mineral_door/wood,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"apV" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"apW" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/adamantine,/turf/open/floor/plating,/area/maintenance/fpmaint) -"apX" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/plating,/area/maintenance/fpmaint) -"apY" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"apZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqa" = (/obj/structure/chair,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "4"},/turf/open/floor/plating,/area/security/detectives_office) -"aqc" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/wirecutters,/obj/effect/decal/cleanable/blood/drip,/obj/effect/decal/cleanable/blood/drip,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqe" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqf" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/weapon/storage/fancy/cigarettes,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aqg" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"aqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/hallway/secondary/entry) -"aqi" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"aqj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqk" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"aql" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{on = 0;pixel_x = -3;pixel_y = 8},/obj/item/clothing/glasses/sunglasses,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aqm" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aqn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "detshutters"},/turf/open/floor/plating,/area/security/detectives_office) -"aqo" = (/turf/closed/wall/r_wall,/area/security/brig) -"aqp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqr" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqu" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqx" = (/obj/item/weapon/poster/legit{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqy" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqA" = (/obj/machinery/chem_dispenser,/turf/open/floor/wood,/area/maintenance/incinerator) -"aqB" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = 25;req_access_txt = "11"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/port_engineering) -"aqC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqD" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"aqE" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Northeast"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aqG" = (/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/secelectrical) -"aqH" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/rods{amount = 50},/turf/open/floor/plating,/area/maintenance/secelectrical) -"aqI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/item/clothing/glasses/sunglasses,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqJ" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aqK" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqL" = (/obj/structure/chair/wood/normal{dir = 1},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqM" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqN" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqQ" = (/obj/effect/decal/cleanable/blood/tracks{dir = 6;icon_state = "tracks";tag = "icon-tracks (SOUTHWEST)"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aqR" = (/obj/machinery/power/apc{cell_type = 2500;dir = 4;name = "Detective's Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) -"aqS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqU" = (/obj/structure/table/wood,/obj/item/clothing/mask/cigarette/cigar,/obj/item/clothing/mask/cigarette/cigar,/obj/item/weapon/storage/box/matches,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/detectives_office) -"aqW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aqX" = (/obj/structure/chair{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aqY" = (/obj/machinery/door/airlock/security{name = "Detective";req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aqZ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ara" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA";location = "Security"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"arb" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/security/brig) -"arc" = (/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/space) -"ard" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"are" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"arf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"arg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"arh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"ari" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"ark" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arl" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aro" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"arp" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/secelectrical) -"arq" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/secelectrical) -"arr" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/secelectrical) -"ars" = (/obj/structure/table,/obj/item/clothing/head/hardhat,/turf/open/floor/plating,/area/maintenance/fsmaint) -"art" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aru" = (/obj/structure/closet/cardboard,/obj/item/clothing/suit/jacket/miljacket,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) -"arv" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"arw" = (/obj/structure/table,/obj/item/stack/ducttape,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fpmaint) -"arx" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/gold,/obj/item/weapon/coin/silver,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/iron,/obj/item/weapon/coin/gold,/obj/item/stack/spacecash/c100,/obj/item/stack/spacecash/c50,/turf/open/floor/plating,/area/maintenance/fpmaint) -"ary" = (/obj/structure/table/wood,/obj/item/weapon/baseballbat/metal,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/restraints/handcuffs/cable/zipties,/turf/open/floor/plating,/area/maintenance/fpmaint) -"arz" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arB" = (/obj/machinery/camera{c_tag = "Detective's Office Backroom";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"arD" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "detshutters"},/turf/open/floor/plating,/area/security/detectives_office) -"arG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) -"arH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) -"arI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"arJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/primary/fore) -"arK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Fore Primary Hallway North";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/cola,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arN" = (/obj/structure/grille,/obj/structure/grille,/turf/open/space,/area/space) -"arO" = (/obj/docking_port/stationary/random{id = "asteroid_pod1"},/turf/open/space,/area/space) -"arP" = (/obj/docking_port/stationary/random{id = "asteroid_pod2"},/turf/open/space,/area/space) -"arQ" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/labor) -"arR" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor) -"arS" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/labor) -"arT" = (/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/engine/port_engineering) -"arU" = (/obj/machinery/camera/emp_proof{c_tag = "Singularity Southeast";dir = 9;network = list("Singularity")},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"arV" = (/obj/structure/table,/obj/item/device/assembly/flash,/obj/item/weapon/crowbar,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "Red Arrivals Shutters";name = "Items To Declare Shutters";normaldoorcontrol = 0;pixel_x = 22;pixel_y = -10},/obj/machinery/firealarm{dir = 4;pixel_x = 26;pixel_y = 6},/turf/open/floor/plasteel,/area/security/checkpoint2) -"arW" = (/obj/structure/table/reinforced,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/open/floor/plasteel,/area/bridge) -"arX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/coffee,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"arY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"arZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/fsmaint) -"asb" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"asc" = (/obj/structure/table/wood/poker,/obj/item/weapon/coin/iron,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"asd" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"ase" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/lawoffice) -"asf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lawshutters"},/turf/open/floor/plating,/area/lawoffice) -"asg" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ash" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/maintenance/fsmaint) -"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ask" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Dormitory APC";pixel_y = -24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep) -"aso" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asq" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"asr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ass" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_1) -"ast" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1) -"asu" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_1) -"asv" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_2) -"asw" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2) -"asx" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_2) -"asy" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/labor) -"asz" = (/obj/machinery/ai_status_display{pixel_x = 32;pixel_y = 0},/obj/structure/table,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"asA" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 18},/obj/item/stack/cable_coil,/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) -"asB" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/assembly/flash,/obj/item/device/assembly/flash,/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/storage/tech) -"asC" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint) -"asD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"asE" = (/obj/structure/closet/crate,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/atmos) -"asF" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plating,/area/engine/port_engineering) -"asG" = (/obj/structure/table,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/engine/engineering) -"asH" = (/turf/open/floor/plasteel,/area/security/processing) -"asI" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment{pixel_x = -3;pixel_y = -2},/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/engine/port_engineering) -"asJ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"asK" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"asL" = (/obj/structure/sign/atmosplaque{pixel_x = 0;pixel_y = -32},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/obj/item/weapon/storage/inflatable,/turf/open/floor/plasteel,/area/atmos) -"asM" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/lawoffice) -"asN" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1359;name = "Security intercom";pixel_y = 25;prison_radio = 1},/obj/item/device/paicard,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/lawoffice) -"asO" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_y = 32},/obj/item/clothing/glasses/red,/obj/item/clothing/glasses/orange,/obj/item/clothing/glasses/gglasses,/turf/open/floor/wood,/area/lawoffice) -"asP" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/wood,/area/lawoffice) -"asQ" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/obj/structure/noticeboard{pixel_y = 30},/turf/open/floor/wood,/area/lawoffice) -"asR" = (/obj/structure/closet/lawcloset,/turf/open/floor/carpet,/area/lawoffice) -"asS" = (/turf/open/floor/carpet,/area/lawoffice) -"asT" = (/obj/structure/rack,/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase,/turf/open/floor/carpet,/area/lawoffice) -"asU" = (/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) -"asV" = (/obj/machinery/button/door{id = "lawshutters";name = "Privacy Shutters";pixel_y = 24},/turf/open/floor/wood,/area/lawoffice) -"asW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"asX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"asY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep) -"asZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/sleep) -"ata" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fsmaint) -"atb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"atc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"atd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ate" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Pool APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/crew_quarters/pool) -"atf" = (/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/open/floor/plating,/area/maintenance/fpmaint2) -"atg" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ath" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/pod_1) -"ati" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -30;pixel_y = 0;possible_destinations = "asteroid_pod1";shuttleId = "pod1"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) -"atj" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/pod_2) -"atk" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -30;pixel_y = 0;possible_destinations = "asteroid_pod2";shuttleId = "pod2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) -"atl" = (/obj/item/stack/rods,/turf/open/space,/area/space) -"atm" = (/obj/effect/landmark{name = "carpspawn"},/obj/structure/lattice,/turf/open/space,/area/space) -"atn" = (/turf/open/floor/plasteel/shuttle{icon_state = "shuttlefloor4"},/area/shuttle/labor) -"ato" = (/obj/structure/closet/masks,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"atp" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"atq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"atr" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"ats" = (/obj/effect/decal/cleanable/oil,/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"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"att" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"atu" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/plating,/area/maintenance/fpmaint) -"atv" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/wood,/area/lawoffice) -"atw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"atx" = (/obj/structure/closet/wardrobe/robotics_black,/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/item/weapon/storage/firstaid/surgery,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"aty" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7;pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/storage/firstaid/surgery{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"atz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"atA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/lawoffice) -"atB" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/lawoffice) -"atC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/carpet,/area/lawoffice) -"atD" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/carpet,/area/lawoffice) -"atE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) -"atF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"atG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/lawoffice) -"atH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/lawoffice) -"atI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "42"},/turf/open/floor/wood,/area/lawoffice) -"atJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/carpet,/area/lawoffice) -"atK" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fsmaint) -"atL" = (/turf/closed/wall,/area/maintenance/commiespy) -"atM" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"atN" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -24},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) -"atO" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -24},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) -"atP" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport) -"atQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/lawoffice) -"atR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/chair{dir = 8},/turf/open/floor/wood,/area/lawoffice) -"atS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/item/weapon/pen/red,/turf/open/floor/carpet,/area/lawoffice) -"atT" = (/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"atU" = (/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"atV" = (/obj/machinery/camera{c_tag = "Pool North"},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"atW" = (/obj/structure/closet,/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"atX" = (/obj/machinery/power/apc{dir = 4;name = "Law Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/lawoffice) -"atY" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen/blue,/obj/item/weapon/pen/red,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/wood,/area/lawoffice) -"atZ" = (/obj/structure/table/wood,/obj/item/weapon/hand_labeler,/obj/item/device/taperecorder,/turf/open/floor/wood,/area/lawoffice) -"aua" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/wood,/area/lawoffice) -"aub" = (/obj/structure/closet/crate,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/turf/open/floor/wood,/area/lawoffice) -"auc" = (/obj/structure/closet,/obj/item/clothing/suit/jacket,/obj/item/clothing/suit/jacket/miljacket,/obj/item/clothing/under/griffin,/obj/item/clothing/head/griffin,/obj/item/clothing/shoes/griffin,/obj/item/clothing/suit/toggle/owlwings/griffinwings,/obj/item/clothing/under/owl,/obj/item/clothing/mask/gas/owl_mask,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/owl,/obj/item/clothing/mask/pig,/obj/item/clothing/head/chicken,/obj/item/clothing/suit/justice,/obj/item/clothing/suit/justice,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/shoes/jackboots,/turf/open/floor/wood,/area/lawoffice) -"aud" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/carpet,/area/lawoffice) -"aue" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/obj/item/weapon/pen/blue,/obj/machinery/camera{c_tag = "Law Office";dir = 1},/turf/open/floor/carpet,/area/lawoffice) -"auf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/computer/med_data,/turf/open/floor/carpet,/area/lawoffice) -"aug" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/lawoffice) -"auh" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/lawoffice) -"aui" = (/obj/machinery/light,/turf/open/floor/wood,/area/lawoffice) -"auj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (WEST)";icon_state = "yellowcornersiding";dir = 8},/area/crew_quarters/pool) -"auk" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aul" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aum" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/pool) -"aun" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"auo" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel{tag = "icon-yellowsiding (WEST)";icon_state = "yellowsiding";dir = 8},/area/crew_quarters/pool) -"aup" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auq" = (/obj/machinery/gateway{dir = 1},/turf/open/floor/engine,/area/gateway) -"aur" = (/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) -"aus" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1351;name = "Science intercom";pixel_y = 25;prison_radio = 1},/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1347;name = "Supply intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1355;name = "Medical intercom";pixel_x = -27;pixel_y = 25;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"aut" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1353;name = "Command intercom";pixel_y = 25;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"auu" = (/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1359;name = "Security intercom";pixel_y = 25;prison_radio = 1},/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"auv" = (/obj/machinery/power/apc{dir = 1;name = "Stronk Russian APC";pixel_y = 24},/obj/structure/rack,/obj/item/clothing/head/ushanka,/obj/item/clothing/shoes/jackboots,/obj/item/clothing/under/soviet,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"auw" = (/turf/closed/wall,/area/hallway/secondary/entry) -"aux" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_1) -"auy" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1";name = "escape pod 1"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_1) -"auz" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_1) -"auA" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_2) -"auB" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2";name = "escape pod 2"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_2) -"auC" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_2) -"auD" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/arrival) -"auE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival) -"auF" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/arrival) -"auG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarport) -"auH" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"auI" = (/turf/closed/wall,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"auJ" = (/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (NORTH)";icon_state = "yellowcornersiding";dir = 1},/area/crew_quarters/pool) -"auK" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"auL" = (/obj/machinery/power/apc{dir = 4;name = "Garden APC";pixel_x = 27;pixel_y = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) -"auM" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway) -"auN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"auO" = (/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auQ" = (/turf/closed/wall/r_wall,/area/security/processing) -"auR" = (/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance";req_access_txt = list(27,12)},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hallway/secondary/entry) -"auT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hallway/secondary/entry) -"auU" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"auV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/brig) -"auW" = (/obj/machinery/gateway,/turf/open/floor/engine,/area/gateway) -"auX" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway South";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) -"auY" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"auZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/obj/item/stack/medical/ointment,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"ava" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/o2,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avb" = (/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avc" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avd" = (/turf/closed/wall,/area/lawoffice) -"ave" = (/turf/closed/wall,/area/maintenance/fsmaint2) -"avf" = (/obj/structure/falsewall,/turf/open/floor/plating/airless,/area/maintenance/fsmaint2) -"avg" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1447;name = "AI Private intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/machinery/light/small{dir = 8},/obj/item/weapon/storage/photo_album,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avh" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avi" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/bed,/obj/item/weapon/bedsheet/syndie,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avl" = (/obj/machinery/door/airlock/external{name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"avm" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"avn" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"avo" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"avp" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"avq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"avr" = (/obj/machinery/vending/boozeomat{req_access_txt = "0"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"avs" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"avt" = (/obj/structure/table/wood,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"avu" = (/obj/machinery/door/window/southright{name = "Gateway Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/gateway) -"avv" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avw" = (/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"avx" = (/obj/machinery/computer/slot_machine{balance = 15;money = 500},/obj/item/weapon/coin/diamond,/obj/item/weapon/coin/iron,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"avy" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"avz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avD" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"avG" = (/obj/machinery/power/apc{dir = 2;name = "Chapel Office APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/office) -"avH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/sleeper{dir = 4;icon_state = "sleeper-open"},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avL" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/obj/machinery/camera{c_tag = "Arrivals Infirmary";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/hallway/secondary/entry) -"avM" = (/obj/structure/table/glass,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"avN" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/obj/item/weapon/reagent_containers/food/snacks/popcorn,/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"avO" = (/obj/machinery/camera{c_tag = "Garden";dir = 8;network = list("SS13")},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"avP" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2;pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"avQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/storage/primary) -"avR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"avS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) -"avT" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"avU" = (/obj/machinery/door/airlock/external{name = "Airlock";req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avV" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 1;freqlock = 1;frequency = 1357;name = "Engineering intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avW" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/clothing/tie/stethoscope,/obj/item/device/camera,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer{desc = "These possibly cant be even letters, blyat!";name = "Russian computer"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"avY" = (/turf/open/floor/plating,/area/maintenance/fsmaint2) -"avZ" = (/obj/structure/falsewall,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"awa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"awb" = (/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"awc" = (/obj/item/trash/candy,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"awd" = (/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"awe" = (/obj/structure/rack,/obj/item/weapon/gun/projectile/shotgun/toy,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"awf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Arrivals Escape Pod 1";dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) -"awg" = (/turf/open/floor/plating,/area/hallway/secondary/entry) -"awh" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry) -"awi" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Arrivals Escape Pod 2";dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) -"awj" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/arrival) -"awk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"awl" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awm" = (/turf/open/floor/wood{tag = "icon-wood-broken";icon_state = "wood-broken"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awn" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awp" = (/obj/effect/decal/cleanable/flour,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awq" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"awr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aws" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/primary) -"awt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"awu" = (/obj/structure/closet/crate,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"awv" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aww" = (/obj/effect/landmark/start{name = "Mime"},/turf/open/floor/plasteel/black,/area/mime) -"awx" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";layer = 3},/obj/structure/showcase/mimestatue,/turf/open/floor/plasteel/white,/area/mime) -"awy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/turf/open/floor/plasteel/white,/area/mime) -"awz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office) -"awA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"awB" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/hallway/secondary/entry) -"awC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Infirmary"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/secondary/entry) -"awD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{name = "Infirmary"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/secondary/entry) -"awE" = (/obj/structure/bodycontainer/crematorium,/obj/effect/landmark{name = "revenantspawn"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"awF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint2) -"awG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"awH" = (/obj/machinery/door/poddoor/shutters{id = "gateway_shutters";name = "Gateway Entry"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"awI" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium";dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"awJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) -"awK" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"awL" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"awM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"awN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"awO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"awP" = (/obj/machinery/door/window/northright{base_state = "right";dir = 8;icon_state = "right";name = "Library Desk Door";req_access_txt = "37"},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/library) -"awQ" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"awR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/tools) -"awS" = (/obj/structure/table/wood,/obj/item/device/camera_film,/obj/item/device/camera_film,/turf/open/floor/wood,/area/library) -"awT" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light,/obj/item/device/multitool,/turf/open/floor/plasteel,/area/storage/tools) -"awU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"awV" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/structure/plasticflaps{opacity = 0},/turf/open/floor/plating,/area/quartermaster/office) -"awW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard) -"awX" = (/obj/structure/dresser,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"awY" = (/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fsmaint2) -"awZ" = (/obj/item/weapon/garrote,/obj/effect/decal/cleanable/blood,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"axa" = (/obj/machinery/vending/sustenance,/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = -27;pixel_y = 0;prison_radio = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"axb" = (/obj/machinery/computer/crew,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"axc" = (/obj/item/weapon/gun/projectile/automatic/toy/pistol,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"axd" = (/obj/item/ammo_casing/caseless/foam_dart,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"axe" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/gun/projectile/shotgun/toy/crossbow,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"axf" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry) -"axg" = (/obj/item/weapon/poster/legit,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"axh" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"axi" = (/obj/item/weapon/poster/legit,/turf/closed/wall,/area/hallway/secondary/entry) -"axj" = (/turf/closed/wall/shuttle{blocks_air = 6;dir = 1;icon_state = "swall13"},/area/shuttle/arrival) -"axk" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/arrival) -"axl" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"axm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"axn" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) -"axo" = (/obj/machinery/power/solar_control{id = "auxsolareast";name = "Fore Port Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"axp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"axq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"axr" = (/turf/closed/wall,/area/maintenance/fpmaint2) -"axs" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axt" = (/obj/structure/table/wood,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axu" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/rag,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axw" = (/obj/structure/table/wood,/obj/item/clothing/mask/bandana/red,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axx" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"axy" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/library) -"axz" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axA" = (/obj/item/weapon/cigbutt/cigarbutt,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"axB" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) -"axC" = (/obj/item/weapon/storage/box,/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel{icon_state = "arrival";dir = 1},/area/quartermaster/office) -"axD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axE" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"axF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"axG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"axJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axK" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) -"axO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"axP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) -"axQ" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse";name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/quartermaster/storage) -"axR" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/storage) -"axS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"axT" = (/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/medical) -"axU" = (/obj/machinery/camera{c_tag = "Robotics Lab";dir = 2;network = list("SS13","RD")},/obj/machinery/button/door{dir = 2;id = "robotics";name = "Shutters Control Button";pixel_x = 6;pixel_y = 24;req_access_txt = "29"},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteredcorner"},/area/assembly/robotics) -"axV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"axW" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) -"axX" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axY" = (/obj/machinery/camera{c_tag = "Medbay Morgue";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"axZ" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency) -"aya" = (/turf/open/floor/wood,/area/lawoffice) -"ayb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency) -"ayc" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency) -"ayd" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency) -"aye" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/lawoffice) -"ayf" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"ayg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"ayh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"ayi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"ayj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"ayk" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/turf/open/floor/wood,/area/maintenance/fsmaint2) -"ayl" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aym" = (/turf/open/floor/wood,/area/maintenance/fsmaint2) -"ayn" = (/obj/machinery/vending/sovietsoda,/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"ayo" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"ayp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"ayq" = (/obj/machinery/computer/security,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"ayr" = (/obj/item/ammo_casing/caseless/foam_dart,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fsmaint2) -"ays" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/ammo_box/foambox,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"ayt" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"ayu" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) -"ayv" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayw" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayx" = (/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"ayB" = (/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/hallway/secondary/entry) -"ayC" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"ayD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"ayE" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) -"ayF" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/hallway/secondary/entry) -"ayG" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"ayH" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"ayI" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"ayJ" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayK" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"ayL" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"ayM" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"ayN" = (/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"ayO" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/assembly/chargebay) -"ayP" = (/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayQ" = (/obj/structure/chair{dir = 1},/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/obj/item/trash/plate,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"ayR" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/labor) -"ayS" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating/airless,/area/shuttle/labor) -"ayT" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/labor) -"ayU" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ayV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab";req_access_txt = "29"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ayW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ayX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"ayY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/office) -"ayZ" = (/obj/machinery/power/apc{dir = 8;name = "Medbay Security APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/medical) -"aza" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Delivery Office";req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"azb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral) -"azc" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/medical) -"azd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"aze" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/assembly/robotics) -"azf" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/assembly/robotics) -"azg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"azh" = (/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/ai_monitored/nuke_storage) -"azi" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"azj" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fsmaint) -"azk" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/ai_monitored/nuke_storage) -"azl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"azm" = (/turf/open/floor/wood{tag = "icon-wood-broken";icon_state = "wood-broken"},/area/maintenance/fsmaint2) -"azn" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/fsmaint2) -"azo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/maintenance/commiespy) -"azp" = (/obj/item/ammo_box/foambox,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"azq" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fsmaint2) -"azr" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/maintenance/fsmaint2) -"azs" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"azt" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"azu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"azv" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"azw" = (/obj/machinery/door/airlock/external{id_tag = null;name = "Port Docking Bay 2";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/hallway/secondary/entry) -"azx" = (/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/hallway/secondary/entry) -"azy" = (/obj/machinery/door/airlock/shuttle{name = "Arrivals Shuttle Airlock"},/obj/docking_port/stationary{dwidth = 5;height = 7;id = "arrival_home";name = "port bay 1";width = 15},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"azz" = (/obj/structure/chair{dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"azA" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"azB" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Fore Port Solar APC";pixel_x = -25;pixel_y = 3},/obj/machinery/camera{c_tag = "Fore Port Solar Control";dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"azC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"azD" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarport) -"azE" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{tag = "icon-manifold (WEST)";icon_state = "manifold";dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"azF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"azG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/mineral_door/wood,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azH" = (/obj/item/trash/sosjerky,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azL" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/supply) -"azM" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"azN" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azO" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"azP" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"azQ" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) -"azR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/fpmaint2) -"azS" = (/obj/machinery/light_switch{pixel_x = 8;pixel_y = 28},/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 28;req_access_txt = "47"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) -"azT" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/light{dir = 4},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/supply) -"azU" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIW";location = "QM"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"azV" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"azW" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH";location = "AIW"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"azX" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"azY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply) -"azZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAa" = (/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) -"aAb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAc" = (/mob/living/simple_animal/bot/cleanbot{desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere.";name = "\improper Dumpy";on = 0},/turf/open/floor/plasteel,/area/janitor) -"aAd" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAe" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAf" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aAi" = (/obj/machinery/door/airlock/maintenance{name = "Maint Bar Access";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/aft) -"aAj" = (/turf/open/floor/plasteel{dir = 9;icon_state = "caution"},/area/engine/break_room) -"aAk" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/engine/break_room) -"aAl" = (/turf/open/floor/plasteel{dir = 1;icon_state = "caution"},/area/engine/break_room) -"aAm" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -6;req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/engineering) -"aAn" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aAo" = (/turf/closed/wall,/area/security/checkpoint/engineering) -"aAp" = (/obj/machinery/camera{c_tag = "Engineering Checkpoint";dir = 8;network = list("perma")},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/engineering) -"aAq" = (/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"aAr" = (/obj/machinery/the_singularitygen,/turf/open/floor/plating/airless,/area/space) -"aAs" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/space) -"aAt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aAu" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAv" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAw" = (/obj/structure/mirror{pixel_x = -28},/obj/structure/table/wood,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aAx" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aAy" = (/obj/structure/closet/wardrobe/yellow,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aAz" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/closed/wall,/area/maintenance/fsmaint2) -"aAA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aAB" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aAC" = (/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/fsmaint2) -"aAD" = (/obj/structure/table,/obj/item/weapon/gun/projectile/automatic/toy/pistol,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aAE" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aAF" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) -"aAG" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"aAH" = (/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"aAI" = (/obj/machinery/camera{c_tag = "Arrivals Escape Pod Hallway";dir = 1},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"aAJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"aAK" = (/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"aAL" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aAM" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aAN" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"aAO" = (/obj/machinery/door/airlock/engineering{icon_state = "door_closed";locked = 0;name = "Fore Port Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport) -"aAP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarport) -"aAQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAR" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aAS" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aAT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aAU" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/under/rank/bartender,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aAW" = (/turf/closed/wall,/area/maintenance/fpmaint) -"aAX" = (/obj/machinery/poolcontroller,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) -"aBl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/fore) -"aBz" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) -"aBA" = (/obj/machinery/power/solar_control{id = "auxsolareast";name = "Fore Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aBB" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aBC" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/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 = 32},/obj/item/device/multitool,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aBD" = (/obj/structure/mirror{pixel_x = -28},/obj/structure/table/wood,/obj/structure/table/wood,/obj/item/clothing/mask/cigarette/pipe,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aBE" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aBF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/maintenance/fsmaint2) -"aBG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aBH" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aBI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aBJ" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/hallway/secondary/entry) -"aBK" = (/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aBL" = (/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aBM" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/hallway/secondary/entry) -"aBN" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/hallway/secondary/entry) -"aBO" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aBP" = (/obj/machinery/camera{c_tag = "Fore Port Solar Access"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBR" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHEAST)";icon_state = "intact";dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBS" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aBU" = (/obj/machinery/vending/snack,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aBV" = (/mob/living/simple_animal/mouse/white,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aBW" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aBX" = (/obj/structure/table/wood/poker,/obj/item/stack/tile/wood{amount = 25},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aBY" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aBZ" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCa" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCb" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCc" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/monkey_recycler,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aCr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/lawoffice) -"aCt" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aCu" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aCv" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aCw" = (/turf/open/floor/wood{tag = "icon-wood-broken5";icon_state = "wood-broken5"},/area/maintenance/fsmaint2) -"aCx" = (/obj/machinery/light/small,/turf/open/floor/wood,/area/maintenance/fsmaint2) -"aCy" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/fsmaint2) -"aCz" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCA" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCB" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCD" = (/obj/structure/closet,/obj/item/ammo_box/foambox,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aCE" = (/obj/structure/lattice,/obj/structure/lattice/catwalk,/turf/open/space,/area/space) -"aCF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aCG" = (/obj/structure/closet/wardrobe/blue,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aCH" = (/obj/effect/landmark{name = "Observer-Start"},/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aCI" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aCJ" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aCK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCL" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCQ" = (/obj/structure/bed,/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCR" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCS" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCT" = (/obj/structure/table/wood/poker,/obj/machinery/light/small,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCV" = (/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aCX" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aCY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDc" = (/turf/closed/wall,/area/security/detectives_office) -"aDd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) -"aDe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aDf" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aDh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) -"aDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDt" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDu" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aDv" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Fore Starboard Solar APC";pixel_x = -25;pixel_y = 3},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aDw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aDx" = (/obj/machinery/camera{c_tag = "Fore Starboard Solars";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aDy" = (/turf/closed/wall/r_wall,/area/maintenance/fsmaint2) -"aDz" = (/obj/structure/barricade/wooden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/maintenance/fsmaint2) -"aDB" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/closed/wall,/area/maintenance/fsmaint2) -"aDC" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDD" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aDE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/camera{c_tag = "Arrivals Shuttle West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aDF" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aDG" = (/obj/structure/closet/wardrobe/pink,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aDH" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aDI" = (/obj/machinery/camera{c_tag = "Arrivals Shuttle East";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aDJ" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aDK" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aDL" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aDM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aDN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aDO" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aDP" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTH)";icon_state = "intact";dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aDQ" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aDR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aDS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDT" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDU" = (/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDV" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aDW" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aEd" = (/obj/structure/table/wood,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aEg" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aEk" = (/obj/machinery/door/airlock/glass_security{name = "Detective";req_access_txt = "4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aEl" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) -"aEm" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aEn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint) -"aEz" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aEA" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aEB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/pool) -"aEC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/pool) -"aED" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aEE" = (/obj/structure/grille,/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aEF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aEG" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/engineering{icon_state = "door_closed";locked = 0;name = "Fore Starboard Solar Access";req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard) -"aEI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/auxsolarstarboard) -"aEJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEK" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEL" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEM" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEN" = (/obj/structure/table,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEO" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEP" = (/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/coin/gold,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aEQ" = (/obj/machinery/computer/slot_machine{balance = 15;money = 500},/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aER" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aES" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/hallway/secondary/entry) -"aET" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) -"aEU" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aEV" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/plasteel/shuttle,/area/shuttle/arrival) -"aEW" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) -"aEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) -"aEY" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aEZ" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aFa" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFb" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFc" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (SOUTHWEST)";icon_state = "intact";dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFd" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFe" = (/obj/machinery/power/apc{dir = 1;name = "Arrivals North Maintenance APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFf" = (/obj/machinery/monkey_recycler,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/obj/item/weapon/reagent_containers/food/snacks/monkeycube,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aFg" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aFh" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aFs" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/bodybags,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aFt" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aFA" = (/turf/open/floor/carpet,/area/security/detectives_office) -"aFD" = (/turf/closed/wall,/area/crew_quarters/sleep) -"aFE" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint) -"aFF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/sleep) -"aFG" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep) -"aFH" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep) -"aFI" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aFJ" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aFK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/crew_quarters/sleep) -"aFL" = (/turf/closed/wall,/area/crew_quarters/pool) -"aFM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/pool) -"aFN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/pool) -"aFP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/pool) -"aFQ" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"aFR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aFS" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFT" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8;name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFU" = (/obj/machinery/power/apc{dir = 1;name = "Bar Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFW" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Fore Starboard Solar Access"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFX" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFY" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aFZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aGa" = (/obj/item/weapon/coin/gold,/obj/item/weapon/coin/iron,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aGb" = (/obj/structure/closet,/obj/item/weapon/coin/iron,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aGc" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aGd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aGe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aGf" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHEAST)";icon_state = "intact";dir = 5},/turf/closed/wall,/area/maintenance/fpmaint2) -"aGg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"aGh" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGj" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGk" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/fpmaint2) -"aGm" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGn" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGo" = (/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/wood,/area/maintenance/fpmaint2{icon_state = "storage";name = "Speakeasy"}) -"aGq" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aGr" = (/obj/machinery/atmospherics/pipe/simple{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) -"aGs" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"aGt" = (/obj/machinery/atmospherics/pipe/manifold{dir = 1},/turf/closed/wall,/area/maintenance/fpmaint2) -"aGu" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/closed/wall,/area/maintenance/fpmaint) -"aGw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aGz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aGA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"aGH" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aGI" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aGJ" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aGK" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm4";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aGL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep) -"aGM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 9},/area/crew_quarters/sleep) -"aGN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 5},/area/crew_quarters/sleep) -"aGO" = (/turf/open/floor/wood,/area/crew_quarters/sleep) -"aGP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aGQ" = (/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aGR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aGS" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/pool) -"aGT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"aGU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"aGV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"aGW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/crew_quarters/pool) -"aHb" = (/obj/structure/closet,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/crew_quarters/pool) -"aHc" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHe" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHf" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHg" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHh" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHi" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aHj" = (/turf/closed/wall,/area/maintenance/electrical) -"aHk" = (/turf/closed/wall,/area/space) -"aHl" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/space) -"aHm" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fpmaint2) -"aHr" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHs" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHt" = (/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aHu" = (/obj/machinery/atmospherics/pipe/simple,/turf/closed/wall,/area/maintenance/fpmaint2) -"aHv" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/fpmaint2) -"aHw" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/device/flashlight{luminosity = 0;on = 1;pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aHx" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/device/flashlight{luminosity = 0;on = 1;pixel_x = 1;pixel_y = 5},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHy" = (/obj/structure/chair/withwheels/wheelchair{dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aHz" = (/obj/structure/closet/crate,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHA" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHB" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHC" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aHE" = (/obj/structure/closet/secure_closet/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aHN" = (/obj/machinery/power/apc{dir = 8;name = "Fore Primary Hallway APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) -"aHO" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aHP" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aHQ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aHR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aHS" = (/obj/machinery/door/airlock{id_tag = "Dorm4";name = "Dorm 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aHT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) -"aHV" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aHW" = (/obj/structure/bed,/obj/item/weapon/bedsheet/red,/obj/machinery/button/door{id = "Dorm5";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/toy/carpplushie,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aHX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "Dorm6";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 8;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/structure/bed,/obj/item/weapon/bedsheet/red,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aHY" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/hypospray/medipen,/obj/item/weapon/reagent_containers/hypospray/medipen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) -"aHZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding";icon_state = "yellowcornersiding"},/area/crew_quarters/pool) -"aIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) -"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-yellowsiding";icon_state = "yellowsiding"},/area/crew_quarters/pool) -"aIe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) -"aIf" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/crew_quarters/pool) -"aIg" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIh" = (/obj/structure/table,/obj/item/weapon/shard,/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/shard{icon_state = "small"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIi" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIj" = (/obj/machinery/button/door{id = "maint3";name = "Blast Door Control C";pixel_x = 0;pixel_y = 24;req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIk" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aIl" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aIm" = (/obj/item/stack/rods{amount = 50},/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10;layer = 2.9},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aIn" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/maintenance/electrical) -"aIo" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"aIp" = (/turf/open/floor/plasteel/recharge_floor,/area/maintenance/electrical) -"aIq" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/maintenance/electrical) -"aIr" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi';icon_state = "dark"},/area/shuttle/arrival) -"aIs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) -"aIu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"aIv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) -"aIx" = (/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/space) -"aIy" = (/turf/open/floor/plating/airless,/area/space) -"aIz" = (/obj/item/weapon/paper/crumpled,/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/space) -"aIA" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIB" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIC" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aID" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIE" = (/obj/machinery/atmospherics/pipe/simple,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aIF" = (/obj/machinery/button/door{id = "hobodorm1";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/mob/living/simple_animal/mouse/white,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aIG" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aIH" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint) -"aII" = (/obj/machinery/button/door{id = "hobodorm2";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel{tag = "icon-damaged2";icon_state = "damaged2"},/area/maintenance/fpmaint) -"aIJ" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aIK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aIN" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway";dir = 4;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) -"aIP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"aIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint) -"aIS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aIT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) -"aIU" = (/obj/machinery/door/airlock{id_tag = "Dorm5";name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aIV" = (/obj/machinery/door/airlock{id_tag = "Dorm6";name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep) -"aIW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) -"aIX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) -"aIY" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/turf/simulated/pool/water,/area/crew_quarters/pool) -"aIZ" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/machinery/poolfilter{pixel_y = 11},/turf/simulated/pool/water,/area/crew_quarters/pool) -"aJb" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) -"aJc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aJd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aJe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Holodeck"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aJf" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aJg" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJh" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJi" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJm" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aJn" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aJo" = (/turf/open/floor/plating,/area/maintenance/electrical) -"aJp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aJq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aJr" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aJs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"aJt" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/arrival) -"aJu" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plasteel/shuttle{icon = 'icons/turf/floors.dmi';icon_state = "dark"},/area/shuttle/arrival) -"aJv" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/arrival) -"aJx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"aJy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/fpmaint2) -"aJA" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJB" = (/obj/structure/frame/computer,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJC" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/obj/item/weapon/shard{icon_state = "medium"},/obj/item/weapon/circuitboard/computer/operating,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJD" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/chair,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJF" = (/obj/item/weapon/airlock_painter,/obj/structure/lattice,/obj/structure/closet,/turf/open/space,/area/space) -"aJG" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJI" = (/obj/machinery/door/airlock/maintenance{id_tag = "hobodorm1";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aJJ" = (/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/fpmaint2) -"aJK" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/item/weapon/bedsheet/brown,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/fpmaint2) -"aJL" = (/obj/structure/bed,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/item/weapon/bedsheet/orange,/turf/open/floor/plasteel,/area/maintenance/fpmaint) -"aJM" = (/turf/open/floor/plasteel{tag = "icon-damaged4";icon_state = "damaged4"},/area/maintenance/fpmaint) -"aJN" = (/obj/machinery/door/airlock/maintenance{id_tag = "hobodorm2";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJO" = (/obj/machinery/door/airlock/maintenance{name = "Chemical Storage";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aJV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aJX" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aJY" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/crew_quarters/sleep) -"aKa" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKb" = (/obj/machinery/requests_console{department = "Crew Quarters";pixel_y = 30},/obj/machinery/camera{c_tag = "Dormitory North"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKe" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKf" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKg" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/crew_quarters/sleep) -"aKh" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/sleep) -"aKi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) -"aKj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) -"aKk" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/toy/poolnoodle/blue,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aKl" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aKm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aKn" = (/obj/machinery/computer/holodeck,/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aKo" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aKp" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKq" = (/obj/machinery/door/poddoor/preopen{id = "maint3"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aKr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall,/area/maintenance/electrical) -"aKs" = (/obj/machinery/power/apc{dir = 1;name = "Electrical Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"aKt" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/electrical) -"aKu" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/device/multitool,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aKv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aKw" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aKx" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKy" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/weapon/surgical_drapes,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKz" = (/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/space) -"aKA" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKB" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKC" = (/obj/machinery/light/small{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fpmaint2) -"aKE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint2) -"aKF" = (/obj/machinery/atmospherics/pipe/manifold,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple,/turf/closed/wall,/area/maintenance/fpmaint2) -"aKK" = (/obj/machinery/atmospherics/pipe/manifold,/turf/closed/wall,/area/maintenance/fpmaint2) -"aKL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fpmaint) -"aKM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/closed/wall,/area/maintenance/fpmaint) -"aKN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aKP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aKQ" = (/obj/machinery/power/apc{dir = 1;name = "EVA Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aKR" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aKS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aKT" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aKU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aKV" = (/turf/closed/wall,/area/ai_monitored/storage/eva) -"aKW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aKX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aKY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aKZ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aLa" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"aLb" = (/obj/machinery/door/airlock{id_tag = "Dorm3";name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLc" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLe" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLf" = (/obj/structure/table/wood,/obj/item/device/instrument/guitar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLg" = (/obj/structure/table/wood,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLh" = (/obj/structure/table/wood,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLi" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aLl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) -"aLm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) -"aLn" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/structure/pool/ladder,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aLo" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/machinery/drain,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aLp" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/structure/pool/Lboard,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aLr" = (/obj/structure/table,/obj/item/weapon/paper{desc = "";info = "Brusies sustained in the holodeck can be healed simply by sleeping.";name = "Holodeck Disclaimer"},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aLs" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLt" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLu" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLv" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLw" = (/obj/machinery/button/door{id = "maint2";name = "Blast Door Control B";pixel_x = -28;pixel_y = 4;req_access_txt = "0"},/obj/machinery/button/door{id = "maint1";name = "Blast Door Control A";pixel_x = -28;pixel_y = -6;req_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLx" = (/obj/structure/janitorialcart,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLy" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLz" = (/obj/structure/table/glass,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLA" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aLC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Electrical Maintenance";req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aLD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aLE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aLF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aLG" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plating,/area/maintenance/electrical) -"aLH" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/electrical) -"aLI" = (/obj/structure/table,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/maintenance/electrical) -"aLJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/secondary/entry) -"aLK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/hallway/secondary/entry) -"aLL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLM" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Shuttle South-West";network = list("SS13","Prison")},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLP" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLQ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1;name = "Arrivals North APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLS" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Shuttle South-East";network = list("SS13","Prison")},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/secondary/entry) -"aLU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{tag = "icon-warningcorner (EAST)";icon_state = "warningcorner";dir = 4},/area/hallway/secondary/entry) -"aLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Arrivals North";dir = 8;network = list("SS13")},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/hallway/secondary/entry) -"aLW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aLY" = (/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aLZ" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMa" = (/obj/structure/table/glass,/obj/item/weapon/storage/bag/trash,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/maintenance/fpmaint2) -"aMc" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMf" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aMn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aMq" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aMr" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aMs" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor";name = "motion-sensitive security camera"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/hand_labeler,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/device/flashlight,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMu" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/item/clothing/head/welding,/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/head/welding,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMv" = (/obj/machinery/power/apc{dir = 1;name = "EVA Storage APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMw" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/device/radio/off,/obj/item/device/assembly/timer,/obj/structure/table,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMx" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMy" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/stock_parts/cell/high,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMz" = (/obj/item/device/aicard,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMA" = (/obj/machinery/light{dir = 1},/obj/structure/rack,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMC" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aMD" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) -"aME" = (/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) -"aMF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMG" = (/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMH" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMI" = (/obj/structure/table/wood,/obj/item/device/instrument/violin,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMJ" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMK" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/item/clothing/mask/balaclava{pixel_x = -8;pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aML" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fitness"},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aMO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/pool) -"aMP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) -"aMQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aMR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aMS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/pool) -"aMT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aMU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aMV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aMW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aMX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) -"aMY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/electrical) -"aMZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aNa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/electrical) -"aNb" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/electrical) -"aNc" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) -"aNd" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"aNe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aNi" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) -"aNj" = (/obj/structure/closet/wardrobe/white,/obj/item/clothing/shoes/jackboots,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNk" = (/obj/structure/table/glass,/obj/item/weapon/hemostat,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNl" = (/obj/structure/table/glass,/obj/item/weapon/restraints/handcuffs/cable/zipties,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNm" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNp" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNq" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNr" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aNx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/maintenance/fpmaint2) -"aNy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/closed/wall,/area/maintenance/fpmaint) -"aNz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aNA" = (/turf/closed/wall/r_wall,/area/gateway) -"aNC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aND" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aNE" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aNF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aNG" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/device/multitool,/obj/item/device/assembly/signaler,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aNH" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aNI" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aNJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) -"aNK" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm2";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aNL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aNM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aNN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aNO" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/sleep) -"aNP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (EAST)";icon_state = "yellowsiding";dir = 4},/area/crew_quarters/pool) -"aNQ" = (/turf/open/floor/plasteel{tag = "icon-greenbluefull (NORTH)";icon_state = "greenbluefull";dir = 1},/obj/item/clothing/under/shorts/red,/turf/simulated/pool/water,/area/crew_quarters/pool) -"aNR" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) -"aOc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aOd" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aOe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aOf" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aOg" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/electrical) -"aOh" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aOi" = (/obj/machinery/power/terminal,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aOj" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aOk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"aOl" = (/turf/open/floor/plasteel{dir = 2;icon_state = "greencorner"},/area/hallway/secondary/entry) -"aOm" = (/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"aOn" = (/turf/open/floor/plasteel{dir = 8;icon_state = "greencorner"},/area/hallway/secondary/entry) -"aOo" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aOp" = (/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"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aOq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/entry) -"aOr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"aOs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/hallway/secondary/entry) -"aOt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"aOu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/hallway/secondary/entry) -"aOv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/hallway/secondary/entry) -"aOw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall,/area/maintenance/fpmaint2) -"aOx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOy" = (/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aOz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aOA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/maintenance/fpmaint2) -"aOC" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOD" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOE" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOH" = (/obj/structure/bed,/obj/item/weapon/bedsheet/patriot,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aOI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aOJ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/engine,/area/gateway) -"aOK" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/engine,/area/gateway) -"aOM" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/engine,/area/gateway) -"aON" = (/turf/open/floor/engine,/area/gateway) -"aOO" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint) -"aOP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance";req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOS" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage";req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/rack,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aOY" = (/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) -"aOZ" = (/obj/machinery/door/airlock{id_tag = "Dorm2";name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aPa" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 2},/area/crew_quarters/sleep) -"aPb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/closet/boxinggloves,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) -"aPe" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/sleep) -"aPf" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/toilet) -"aPg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "neutral"},/area/crew_quarters/toilet) -"aPh" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/toilet) -"aPi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel{tag = "icon-yellowcornersiding (EAST)";icon_state = "yellowcornersiding";dir = 4},/area/crew_quarters/pool) -"aPj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) -"aPk" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) -"aPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{tag = "icon-yellowsiding (NORTH)";icon_state = "yellowsiding";dir = 1},/area/crew_quarters/pool) -"aPp" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/crew_quarters/pool) -"aPr" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPs" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPt" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPu" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPv" = (/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPx" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aPy" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/electrical) -"aPz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall,/area/maintenance/electrical) -"aPA" = (/obj/machinery/computer/monitor{name = "backup power monitoring console"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/electrical) -"aPB" = (/obj/machinery/power/smes{charge = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/electrical) -"aPC" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/space) -"aPD" = (/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/entry) -"aPE" = (/obj/structure/table,/turf/open/floor/plasteel,/area/security/checkpoint2) -"aPF" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/security/checkpoint2) -"aPG" = (/turf/open/floor/plasteel,/area/security/checkpoint2) -"aPH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aPI" = (/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint2) -"aPJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/hallway/secondary/entry) -"aPK" = (/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"aPL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPQ" = (/obj/machinery/hydroponics/soil,/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPR" = (/obj/machinery/light{dir = 1},/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPT" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPU" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPV" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aPW" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPX" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aPY" = (/obj/machinery/power/apc{dir = 2;name = "Primary Tool Storage APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/primary) -"aPZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aQa" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aQb" = (/obj/structure/bed/dogbed,/obj/item/weapon/reagent_containers/food/drinks/flask/det{desc = "A Space Veteran's only friend.";name = "space veteran's flask"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aQc" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/engine,/area/gateway) -"aQe" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/engine,/area/gateway) -"aQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/power/apc{dir = 8;name = "Gateway APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/gateway) -"aQg" = (/obj/machinery/camera{c_tag = "EVA Maintenance";dir = 8;network = list("SS13")},/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aQh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aQi" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aQj" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aQo" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aQp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/rack,/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aQs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) -"aQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aQv" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) -"aQw" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aQx" = (/turf/closed/wall,/area/crew_quarters/toilet) -"aQy" = (/obj/machinery/door/airlock{name = "Unisex Showers";req_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aQz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/crew_quarters/pool) -"aQA" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/structure/table/glass,/obj/item/clothing/under/shorts/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQB" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQD" = (/obj/machinery/camera{c_tag = "Pool South";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQH" = (/obj/structure/table/glass,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/crew_quarters/pool) -"aQI" = (/obj/structure/table/glass,/obj/item/stack/medical/bruise_pack,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/crew_quarters/pool) -"aQJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/pool) -"aQL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aQM" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aQN" = (/obj/item/clothing/under/rank/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aQP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aQR" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aQS" = (/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/security/checkpoint2) -"aQT" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/security/checkpoint2) -"aQU" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/security/checkpoint2) -"aQV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) -"aQW" = (/obj/machinery/light,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint2) -"aQX" = (/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint2) -"aQY" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aRd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aRe" = (/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aRf" = (/obj/item/seeds/apple,/obj/item/seeds/banana,/obj/item/seeds/cocoapod,/obj/item/seeds/grape,/obj/item/seeds/orange,/obj/item/seeds/sugarcane,/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/structure/table/glass,/obj/item/seeds/tower,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aRg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aRh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aRi" = (/obj/machinery/door/airlock/maintenance{name = "Garden Maintenance";req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aRj" = (/turf/closed/wall,/area/storage/primary) -"aRk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/primary) -"aRn" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"aRo" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/engine,/area/gateway) -"aRq" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/engine,/area/gateway) -"aRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aRs" = (/obj/machinery/requests_console{department = "EVA";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aRt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aRu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aRv" = (/obj/item/weapon/pen{desc = "Writes upside down!";name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aRw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aRx" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aRy" = (/obj/machinery/camera{c_tag = "EVA East";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aRz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aRA" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm1";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep) -"aRB" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aRD" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aRE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aRF" = (/obj/machinery/shower{dir = 8},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aRG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRI" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aRJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/pool) -"aRK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/pool) -"aRM" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRO" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/window,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/fsmaint2) -"aRP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/fsmaint2) -"aRQ" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRR" = (/obj/machinery/door/poddoor/preopen{id = "maint1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/fsmaint2) -"aRT" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRY" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aRZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"aSa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba,/obj/item/weapon/lighter,/obj/machinery/light/small{dir = 1},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 10;pixel_y = 10},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aSb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{pixel_x = -8;pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{pixel_x = 8;pixel_y = 9;pixel_z = 0},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aSc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/grille,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair{dir = 8},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 0;pixel_y = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aSf" = (/turf/closed/wall,/area/chapel/main) -"aSg" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aSh" = (/obj/machinery/door/window{dir = 8;name = "Mass Driver";req_access_txt = "22"},/obj/machinery/mass_driver{dir = 4;id = "chapelgun"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/chapel/main) -"aSi" = (/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 = 32},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/chapel/main) -"aSj" = (/obj/machinery/door/poddoor{id = "chapelgun";name = "Chapel Launcher Door"},/turf/open/floor/plating,/area/chapel/main) -"aSm" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aSn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint2) -"aSo" = (/turf/closed/wall,/area/security/checkpoint2) -"aSp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/security/checkpoint2) -"aSq" = (/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aSz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aSA" = (/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aSB" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aSC" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/primary) -"aSD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aSE" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/storage/primary) -"aSF" = (/obj/structure/table,/obj/item/device/t_scanner,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/storage/primary) -"aSG" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -8;pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage";departmentType = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/storage/primary) -"aSH" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aSI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel,/area/storage/primary) -"aSJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) -"aSK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aSL" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/storage/primary) -"aSM" = (/turf/closed/wall,/area/mime) -"aSO" = (/turf/closed/wall,/area/clown) -"aSP" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/gateway) -"aSR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/window/reinforced,/turf/open/floor/engine,/area/gateway) -"aSS" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aST" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aSU" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aSV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aSW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aSX" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage";dir = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aSY" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aSZ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aTa" = (/obj/machinery/door/airlock/glass_command{name = "Command EVA";req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aTb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aTc" = (/obj/machinery/door/airlock/command{name = "Command EVA";req_access = null;req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aTd" = (/obj/machinery/door/airlock{id_tag = "Dorm1";name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep) -"aTe" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) -"aTf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) -"aTg" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTj" = (/obj/machinery/door/airlock{name = "Unisex Showers";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTl" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aTm" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aTn" = (/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aTo" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aTp" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aTq" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance";req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre) -"aTr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j1s";sortType = 18},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTu" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTw" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/power/apc{dir = 2;name = "Chapel APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/chapel/main) -"aTF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"aTH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 3},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)";req_access_txt = "22"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main) -"aTL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aTM" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aTN" = (/obj/machinery/button/massdriver{id = "chapelgun";name = "Chapel Mass Driver";pixel_x = 25},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aTO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/main) -"aTP" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/entry) -"aTQ" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) -"aTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "greencorner"},/area/hallway/secondary/entry) -"aTS" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aTT" = (/obj/structure/table/reinforced,/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "Green Arrivals";name = "Nothing To Declare Conveyor"},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aTU" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) -"aTV" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) -"aTW" = (/obj/machinery/computer/secure_data,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint2) -"aTX" = (/obj/structure/table/reinforced,/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "Red Arrivals";name = "Items To Declare Conveyor"},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aTY" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aTZ" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/secondary/entry) -"aUa" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) -"aUb" = (/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/entry) -"aUj" = (/obj/structure/table/glass,/obj/effect/spawner/lootdrop/plants{lootcount = 10;name = "10plant_spawner"},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aUk" = (/obj/machinery/door/airlock{name = "Garden";req_access_txt = "0"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aUl" = (/turf/open/floor/plasteel,/area/storage/primary) -"aUm" = (/obj/machinery/camera{c_tag = "Mime Office Camera";dir = 4},/obj/structure/closet/secure_closet/mime,/turf/open/floor/plasteel/black,/area/mime) -"aUn" = (/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel/white,/area/mime) -"aUo" = (/obj/item/weapon/bedsheet/mime,/obj/structure/bed,/turf/open/floor/plasteel/black,/area/mime) -"aUp" = (/obj/machinery/camera{c_tag = "Clown Office Camera";dir = 4},/obj/structure/closet/secure_closet/clown,/turf/open/floor/plasteel/green,/area/clown) -"aUq" = (/obj/machinery/light{dir = 1;icon_state = "tube1"},/turf/open/floor/plasteel/red,/area/clown) -"aUr" = (/obj/item/weapon/bedsheet/clown,/obj/structure/bed,/turf/open/floor/plasteel/green,/area/clown) -"aUs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aUt" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/camera{c_tag = "Gateway";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/gateway) -"aUu" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/gateway) -"aUw" = (/obj/structure/table/glass,/obj/item/weapon/paper/pamphlet,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/gateway) -"aUx" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aUy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "EVA Storage";req_access_txt = "18"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aUz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aUA" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aUB" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aUC" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aUD" = (/obj/machinery/camera{c_tag = "Dormitory South";c_tag_order = 999;dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aUE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) -"aUF" = (/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aUH" = (/obj/machinery/power/apc{dir = 4;name = "Dormitory Bathrooms APC";pixel_x = 26;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aUI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/toilet) -"aUJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/toilet) -"aUK" = (/obj/structure/dresser,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aUM" = (/turf/closed/wall,/area/crew_quarters/theatre) -"aUN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUS" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/space,/area/space) -"aUU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUY" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aUZ" = (/turf/closed/wall,/area/library) -"aVa" = (/turf/closed/wall,/area/chapel/office) -"aVc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aVd" = (/obj/structure/falsewall,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aVe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aVg" = (/obj/machinery/camera{c_tag = "Chapel North";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aVh" = (/obj/machinery/door/window/eastleft{dir = 8;name = "Coffin Storage";req_access_txt = "22"},/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aVi" = (/obj/structure/closet/coffin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aVj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main) -"aVk" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Arrivals No-Declare Lane";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/hallway/secondary/entry) -"aVl" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"aVm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "greencorner"},/area/hallway/secondary/entry) -"aVn" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "Green Arrivals Shutters";name = "Items To Declare Shutters";normaldoorcontrol = 0;pixel_x = -22;pixel_y = -10},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aVo" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aVq" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/entry) -"aVr" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"aVs" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/camera{c_tag = "Arrivals Declare Lane";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/entry) -"aVQ" = (/obj/machinery/power/apc{dir = 8;name = "Mime Office APC";pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/mime) -"aVR" = (/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/red,/area/clown) -"aVS" = (/obj/effect/landmark/start{name = "Clown"},/turf/open/floor/plasteel/green,/area/clown) -"aVT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/red,/area/clown) -"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aVV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/gateway) -"aVW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/gateway) -"aVX" = (/turf/open/floor/plasteel,/area/gateway) -"aVY" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/gateway) -"aVZ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aWa" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aWb" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aWc" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aWd" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/storage/eva) -"aWe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/fore) -"aWf" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/fore) -"aWg" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aWh" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aWi" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aWj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aWk" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)";icon_state = "toilet00";dir = 8},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aWl" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/random,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aWm" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aWn" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) -"aWp" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWr" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 19},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWC" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWD" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space) -"aWJ" = (/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j2s";sortType = 17},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWK" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aWL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/library) -"aWM" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) -"aWN" = (/obj/structure/table/wood,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/library) -"aWO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/stack/packageWrap,/turf/open/floor/wood,/area/library) -"aWP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/library) -"aWR" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance";req_access_txt = "27"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/chapel/office) -"aWS" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aWT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Chapel";departmentType = 2;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aWU" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Chapel Office";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aWV" = (/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aWW" = (/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aWX" = (/obj/machinery/door/airlock/glass{name = "Chapel Office";req_access_txt = "22"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"aWY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aWZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"aXa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"aXb" = (/turf/open/floor/carpet,/area/chapel/main) -"aXc" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aXd" = (/obj/structure/table/glass,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) -"aXe" = (/obj/structure/table/glass,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"aXf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"aXg" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/open/space,/area/space) -"aXh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aXi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aXj" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aXl" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aXm" = (/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"aXn" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2;pixel_y = 1},/obj/structure/table/glass,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aXo" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/primary) -"aXp" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/storage/primary) -"aXq" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/storage/primary) -"aXr" = (/obj/structure/window,/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/showcase/mimestatue,/turf/open/floor/plasteel/black,/area/mime) -"aXs" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/white,/area/mime) -"aXt" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/frame/computer{anchored = 1;desc = "What, you can't see the screen?";name = "Mime's Computer"},/turf/open/floor/plasteel/black,/area/mime) -"aXu" = (/obj/structure/reagent_dispensers/honk_cooler,/turf/open/floor/plasteel/green,/area/clown) -"aXv" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/red,/area/clown) -"aXw" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window,/obj/item/weapon/bikehorn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/green,/area/clown) -"aXx" = (/obj/machinery/power/apc{dir = 8;name = "Clown Office APC";pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/clown) -"aXy" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/gateway) -"aXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aXA" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel,/area/gateway) -"aXB" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"aXC" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/crowbar,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aXD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aXE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/eva) -"aXF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aXG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"aXH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) -"aXJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/crew_quarters/sleep) -"aXK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/crew_quarters/sleep) -"aXL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aXM" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aXN" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aXO" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aXP" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aXQ" = (/obj/structure/closet,/obj/item/weapon/dnainjector/smilemut,/turf/open/floor/plasteel{tag = "icon-redbluefull";icon_state = "redbluefull"},/area/crew_quarters/theatre) -"aXR" = (/obj/machinery/power/apc{dir = 8;name = "Theatre APC";pixel_x = -25},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/crew_quarters/theatre) -"aXS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aXT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aXU" = (/obj/machinery/power/apc{dir = 2;name = "Bar APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) -"aXV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/bar) -"aXW" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance";req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/bar) -"aXX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/closed/wall,/area/crew_quarters/bar) -"aXY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/bar) -"aXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) -"aYa" = (/obj/machinery/power/apc{dir = 2;name = "Kitchen APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aYb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYe" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 21},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYj" = (/obj/machinery/power/apc{dir = 2;name = "Hydroponics APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hydroponics) -"aYk" = (/turf/closed/wall,/area/hydroponics) -"aYl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/hydroponics) -"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aYn" = (/obj/structure/filingcabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library) -"aYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/library) -"aYp" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/camera{c_tag = "Library North";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aYq" = (/obj/structure/chair/withwheels/office/dark,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aYr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/library) -"aYs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/library) -"aYu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"aYv" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aYw" = (/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aYx" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aYy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"aYz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/office) -"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main) -"aYB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"aYC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/closet/coffin,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aYD" = (/obj/structure/window/reinforced,/obj/structure/closet/coffin,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"aYE" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"aYF" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aYG" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hallway/secondary/entry) -"aYH" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) -"aYI" = (/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aYJ" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Arrivals Checkpoint";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aYL" = (/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint2) -"aYM" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) -"aYN" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/entry) -"aYO" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYQ" = (/obj/machinery/camera{c_tag = "Arrivals Lounge";dir = 2},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYR" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYS" = (/obj/structure/sign/map/left{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYT" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aYU" = (/obj/structure/table/glass,/obj/item/weapon/hatchet,/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/plant_analyzer,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aYV" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table/glass,/obj/item/device/plant_analyzer,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light_switch{pixel_x = -6;pixel_y = -25},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"}) -"aYW" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/analyzer,/turf/open/floor/plasteel,/area/storage/primary) -"aYX" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/primary) -"aYY" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plasteel,/area/storage/primary) -"aYZ" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/storage/primary) -"aZa" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/primary) -"aZb" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/storage/primary) -"aZc" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/storage/primary) -"aZd" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/storage/primary) -"aZe" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/mime) -"aZf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/mime) -"aZg" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/mime) -"aZh" = (/obj/structure/table,/obj/item/device/flashlight/lamp/bananalamp,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/red,/area/clown) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/green,/area/clown) -"aZj" = (/obj/structure/statue/bananium/clown,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red,/area/clown) -"aZk" = (/obj/machinery/button/door{dir = 2;id = "gateway_shutters";name = "Gateway Access Button";pixel_x = 0;pixel_y = -27;req_access_txt = "47"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"aZl" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aZm" = (/obj/machinery/camera{c_tag = "EVA South";dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aZn" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/ai_monitored/storage/eva) -"aZo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"aZp" = (/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/hallway/primary/central) -"aZq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Central Hallway North";dir = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"aZr" = (/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/hallway/primary/central) -"aZs" = (/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZt" = (/obj/structure/sign/directions/security{dir = 1;icon_state = "direction_sec";pixel_x = 32;pixel_y = 40;tag = "icon-direction_sec (NORTH)"},/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = 32;pixel_y = 32;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = 24;tag = "icon-direction_evac (EAST)"},/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/hallway/primary/central) -"aZu" = (/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"aZv" = (/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/hallway/primary/central) -"aZw" = (/turf/closed/wall,/area/hallway/primary/central) -"aZx" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) -"aZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/primary/central) -"aZz" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/primary/central) -"aZA" = (/obj/machinery/camera{c_tag = "Dormitory Toilets";dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aZB" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aZC" = (/obj/machinery/recharge_station,/obj/machinery/light/small,/obj/machinery/door/window/westright,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/toilet) -"aZD" = (/obj/machinery/door/airlock{name = "Theatre Backstage";req_access_txt = "46"},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aZE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fsmaint2) -"aZF" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance";req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"aZG" = (/turf/closed/wall,/area/crew_quarters/bar) -"aZH" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/gun/projectile/revolver/doublebarrel,/obj/structure/table/wood,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/cable_coil,/turf/open/floor/wood,/area/crew_quarters/bar) -"aZI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aZJ" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aZK" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Bar Delivery";req_access_txt = "25"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/bar) -"aZL" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"aZM" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance";req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aZN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/kitchen) -"aZO" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/crew_quarters/kitchen) -"aZP" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/hydroponics) -"aZQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance";req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hydroponics) -"aZR" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"aZS" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"aZT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/library) -"aZU" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/wood,/area/library) -"aZV" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) -"aZW" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"aZX" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/wood,/area/library) -"aZY" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/library) -"baa" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bab" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp{pixel_y = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bac" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bad" = (/obj/structure/table/wood,/obj/item/weapon/nullrod,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bae" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"baf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bag" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/chapel/office) -"bah" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bai" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main) -"baj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bal" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bam" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"ban" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bao" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bap" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"baq" = (/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_y = -29},/obj/structure/closet/secure_closet/security,/turf/open/floor/plasteel,/area/security/checkpoint2) -"bar" = (/obj/machinery/power/apc{dir = 2;name = "Security Checkpoint APC";pixel_x = 1;pixel_y = -24},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable,/turf/open/floor/plasteel,/area/security/checkpoint2) -"bas" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"}) -"bat" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Garden"},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"}) -"bau" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) -"bav" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"baw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"bax" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary) -"bay" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/mime) -"baz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/freezer{desc = "...";name = "Mime Office";req_access_txt = "46"},/turf/open/floor/plasteel/black,/area/mime) -"baA" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/mime) -"baB" = (/obj/machinery/door/airlock/maintenance,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2) -"baC" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/clown) -"baD" = (/obj/machinery/door/airlock/clown{name = "Clown Office";req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red,/area/clown) -"baE" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/clown) -"baF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"baG" = (/obj/machinery/door/airlock/research{name = "Gateway Access";req_access_txt = "47"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/gateway) -"baH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/gateway) -"baJ" = (/obj/machinery/door/poddoor/shutters{id = "gateway_shutters";name = "Gateway Entry"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/gateway) -"baK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint) -"baL" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) -"baM" = (/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) -"baN" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) -"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/primary/central) -"baP" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/structure/table/wood,/obj/item/weapon/lipstick,/turf/open/floor/carpet,/area/crew_quarters/theatre) -"baQ" = (/turf/open/floor/carpet,/area/crew_quarters/theatre) -"baR" = (/obj/machinery/airalarm{dir = 2;pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"baS" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Theatre Stage";dir = 2},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"baT" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"baU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"baV" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"baW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/bar) -"baX" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"baY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"baZ" = (/obj/machinery/camera{c_tag = "Bar Storage"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bba" = (/turf/open/floor/wood,/area/crew_quarters/bar) -"bbb" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bbd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bbe" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Kitchen Delivery";req_access_txt = "28"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/kitchen) -"bbf" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery";req_access_txt = "35"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/hydroponics) -"bbg" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbi" = (/obj/structure/closet/wardrobe/botanist,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbj" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbk" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbl" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbm" = (/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0;pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8;pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13;pixel_y = 5},/obj/item/weapon/watertank,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bbn" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/wood,/area/library) -"bbo" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/library) -"bbp" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/library) -"bbr" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bbs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Crematorium";req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bbt" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bbu" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bbv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "grimy"},/area/chapel/office) -"bbw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bby" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Chapel East";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bbD" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"bbE" = (/obj/structure/window/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bbF" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bbG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bbH" = (/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bbI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bbJ" = (/obj/machinery/door/firedoor,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbL" = (/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbM" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{name = "Port Hall APC";dir = 1;pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbQ" = (/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bbZ" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bca" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) -"bcb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/port) -"bcd" = (/obj/machinery/door/firedoor,/obj/structure/sign/securearea{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bce" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcg" = (/obj/machinery/camera{c_tag = "Central Hallway North-West";dir = 2},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bch" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bci" = (/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/hallway/primary/central) -"bcj" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bck" = (/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central) -"bcl" = (/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central) -"bcm" = (/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central) -"bcn" = (/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central) -"bco" = (/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central) -"bcp" = (/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central) -"bcq" = (/turf/open/floor/plasteel{desc = "";icon_state = "L13";name = "floor"},/area/hallway/primary/central) -"bcr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/hallway/primary/central) -"bct" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 1},/area/hallway/primary/central) -"bcu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 4},/area/hallway/primary/central) -"bcv" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutralcorner";dir = 1},/area/hallway/primary/central) -"bcw" = (/obj/machinery/camera{c_tag = "Central Hallway North-East";dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcx" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcy" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcz" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcA" = (/obj/structure/piano,/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bcB" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bcC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bcD" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bcE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"bcG" = (/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bcH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"bcI" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) -"bcJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/obj/machinery/icecream_vat,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bcK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bcL" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bcM" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/wirecutters,/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcN" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = -31},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcS" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcT" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bcU" = (/turf/open/floor/wood,/area/library) -"bcV" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/turf/open/floor/wood,/area/library) -"bcW" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"bcY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/office) -"bcZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/main) -"bda" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdb" = (/obj/machinery/light,/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdc" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdd" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bde" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdf" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bdg" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"bdh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdj" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/conveyor{dir = 1;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bdk" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Arrivals Checkpoint South"},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bdl" = (/obj/structure/table,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bdm" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/conveyor{dir = 1;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bdn" = (/obj/machinery/computer/slot_machine,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"bdo" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bdp" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bdq" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bdr" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bds" = (/turf/open/floor/goonplaque,/area/hallway/secondary/entry) -"bdt" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHW";location = "Lockers"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdu" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdv" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdy" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdz" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdA" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdF" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bdG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdK" = (/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central) -"bdL" = (/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central) -"bdM" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lockers";location = "EVA"},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central) -"bdN" = (/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central) -"bdO" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Security";location = "EVA2"},/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central) -"bdP" = (/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central) -"bdQ" = (/turf/open/floor/plasteel{desc = "";icon_state = "L14"},/area/hallway/primary/central) -"bdR" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=EVA2";location = "Dorm"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bdU" = (/obj/machinery/door/window{dir = 4;name = "Theatre Stage";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bdV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"bdW" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bdX" = (/obj/machinery/computer/slot_machine,/obj/machinery/light/small{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"bdY" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bdZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"bea" = (/obj/structure/closet/gmcloset,/turf/open/floor/wood,/area/crew_quarters/bar) -"beb" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/crew_quarters/bar) -"bec" = (/obj/machinery/vending/coffee,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bed" = (/obj/machinery/light/small{dir = 8},/obj/structure/kitchenspike,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bee" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bef" = (/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"beg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/hydroponics) -"bei" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics) -"bej" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics";req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "hydrofloor"},/area/hydroponics) -"bek" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/open/floor/wood,/area/library) -"bel" = (/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/library) -"bem" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/library) -"beo" = (/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bep" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"beq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall,/area/chapel/main) -"ber" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bes" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bet" = (/turf/closed/wall,/area/hallway/secondary/exit) -"beu" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bev" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bew" = (/obj/machinery/conveyor{dir = 6;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bex" = (/obj/machinery/conveyor{dir = 4;id = "Green Arrivals";name = "Nothing to Declare Conveyor";operating = 0;verted = -1},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bey" = (/obj/machinery/conveyor{dir = 4;id = "Red Arrivals";name = "Items to Declare Conveyor";operating = 0},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel,/area/security/checkpoint2) -"bez" = (/obj/machinery/conveyor{dir = 10;id = "Red Arrivals";name = "Items To Declare Conveyor";operating = 0;verted = -1},/turf/open/floor/plasteel,/area/security/checkpoint2) -"beA" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"beB" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"beC" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) -"beD" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"beE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beG" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beH" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beI" = (/obj/machinery/camera{c_tag = "Port Hallway 3";dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beJ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beK" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port) -"beM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Hallway";dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"beP" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"beS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"beV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"beY" = (/obj/structure/sign/directions/security{dir = 4;icon_state = "direction_sec";pixel_x = 32;pixel_y = -24;tag = "icon-direction_sec (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = -32;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32;pixel_y = -40},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"beZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfc" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=QM";location = "CHW"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfd" = (/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bfe" = (/obj/machinery/light,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bff" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/machinery/door/firedoor,/obj/machinery/light,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bfg" = (/obj/structure/window/reinforced,/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bfh" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre) -"bfi" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/wood,/area/crew_quarters/bar) -"bfj" = (/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar) -"bfk" = (/obj/structure/closet/chefcloset,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bfl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bfm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bfn" = (/obj/machinery/gibber,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bfo" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bfp" = (/obj/machinery/requests_console{department = "Hydroponics";departmentType = 2;pixel_x = 0;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bfq" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bfr" = (/obj/machinery/hydroponics/constructable,/obj/machinery/camera{c_tag = "Hydroponics North";dir = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bfs" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bft" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bfu" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/open/floor/wood,/area/library) -"bfv" = (/turf/open/floor/carpet,/area/library) -"bfw" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/library) -"bfx" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/turf/open/floor/wood,/area/library) -"bfy" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/wood,/area/library) -"bfA" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bfB" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bfC" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bfD" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bfE" = (/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) -"bfF" = (/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"bfG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) -"bfH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"bfI" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Escape Arm Holding Area";dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/hallway/secondary/exit) -"bfJ" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) -"bfK" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) -"bfL" = (/obj/machinery/light{dir = 1},/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) -"bfM" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/exit) -"bfN" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/hallway/secondary/exit) -"bfO" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bfP" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"bfQ" = (/turf/open/floor/plasteel{dir = 4;icon_state = "greencorner"},/area/hallway/secondary/entry) -"bfR" = (/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hallway/secondary/entry) -"bfS" = (/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/hallway/secondary/entry) -"bfT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/entry) -"bfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/snack,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"bfV" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bfW" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bfX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bfZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/hallway/secondary/entry) -"bga" = (/turf/closed/wall,/area/maintenance/port) -"bgb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"bgc" = (/turf/closed/wall,/area/crew_quarters/locker) -"bgd" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bge" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bgf" = (/turf/closed/wall,/area/storage/art) -"bgg" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/art) -"bgh" = (/obj/machinery/door/airlock/glass{name = "Art Storage"},/turf/open/floor/plasteel,/area/storage/art) -"bgi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/art) -"bgj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bgk" = (/turf/closed/wall,/area/storage/emergency2) -"bgl" = (/obj/structure/table,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bgm" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/port) -"bgn" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bgo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port) -"bgq" = (/turf/closed/wall,/area/storage/tools) -"bgr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgs" = (/turf/closed/wall/r_wall,/area/bridge) -"bgt" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"bgu" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bgv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/status_display{density = 0;layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bgw" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bgx" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/status_display{density = 0;layer = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bgy" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bgz" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 3},/turf/open/floor/wood,/area/crew_quarters/bar) -"bgA" = (/obj/structure/chair/wood/normal,/turf/open/floor/wood,/area/crew_quarters/bar) -"bgB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) -"bgC" = (/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"bgD" = (/obj/machinery/disposal/bin,/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";icon_state = "monkey_painting";name = "Mr. Deempisi portrait";pixel_x = 4;pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bgE" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5;pixel_y = 29},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bgF" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bgG" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/wood,/area/crew_quarters/bar) -"bgH" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bgI" = (/obj/machinery/door/airlock{name = "Kitchen cold room";req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "showroomfloor"},/area/crew_quarters/kitchen) -"bgJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "green"},/area/hydroponics) -"bgK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hydroponics) -"bgL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/hydroponics) -"bgM" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/library) -"bgN" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/library) -"bgO" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bgP" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bgQ" = (/obj/structure/cult/tome,/obj/item/clothing/under/suit_jacket/red,/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bgR" = (/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"bgS" = (/obj/structure/table/wood,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bgT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"bgU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bgV" = (/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/hallway/secondary/exit) -"bgW" = (/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) -"bgY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/exit) -"bgZ" = (/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/exit) -"bha" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bhb" = (/obj/machinery/door/airlock/external{name = "Security Escape Airlock";req_access_txt = "2"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bhc" = (/turf/open/floor/plating,/area/hallway/secondary/exit) -"bhd" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhj" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"bhk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port) -"bhl" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhm" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhn" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bho" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhp" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhr" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhs" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bht" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhu" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhv" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bhw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/storage/art) -"bhx" = (/turf/open/floor/plasteel,/area/storage/art) -"bhy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/storage/art) -"bhz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bhA" = (/obj/machinery/door/airlock{name = "Port Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency2) -"bhB" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools) -"bhD" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhE" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/storage/box/PDAs{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/box/ids,/turf/open/floor/plasteel,/area/bridge) -"bhF" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/bridge) -"bhG" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{icon_state = "yellow"},/area/bridge) -"bhH" = (/obj/machinery/computer/monitor{name = "bridge power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/bridge) -"bhI" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/bridge) -"bhJ" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bhK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/bridge) -"bhL" = (/obj/machinery/computer/card,/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/bridge) -"bhM" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel{dir = 2;icon_state = "green"},/area/bridge) -"bhN" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{dir = 6;icon_state = "green"},/area/bridge) -"bhO" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/wrench,/obj/item/device/assembly/timer,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/bridge) -"bhP" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhQ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) -"bhR" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/crew_quarters/bar) -"bhS" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bhT" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"bhU" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/wood,/area/crew_quarters/bar) -"bhV" = (/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"bhW" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bhX" = (/obj/machinery/vending/boozeomat,/obj/machinery/button/door{id = "bar";name = "Bar Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bhY" = (/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bhZ" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bia" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bib" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bic" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/camera{c_tag = "Kitchen";dir = 2},/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bid" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bie" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bif" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"big" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) -"bih" = (/turf/open/floor/plasteel,/area/hydroponics) -"bii" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) -"bij" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 4;name = "Library APC";pixel_x = 24},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library) -"bik" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/open/floor/wood,/area/library) -"bil" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/turf/open/floor/wood,/area/library) -"bim" = (/obj/machinery/camera{c_tag = "Library South";dir = 8;network = list("SS13")},/turf/open/floor/wood,/area/library) -"bin" = (/obj/machinery/door/morgue{name = "Private Study";req_access_txt = "37"},/turf/open/floor/plasteel{icon_state = "cult";dir = 2},/area/library) -"bio" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bip" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"biq" = (/obj/machinery/door/airlock/glass_security{name = "Holding Area";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bir" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bis" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bit" = (/obj/item/weapon/twohanded/required/kirbyplants,/turf/open/floor/plasteel{dir = 10;icon_state = "green"},/area/hallway/secondary/entry) -"biu" = (/obj/machinery/vending/cola,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"biv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"biw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"bix" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"biy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/green/side,/area/hallway/secondary/entry) -"biz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hallway/secondary/entry) -"biA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/secondary/entry) -"biC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"biD" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"biE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"biG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "red"},/area/hallway/secondary/entry) -"biH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/camera{c_tag = "Arrivals Hallway Central";dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/hallway/secondary/entry) -"biI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biK" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biL" = (/obj/machinery/firealarm{dir = 2;pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biM" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biN" = (/obj/machinery/camera{c_tag = "Arrivals Hallway";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biO" = (/turf/open/floor/plating,/area/maintenance/port) -"biP" = (/obj/structure/closet/wardrobe/mixed,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"biQ" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"biR" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/storage/art) -"biS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency2) -"biT" = (/turf/open/floor/plating,/area/storage/emergency2) -"biU" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency2) -"biV" = (/obj/machinery/power/apc{dir = 1;name = "Auxiliary Tool Storage APC";pixel_y = 24},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/storage/tools) -"biW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/storage/tools) -"biY" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage";dir = 2},/turf/open/floor/plasteel,/area/storage/tools) -"biZ" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/storage/tools) -"bja" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tools) -"bjc" = (/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/bridge) -"bjd" = (/obj/structure/chair{dir = 1;name = "Engineering Station"},/turf/open/floor/plasteel,/area/bridge) -"bje" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/bridge) -"bjf" = (/obj/structure/table/reinforced,/obj/item/device/aicard,/obj/item/device/multitool,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/bridge) -"bjg" = (/obj/structure/chair{dir = 1;name = "Command Station"},/obj/machinery/button/door{id = "bridge blast";name = "Bridge Blast Door Control";pixel_x = 28;pixel_y = -2;req_access_txt = "19"},/obj/machinery/keycard_auth{pixel_x = 29;pixel_y = 8},/turf/open/floor/plasteel,/area/bridge) -"bjh" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/bridge) -"bji" = (/turf/open/floor/plasteel{dir = 1;icon_state = "greencorner"},/area/bridge) -"bjj" = (/obj/structure/chair{dir = 1;name = "Crew Station"},/turf/open/floor/plasteel,/area/bridge) -"bjk" = (/turf/open/floor/plasteel{dir = 4;icon_state = "greencorner"},/area/bridge) -"bjl" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/bridge) -"bjm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Diner"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bjn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"bjo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"bjp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"bjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/wood,/area/crew_quarters/bar) -"bjr" = (/obj/item/stack/spacecash/c10{amount = 10},/obj/item/stack/spacecash/c100{amount = 5},/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"bjs" = (/mob/living/carbon/monkey{name = "Pun Pun";real_name = "Pun Pun";unique_name = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"bjt" = (/obj/machinery/door/airlock/glass{name = "Kitchen";req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bju" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjv" = (/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjw" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bjA" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"bjB" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bjC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) -"bjD" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics) -"bjE" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics) -"bjF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) -"bjH" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/library) -"bjI" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement{pixel_y = 0},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/wood,/area/library) -"bjJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bjK" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"bjL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bjM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"bjN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"bjO" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bjP" = (/obj/machinery/vending/cola,/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{dir = 9;icon_state = "escape"},/area/hallway/secondary/exit) -"bjQ" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/exit) -"bjR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bjS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bjT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bjU" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/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 = 32},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bjV" = (/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bjW" = (/obj/docking_port/stationary{dir = 4;dwidth = 9;height = 11;id = "emergency_home";name = "emergency evac bay";width = 22},/turf/open/space,/area/space) -"bjX" = (/turf/closed/wall/r_wall,/area/rec_room) -"bjY" = (/turf/closed/wall,/area/rec_room) -"bjZ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/rec_room) -"bka" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/rec_room) -"bkb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkc" = (/turf/closed/wall,/area/security/vacantoffice) -"bkd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/vacantoffice) -"bke" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice) -"bkf" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) -"bkg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/port) -"bkh" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bki" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkj" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkk" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkl" = (/obj/structure/table,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkm" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkn" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bko" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkp" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Locker Room East";dir = 8;network = list("SS13")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bkq" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel,/area/storage/art) -"bkr" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/storage/art) -"bks" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/table,/obj/item/device/camera_film,/obj/item/device/camera,/turf/open/floor/plasteel,/area/storage/art) -"bkt" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/storage/emergency2) -"bku" = (/obj/machinery/light/small,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/storage/emergency2) -"bkv" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency2) -"bkw" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plating,/area/storage/emergency2) -"bkx" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel,/area/storage/tools) -"bky" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel,/area/storage/tools) -"bkA" = (/turf/open/floor/plasteel,/area/storage/tools) -"bkB" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plasteel,/area/storage/tools) -"bkC" = (/turf/closed/wall,/area/bridge) -"bkD" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/bridge) -"bkE" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red"},/area/bridge) -"bkF" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/bridge) -"bkG" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/bridge) -"bkH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/bridge) -"bkI" = (/turf/open/floor/plasteel,/area/bridge) -"bkJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/bridge) -"bkK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/bridge) -"bkL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "bluecorner"},/area/bridge) -"bkM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/bridge) -"bkN" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel,/area/bridge) -"bkO" = (/obj/machinery/computer/teleporter,/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/bridge) -"bkP" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/bridge) -"bkQ" = (/obj/machinery/computer/security/mining,/turf/open/floor/plasteel{dir = 6;icon_state = "brown"},/area/bridge) -"bkR" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Bar West";dir = 4;network = list("SS13")},/turf/open/floor/wood,/area/crew_quarters/bar) -"bkS" = (/obj/machinery/hologram/holopad,/turf/open/floor/wood,/area/crew_quarters/bar) -"bkT" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"bkU" = (/obj/item/clothing/head/that{throwforce = 1;throwing = 1},/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"bkV" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bkW" = (/obj/machinery/requests_console{department = "Bar";departmentType = 2;pixel_x = 30;pixel_y = 0},/obj/machinery/camera{c_tag = "Bar";dir = 8;network = list("SS13")},/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/turf/open/floor/wood,/area/crew_quarters/bar) -"bkX" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bkY" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bkZ" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/reagent_containers/food/condiment/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bla" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"blb" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"blc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Hydroponics Desk";req_access_txt = "35"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/crew_quarters/kitchen) -"bld" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/hydroponics) -"ble" = (/turf/open/floor/plasteel{icon_state = "green";dir = 8},/area/hydroponics) -"blf" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics) -"blg" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel,/area/hydroponics) -"blh" = (/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/hydroponics) -"bli" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"blj" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/open/floor/wood,/area/library) -"blk" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/library) -"blm" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/chair/withwheels/office/dark,/turf/open/floor/wood,/area/library) -"bln" = (/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library) -"blo" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"blp" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) -"blq" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"blr" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "chapel"},/area/chapel/main) -"bls" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "chapel"},/area/chapel/main) -"blt" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"blu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"blv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"blw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"blx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bly" = (/obj/machinery/power/apc{dir = 1;name = "Recreation Room APC";pixel_y = 30},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/carpet,/area/rec_room) -"blz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/carpet,/area/rec_room) -"blA" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/rec_room) -"blB" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 9},/area/hallway/secondary/entry) -"blC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/hallway/secondary/entry) -"blD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "neutral";dir = 1},/area/hallway/secondary/entry) -"blE" = (/obj/item/weapon/twohanded/required/kirbyplants,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "neutral";dir = 5},/area/hallway/secondary/entry) -"blF" = (/turf/open/floor/wood,/area/security/vacantoffice) -"blG" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"blH" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice) -"blI" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/wood,/area/security/vacantoffice) -"blJ" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) -"blK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"blL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port) -"blM" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port) -"blN" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/requests_console{department = "Locker Room";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blQ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blR" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blS" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2;pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blT" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blU" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"blY" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools) -"bma" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 5;icon_state = "blue"},/area/hallway/primary/central) -"bmb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"bmc" = (/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) -"bmd" = (/obj/machinery/camera{c_tag = "Bridge West";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/bridge) -"bme" = (/obj/structure/chair{dir = 1;name = "Security Station"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/bridge) -"bmg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) -"bmi" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/bridge) -"bmk" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bml" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmn" = (/obj/item/device/radio/beacon,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "browncorner"},/area/bridge) -"bmq" = (/obj/structure/chair{dir = 1;name = "Logistics Station"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bmr" = (/obj/machinery/camera{c_tag = "Bridge East";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 4;icon_state = "browncorner"},/area/bridge) -"bms" = (/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) -"bmt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 32},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/hallway/primary/central) -"bmu" = (/obj/machinery/camera{c_tag = "Bridge East Entrance";dir = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"bmv" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) -"bmw" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola,/turf/open/floor/wood,/area/crew_quarters/bar) -"bmx" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/obj/machinery/door/poddoor/shutters/preopen{id = "bar";name = "Bar Shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmy" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmz" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmA" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmB" = (/obj/structure/table,/obj/effect/spawner/lootdrop/food,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmC" = (/obj/machinery/processor,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bmD" = (/obj/machinery/light{dir = 8},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bmE" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) -"bmF" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/hydroponics) -"bmG" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"bmH" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/wood,/area/library) -"bmI" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/library) -"bmK" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5;pixel_y = 5},/turf/open/floor/wood,/area/library) -"bmL" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/turf/open/floor/wood,/area/library) -"bmM" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/wood,/area/library) -"bmN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "chapel"},/area/chapel/main) -"bmO" = (/obj/machinery/camera{c_tag = "Chapel South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"bmP" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"bmR" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bmS" = (/obj/machinery/door/window/northright,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bmT" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/turf/open/floor/grass,/area/hallway/secondary/exit) -"bmU" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/carpet,/area/rec_room) -"bmV" = (/turf/open/floor/carpet,/area/rec_room) -"bmW" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/rec_room) -"bmX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/rec_room) -"bmY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/rec_room) -"bmZ" = (/obj/structure/window/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/rec_room) -"bna" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/secondary/entry) -"bnb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) -"bnc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnd" = (/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) -"bne" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) -"bnf" = (/obj/machinery/camera{c_tag = "Vacant Office";dir = 4;network = list("SS13")},/turf/open/floor/wood,/area/security/vacantoffice) -"bng" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bnh" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice) -"bni" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/security/vacantoffice) -"bnj" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/turf/open/floor/wood,/area/security/vacantoffice) -"bnk" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/port) -"bnl" = (/obj/structure/grille,/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plating,/area/maintenance/port) -"bnm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/port) -"bnn" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bno" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnq" = (/obj/machinery/camera{c_tag = "Locker Room West";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bns" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnu" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) -"bnw" = (/obj/machinery/power/apc{dir = 1;name = "Art Storage";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) -"bnx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bny" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bnz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bnA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port) -"bnB" = (/obj/machinery/power/apc{dir = 1;name = "Port Emergency Storage APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency2) -"bnC" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port) -"bnD" = (/obj/item/clothing/gloves/color/rainbow,/obj/item/clothing/shoes/sneakers/rainbow,/obj/item/clothing/under/color/rainbow,/obj/item/clothing/head/soft/rainbow,/turf/open/floor/plating,/area/maintenance/port) -"bnE" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/storage/tools) -"bnF" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools) -"bnH" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/storage/tools) -"bnI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 4},/area/hallway/primary/central) -"bnJ" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) -"bnK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) -"bnL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel,/area/bridge) -"bnM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) -"bnN" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/bridge) -"bnO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bnP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/bridge) -"bnQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/machinery/light,/obj/machinery/light_switch{pixel_x = -6;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnR" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnS" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnT" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnV" = (/obj/machinery/turretid{control_area = "AI Upload Chamber";name = "AI Upload turret control";pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Center";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnX" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnY" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Bridge APC";pixel_y = -24},/obj/structure/cable,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bnZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/bridge) -"boa" = (/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;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) -"bob" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/bridge) -"boc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bod" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) -"boe" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bof" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) -"bog" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boi" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"boj" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31},/turf/open/floor/wood,/area/crew_quarters/bar) -"bok" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"bol" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/kitchen/fork,/turf/open/floor/wood,/area/crew_quarters/bar) -"bom" = (/obj/item/weapon/lighter,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"bon" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/reinforced,/turf/open/floor/wood,/area/crew_quarters/bar) -"boo" = (/obj/machinery/button/door{id = "bar";name = "Bar Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "0";req_one_access_txt = "25; 28"},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bop" = (/obj/effect/landmark/start{name = "Chef"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"boq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Kitchen";departmentType = 2;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bor" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 16},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bos" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bot" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bou" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bov" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bow" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"box" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"boy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/carpet,/area/library) -"boz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/turf/open/floor/carpet,/area/chapel/main) -"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/carpet,/area/chapel/main) -"boB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"boC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/carpet,/area/chapel/main) -"boD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"boE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"boF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"boG" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/crew_quarters/courtroom) -"boH" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit) -"boI" = (/turf/open/floor/grass,/area/hallway/secondary/exit) -"boJ" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hallway/secondary/exit) -"boK" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/turf/open/floor/grass,/area/hallway/secondary/exit) -"boL" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"boM" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/rec_room) -"boN" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet,/area/rec_room) -"boO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/turf/open/floor/wood,/area/rec_room) -"boP" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/rec_room) -"boQ" = (/obj/structure/table/wood,/obj/item/weapon/bikehorn/airhorn,/turf/open/floor/wood,/area/rec_room) -"boR" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/rec_room) -"boS" = (/obj/structure/window/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/rec_room) -"boT" = (/turf/open/floor/plasteel{icon_state = "neutral";dir = 8},/area/hallway/secondary/entry) -"boU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"boV" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) -"boW" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice) -"boX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/wood,/area/security/vacantoffice) -"boY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/security/vacantoffice) -"boZ" = (/turf/open/floor/carpet,/area/security/vacantoffice) -"bpa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/security/vacantoffice) -"bpb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bpc" = (/obj/machinery/light{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/security/vacantoffice) -"bpd" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port) -"bpe" = (/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker/locker_toilet) -"bpg" = (/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bph" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bpi" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bpj" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bpk" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/crew_quarters/locker) -"bpl" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/crew_quarters/locker) -"bpm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/crew_quarters/locker) -"bpn" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bpo" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Locker Room Maintenance APC";pixel_x = -27;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bpp" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) -"bpq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bpr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bps" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bpt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bpu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bpv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port) -"bpw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port) -"bpx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/storage/tools) -"bpz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/closed/wall,/area/storage/tools) -"bpA" = (/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"bpB" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) -"bpC" = (/obj/machinery/camera{c_tag = "Bridge West Entrance";dir = 1},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) -"bpD" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/hallway/primary/central) -"bpE" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge) -"bpF" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/bridge) -"bpG" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bpH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bpI" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bpJ" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/bridge) -"bpK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Upload Access";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bpO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpP" = (/obj/machinery/ai_status_display,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bpS" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/bridge) -"bpT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/bridge) -"bpU" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/hallway/primary/central) -"bpV" = (/obj/machinery/power/apc{dir = 2;name = "Central Hall APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/central) -"bpW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bpX" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/bar) -"bpY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen";req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bpZ" = (/obj/machinery/light_switch{pixel_y = -25},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bqa" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/button/door{id = "kitchen";name = "Kitchen Shutters Control";pixel_x = -1;pixel_y = -24;req_access_txt = "0";req_one_access_txt = "25; 28"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bqb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"bqc" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/hydroponics) -"bqd" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hydroponics) -"bqe" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel{dir = 1;icon_state = "green"},/area/hydroponics) -"bqf" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel,/area/hydroponics) -"bqg" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Hydroponics South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hydroponics) -"bqh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall,/area/hydroponics) -"bqi" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bqj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bqk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bql" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/library) -"bqm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/library) -"bqn" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/library) -"bqo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main) -"bqp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bqq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/chapel/main) -"bqr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main) -"bqs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"bqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"bqu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bqv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bqw" = (/mob/living/simple_animal/hostile/lizard{desc = "Scaley.";name = "Robusts-Many-Faces"},/turf/open/floor/grass,/area/hallway/secondary/exit) -"bqx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bqy" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/rec_room) -"bqz" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/rec_room) -"bqA" = (/obj/structure/table/wood,/obj/item/device/taperecorder/empty,/turf/open/floor/wood,/area/rec_room) -"bqB" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/carpet,/area/rec_room) -"bqC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) -"bqD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bqE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) -"bqF" = (/obj/machinery/door/airlock/engineering{name = "Vacant Office";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bqH" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bqI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice) -"bqJ" = (/obj/structure/chair/withwheels/office/dark,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/wood,/area/security/vacantoffice) -"bqK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bqL" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bqM" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bqN" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bqO" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bqP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bqQ" = (/obj/structure/table,/obj/item/weapon/razor,/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bqR" = (/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bqS" = (/obj/structure/closet,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3;pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2;pixel_y = 0},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bqT" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) -"bqU" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{icon_state = "delivery"},/area/crew_quarters/locker) -"bqV" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/crew_quarters/locker) -"bqW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bqX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bqY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bqZ" = (/turf/closed/wall,/area/quartermaster/storage) -"bra" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/storage) -"brb" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance";req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/storage) -"brc" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) -"brd" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/office) -"brf" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) -"brg" = (/turf/closed/wall,/area/quartermaster/office) -"brh" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"bri" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room) -"brj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/bridge/meeting_room) -"brk" = (/obj/machinery/door/airlock/command{name = "Conference Room";req_access = null;req_access_txt = "19"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"brl" = (/turf/closed/wall,/area/bridge/meeting_room) -"brm" = (/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"brn" = (/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bro" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"brp" = (/obj/machinery/porta_turret{ai = 1;dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"brq" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"brr" = (/obj/machinery/door/airlock/command{name = "Captain's Office";req_access = null;req_access_txt = "20"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"brs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"brt" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bru" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/bar) -"brv" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar) -"brw" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/computer/slot_machine,/turf/open/floor/wood,/area/crew_quarters/bar) -"brx" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/bar) -"bry" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/bar) -"brz" = (/obj/machinery/camera{c_tag = "Bar South";dir = 1},/turf/open/floor/wood,/area/crew_quarters/bar) -"brA" = (/obj/structure/noticeboard{pixel_y = -27},/turf/open/floor/wood,/area/crew_quarters/bar) -"brB" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/bar) -"brC" = (/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/bar) -"brD" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/bar) -"brE" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"brF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "kitchen shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"brG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "kitchen shutters"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/kitchen) -"brH" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) -"brI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hydroponics) -"brJ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{name = "Hydroponics Desk";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"brK" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1;name = "Hydroponics Desk";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"brM" = (/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"brN" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"brO" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/library) -"brP" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/wood,/area/library) -"brQ" = (/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library) -"brS" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/wood,/area/library) -"brT" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/library) -"brU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"brV" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"brW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/chapel/main) -"brX" = (/obj/machinery/power/apc{dir = 8;name = "Escape Hallway APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Escape shuttle Hallway";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"brY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"brZ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bsa" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bsb" = (/mob/living/simple_animal/cow,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bsc" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/rec_room) -"bsd" = (/obj/structure/extinguisher_cabinet{pixel_x = 30},/turf/open/floor/carpet,/area/rec_room) -"bse" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/hallway/secondary/entry) -"bsf" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "neutral";dir = 4},/area/hallway/secondary/entry) -"bsg" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/wood,/area/security/vacantoffice) -"bsh" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/security/vacantoffice) -"bsi" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bsj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bsk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/power/apc{dir = 4;name = "Locker Restrooms APC";pixel_x = 27;pixel_y = 2},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/crew_quarters/locker/locker_toilet) -"bsl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bsm" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bsn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bso" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bsp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bsq" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bsr" = (/obj/machinery/conveyor{dir = 1;id = "packageSort1"},/turf/open/floor/plating,/area/quartermaster/office) -"bss" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/office) -"bst" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/office) -"bsu" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/office) -"bsv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office) -"bsw" = (/obj/machinery/photocopier,/turf/open/floor/wood,/area/bridge/meeting_room) -"bsx" = (/obj/machinery/button/door{id = "heads_meeting";name = "Security Shutters";pixel_x = 0;pixel_y = 24},/turf/open/floor/wood,/area/bridge/meeting_room) -"bsy" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/bridge/meeting_room) -"bsz" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/camera{c_tag = "Conference Room";dir = 2},/turf/open/floor/wood,/area/bridge/meeting_room) -"bsA" = (/turf/open/floor/wood,/area/bridge/meeting_room) -"bsB" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bsC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bsD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/wood,/area/bridge/meeting_room) -"bsE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bsF" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bsG" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bsH" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bsI" = (/obj/structure/table,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bsJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bsK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) -"bsL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) -"bsM" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain) -"bsN" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bsO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bsP" = (/obj/machinery/status_display{pixel_x = 0;pixel_y = 32},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bsQ" = (/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Captain's Office APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bsR" = (/turf/open/floor/wood,/area/crew_quarters/captain) -"bsS" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) -"bsT" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/hallway/primary/starboard) -"bsU" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 2";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/hallway/primary/starboard) -"bsV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics";req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics) -"bsW" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/library) -"bsX" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/chapel/main) -"bsY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/hallway/secondary/exit) -"bsZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bta" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"btb" = (/mob/living/simple_animal/hostile/lizard{desc = "A Lizard Wizard!";name = "Merlin"},/turf/open/floor/grass,/area/hallway/secondary/exit) -"btc" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hallway/secondary/exit) -"btd" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/rec_room) -"bte" = (/turf/open/floor/plasteel{tag = "icon-stairs-l";icon_state = "stairs-l"},/area/hallway/secondary/entry) -"btf" = (/turf/open/floor/plasteel{tag = "icon-stairs-m";icon_state = "stairs-m"},/area/hallway/secondary/entry) -"btg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-stairs-m";icon_state = "stairs-m"},/area/hallway/secondary/entry) -"bth" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-stairs-r";icon_state = "stairs-r"},/area/hallway/secondary/entry) -"bti" = (/obj/machinery/power/apc{dir = 8;name = "Vacant Office APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/security/vacantoffice) -"btj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"btk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/port) -"btl" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"btm" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"btn" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"bto" = (/obj/machinery/washing_machine,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "barber"},/area/crew_quarters/locker) -"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"btq" = (/obj/structure/closet/crate,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"btr" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/office) -"bts" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"btu" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "arrival";dir = 1},/area/quartermaster/office) -"btv" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "arrival";dir = 5},/area/quartermaster/office) -"btw" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"btx" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "heads_meeting";layer = 2.9;name = "privacy shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/bridge/meeting_room) -"bty" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"btz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/bridge/meeting_room) -"btA" = (/obj/structure/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"btB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"btC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) -"btD" = (/obj/machinery/vending/snack,/turf/open/floor/wood,/area/bridge/meeting_room) -"btE" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload West";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"btF" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"btG" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/freeform,/obj/structure/sign/kiddieplaque{pixel_x = 32},/obj/machinery/camera/motion{c_tag = "AI Upload East";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"btH" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/captain) -"btI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"btJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"btK" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"btL" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/captain) -"btM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"btN" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/crew_quarters/captain) -"btO" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorm";location = "HOP2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"btP" = (/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = 32;pixel_y = 28;tag = "icon-direction_evac (EAST)"},/obj/structure/sign/directions/security{dir = 1;icon_state = "direction_sec";pixel_x = 32;pixel_y = 36;tag = "icon-direction_sec (NORTH)"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"btQ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btR" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway";dir = 2;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btS" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btU" = (/obj/machinery/status_display{layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btX" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"btZ" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 5";dir = 2;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 4;icon_state = "whitecorner"},/area/hallway/secondary/exit) -"bub" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/secondary/exit) -"buc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bud" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bue" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/machinery/door/window/southright,/turf/open/floor/grass,/area/hallway/secondary/exit) -"buf" = (/obj/structure/window,/obj/structure/flora/ausbushes,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bug" = (/obj/structure/window,/turf/open/floor/grass,/area/hallway/secondary/exit) -"buh" = (/obj/structure/window{tag = "icon-window (EAST)";icon_state = "window";dir = 4},/obj/structure/window,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bui" = (/obj/structure/window,/obj/machinery/vending/cola,/turf/open/floor/carpet,/area/rec_room) -"buj" = (/obj/structure/window,/obj/machinery/vending/snack,/turf/open/floor/carpet,/area/rec_room) -"buk" = (/obj/structure/window,/obj/item/weapon/twohanded/required/kirbyplants,/turf/open/floor/carpet,/area/rec_room) -"bul" = (/obj/structure/window,/obj/machinery/vending/coffee,/turf/open/floor/carpet,/area/rec_room) -"bum" = (/obj/structure/window,/obj/machinery/vending/cigarette,/turf/open/floor/carpet,/area/rec_room) -"bun" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"buo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"bup" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"buq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"bur" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"bus" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"but" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"buu" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port) -"buv" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"buy" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"buz" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"buA" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/crew_quarters/locker) -"buB" = (/obj/machinery/camera{c_tag = "Locker Room South";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"buC" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"buD" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"buE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"buF" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/office) -"buH" = (/obj/structure/table,/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) -"buI" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"buJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "heads_meeting";layer = 2.9;name = "privacy shutters"},/turf/open/floor/plating,/area/bridge/meeting_room) -"buK" = (/obj/item/weapon/hand_labeler,/obj/item/device/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"buL" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"buM" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Command)";pixel_x = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) -"buN" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"buO" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/bridge/meeting_room) -"buP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"buQ" = (/obj/machinery/vending/cola,/turf/open/floor/wood,/area/bridge/meeting_room) -"buR" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"buS" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai_upload) -"buT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"buU" = (/obj/machinery/computer/arcade,/turf/open/floor/wood,/area/crew_quarters/captain) -"buV" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/captain) -"buW" = (/obj/machinery/camera{c_tag = "Central Hallway East";dir = 4;network = list("SS13")},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"buX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"buY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"buZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bva" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvb" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1";tag = "icon-pipe-j1 (EAST)"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bve" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP2";location = "Stbd"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bvl" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bvm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bvn" = (/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"bvo" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/table/wood,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/open/floor/carpet,/area/rec_room) -"bvp" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/obj/item/weapon/pen,/turf/open/floor/carpet,/area/rec_room) -"bvq" = (/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/computer/arcade,/turf/open/floor/carpet,/area/rec_room) -"bvr" = (/turf/closed/wall,/area/maintenance/disposal) -"bvs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal) -"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal) -"bvu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port) -"bvw" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bvx" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bvy" = (/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/port) -"bvz" = (/obj/effect/landmark{name = "blobstart"},/obj/item/clothing/suit/ianshirt,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/port) -"bvA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker) -"bvB" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bvC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bvD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bvE" = (/obj/structure/closet/crate,/obj/machinery/doorButtons,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bvF" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bvG" = (/obj/machinery/camera{c_tag = "Cargo Bay Storage";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bvI" = (/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/quartermaster/office) -"bvJ" = (/obj/machinery/conveyor{dir = 4;id = "packageExternal"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) -"bvK" = (/obj/machinery/conveyor{dir = 4;id = "packageExternal"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) -"bvL" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/hallway/primary/central) -"bvM" = (/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table,/turf/open/floor/wood,/area/bridge/meeting_room) -"bvN" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bvO" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/bridge/meeting_room) -"bvP" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/bridge/meeting_room) -"bvQ" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Core Modules";req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/paladin,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/aiModule/core/full/robocop,/obj/item/weapon/aiModule/core/full/custom,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bvR" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bvS" = (/obj/machinery/computer/upload/ai,/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -21},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bvT" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Upload APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bvU" = (/obj/machinery/computer/upload/borg,/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_y = -29},/turf/open/floor/bluegrid,/area/turret_protected/ai_upload) -"bvV" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bvW" = (/obj/structure/table,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/machinery/door/window{base_state = "left";dir = 8;icon_state = "left";name = "High-Risk Modules";req_access_txt = "20"},/obj/item/weapon/aiModule/reset/purge,/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/antimov,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/aiModule/supplied/protectStation,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai_upload) -"bvX" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/requests_console{announcementConsole = 1;department = "Captain's Desk";departmentType = 5;name = "Captain RC";pixel_x = -30;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain) -"bvY" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bvZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain) -"bwa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bwc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bwd" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office";dir = 8},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain) -"bwe" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/central) -"bwf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd";location = "HOP"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bwg" = (/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = 32;pixel_y = -24;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 4;icon_state = "direction_sci";pixel_x = 32;pixel_y = -32;tag = "icon-direction_sci (EAST)"},/obj/structure/sign/directions/engineering{pixel_x = 32;pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bwh" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwi" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/starboard) -"bwj" = (/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/starboard) -"bwk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/hallway/primary/starboard) -"bwl" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 8;icon_state = "bluecorner"},/area/hallway/primary/starboard) -"bwm" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/hallway/primary/starboard) -"bwn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/hallway/primary/starboard) -"bwo" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/hallway/primary/starboard) -"bwp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwq" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 3";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bws" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwt" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwu" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bwv" = (/obj/machinery/camera{c_tag = "Starboard Primary Hallway 4";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bww" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/secondary/exit) -"bwx" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) -"bwy" = (/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) -"bwz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/hallway/secondary/exit) -"bwA" = (/obj/machinery/camera{c_tag = "Escape Hallway South";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bwB" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bwC" = (/obj/structure/easel,/turf/open/floor/carpet,/area/rec_room) -"bwD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/rec_room) -"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/rec_room) -"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/rec_room) -"bwG" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/rec_room) -"bwH" = (/obj/structure/chair/stool{pixel_y = 0},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/carpet,/area/rec_room) -"bwI" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Recreation Room";dir = 8;network = list("SS13")},/turf/open/floor/carpet,/area/rec_room) -"bwJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bwK" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/disposal) -"bwL" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bwM" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bwN" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/recycler,/obj/structure/sign/securearea{name = "\improper STAY CLEAR HEAVY MACHINERY";pixel_y = 32},/turf/open/floor/plating,/area/maintenance/disposal) -"bwO" = (/obj/machinery/conveyor{dir = 9;id = "garbage";verted = -1},/turf/open/floor/plating,/area/maintenance/disposal) -"bwP" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/port) -"bwQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/port) -"bwR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bwT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/port) -"bwU" = (/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bwV" = (/obj/machinery/camera{c_tag = "Locker Room Toilets";dir = 8;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"bwW" = (/obj/machinery/power/apc{dir = 1;name = "Locker Room APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/crew_quarters/locker) -"bwX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bwY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bwZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/port) -"bxa" = (/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bxb" = (/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"bxc" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/office) -"bxd" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"bxf" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "packageExternal"},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) -"bxg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/office) -"bxh" = (/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bxi" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_y = -30},/obj/machinery/light,/turf/open/floor/wood,/area/bridge/meeting_room) -"bxj" = (/turf/open/floor/carpet,/area/bridge/meeting_room) -"bxk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bxl" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bxm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/bridge/meeting_room) -"bxn" = (/obj/structure/noticeboard{dir = 8;pixel_x = 27;pixel_y = 0},/turf/open/floor/wood,/area/bridge/meeting_room) -"bxo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxq" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxr" = (/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxs" = (/obj/machinery/status_display{density = 0;layer = 4},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/turret_protected/ai_upload) -"bxv" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/wood,/area/crew_quarters/captain) -"bxw" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bxx" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bxy" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/wood,/area/crew_quarters/captain) -"bxz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bxA" = (/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/obj/item/weapon/storage/secure/safe{pixel_x = 35;pixel_y = 5},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bxB" = (/turf/closed/wall/r_wall,/area/medical/chemistry) -"bxC" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/medical/medbay) -"bxD" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/medbay) -"bxE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bxF" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bxG" = (/turf/closed/wall,/area/security/checkpoint/medical) -"bxH" = (/turf/closed/wall,/area/medical/morgue) -"bxI" = (/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bxJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bxK" = (/obj/machinery/power/apc{dir = 2;name = "Starboard Primary Hallway APC";pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bxL" = (/turf/closed/wall,/area/storage/emergency) -"bxM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bxN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/assembly/chargebay) -"bxO" = (/turf/open/floor/plasteel{dir = 1;icon_state = "loadingarea"},/area/hallway/primary/starboard) -"bxP" = (/turf/closed/wall/r_wall,/area/assembly/robotics) -"bxR" = (/turf/open/floor/plasteel{dir = 10;icon_state = "purple"},/area/hallway/primary/starboard) -"bxS" = (/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) -"bxT" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) -"bxU" = (/obj/structure/sign/securearea{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) -"bxV" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "purple"},/area/hallway/primary/starboard) -"bxW" = (/turf/open/floor/plasteel{dir = 6;icon_state = "purple"},/area/hallway/primary/starboard) -"bxX" = (/turf/closed/wall/r_wall,/area/toxins/lab) -"bxY" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 10;icon_state = "escape"},/area/hallway/secondary/exit) -"bxZ" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "escape"},/area/hallway/secondary/exit) -"bya" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/exit) -"byb" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/exit) -"byc" = (/obj/structure/easel,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/carpet,/area/rec_room) -"byd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/rec_room) -"bye" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Arrivals Hallway South";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"byf" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/contraband,/obj/effect/spawner/lootdrop/food,/turf/open/floor/plating,/area/maintenance/disposal) -"byg" = (/obj/structure/chair/stool{pixel_y = 0},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plating,/area/maintenance/disposal) -"byh" = (/obj/structure/rack{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/contraband,/obj/effect/spawner/lootdrop/plants,/turf/open/floor/plating,/area/maintenance/disposal) -"byi" = (/obj/machinery/conveyor{dir = 1;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/disposal) -"byj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/maintenance/disposal) -"byk" = (/obj/machinery/power/apc{dir = 8;name = "Disposal APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"byl" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"byn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"byo" = (/obj/machinery/door/airlock{name = "Unit 4"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"byp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/locker/locker_toilet) -"byq" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port) -"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) -"bys" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"byt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"byu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"byv" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/power/apc{dir = 2;name = "Cargo Bay APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/storage) -"byw" = (/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = -1;pixel_y = -24;req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"byx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"byy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"byz" = (/obj/structure/closet/cardboard,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/storage) -"byA" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/storage) -"byB" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office) -"byC" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"byE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"byF" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) -"byG" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Delivery Desk";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) -"byH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"byI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"byJ" = (/obj/machinery/camera{c_tag = "Central Hallway West";dir = 8},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"byK" = (/obj/machinery/door/window/eastright{dir = 1;name = "Bridge Delivery";req_access_txt = "19"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/bridge/meeting_room) -"byL" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/bridge/meeting_room) -"byM" = (/obj/machinery/computer/slot_machine,/turf/open/floor/wood,/area/bridge/meeting_room) -"byN" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -32},/turf/open/floor/wood,/area/bridge/meeting_room) -"byO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"byP" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/turf/open/floor/plating,/area/bridge/meeting_room) -"byQ" = (/turf/open/floor/plating,/area/maintenance/maintcentral) -"byR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral) -"byS" = (/obj/machinery/light,/turf/open/floor/plating,/area/maintenance/maintcentral) -"byT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral) -"byU" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/turf/open/floor/plating,/area/crew_quarters/captain) -"byV" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"byW" = (/obj/machinery/computer/communications,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"byX" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/coin/plasma,/turf/open/floor/wood,/area/crew_quarters/captain) -"byY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/open/floor/wood,/area/crew_quarters/captain) -"byZ" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/device/camera,/obj/item/weapon/storage/photo_album{pixel_y = -10},/turf/open/floor/wood,/area/crew_quarters/captain) -"bza" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bzb" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bzc" = (/obj/machinery/power/apc{dir = 1;name = "Chemistry APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bzd" = (/obj/machinery/camera{c_tag = "Chemistry";dir = 2;network = list("SS13")},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/chem_heater,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bze" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/chemistry) -"bzf" = (/obj/machinery/chem_master,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteyellow"},/area/medical/chemistry) -"bzg" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzh" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzj" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bzk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bzl" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26;req_access_txt = "5"},/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/medical) -"bzm" = (/obj/machinery/camera{c_tag = "Security Post - Medbay";dir = 2;network = list("SS13")},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/medical) -"bzn" = (/obj/structure/filingcabinet,/obj/machinery/newscaster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/medical) -"bzo" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzp" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzs" = (/obj/machinery/power/apc{dir = 1;name = "Morgue APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bzu" = (/obj/machinery/door/airlock{name = "Starboard Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/storage/emergency) -"bzv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bzw" = (/turf/closed/wall,/area/assembly/chargebay) -"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bzy" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "mech bay"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/assembly/chargebay) -"bzz" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/airalarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bzA" = (/obj/structure/table,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2;pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/machinery/requests_console{department = "Robotics";departmentType = 2;name = "Robotics RC";pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bzB" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bzC" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics";name = "robotics lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bzD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";closingLayer = 3.2;dir = 2;icon_state = "left";layer = 3.2;name = "Robotics Desk";req_access_txt = "29"},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{closingLayer = 3.3;id = "robotics";name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) -"bzE" = (/turf/closed/wall,/area/medical/research{name = "Research Division"}) -"bzF" = (/obj/machinery/door/airlock/research{name = "Research Division Access";req_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bzG" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd";name = "research lab shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/lab) -"bzH" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southright{closingLayer = 3.2;layer = 3.2;name = "Research and Development Desk";req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{closingLayer = 3.3;id = "rnd";name = "research lab shutters"},/turf/open/floor/plating,/area/toxins/lab) -"bzI" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bzJ" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bzK" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bzL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint2) -"bzM" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) -"bzN" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bzO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/rec_room) -"bzP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/rec_room) -"bzQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bzR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bzS" = (/obj/machinery/conveyor{dir = 5;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/disposal) -"bzT" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bzU" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bzV" = (/obj/machinery/conveyor{dir = 10;id = "garbage";verted = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) -"bzW" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) -"bzX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bAh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/storage) -"bAj" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/quartermaster/office) -"bAk" = (/obj/machinery/door/window/eastleft{name = "Mail";req_access_txt = "50"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/quartermaster/office) -"bAl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"bAm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bAo" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "arrival";dir = 4},/area/quartermaster/office) -"bAp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"bAq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bAs" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "bluecorner"},/area/hallway/primary/central) -"bAt" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";dir = 1;freq = 1400;location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/bridge/meeting_room) -"bAu" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/bridge/meeting_room) -"bAv" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral) -"bAw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bAx" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bAy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bAz" = (/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Command)";pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/captain) -"bAA" = (/obj/machinery/computer/card,/obj/item/weapon/card/id/captains_spare,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bAB" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/weapon/melee/chainofcommand,/turf/open/floor/wood,/area/crew_quarters/captain) -"bAC" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/requests_console{department = "Chemistry";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bAD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bAE" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bAF" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellow"},/area/medical/chemistry) -"bAG" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{dir = 8;name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bAH" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bAJ" = (/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bAK" = (/obj/machinery/computer/secure_data,/obj/item/device/radio/intercom{pixel_x = 25},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) -"bAL" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bAM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bAN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bAO" = (/turf/open/floor/plating,/area/storage/emergency) -"bAP" = (/obj/machinery/light/small{dir = 1},/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/storage/emergency) -"bAQ" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/storage/emergency) -"bAR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 4;name = "Mech Bay APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/assembly/chargebay) -"bAS" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bAT" = (/turf/open/floor/plasteel,/area/assembly/chargebay) -"bAU" = (/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = 6;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/assembly/chargebay) -"bAV" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/chargebay) -"bAW" = (/obj/machinery/power/apc{dir = 8;name = "Robotics Lab APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bAX" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/effect/landmark/start{name = "Roboticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bAY" = (/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bBa" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) -"bBb" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) -"bBc" = (/obj/machinery/vending/robotics,/turf/open/floor/plasteel{dir = 1;icon_state = "whitered"},/area/assembly/robotics) -"bBd" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bBe" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bBf" = (/obj/machinery/camera{c_tag = "Research Division Access";dir = 2;network = list("SS13")},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/medical/research{name = "Research Division"}) -"bBg" = (/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurple"},/area/toxins/lab) -"bBh" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurple"},/area/toxins/lab) -"bBi" = (/obj/machinery/camera{c_tag = "Research and Development";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/button/door{dir = 2;id = "rnd";name = "Shutters Control Button";pixel_x = -6;pixel_y = 24;req_access_txt = "47"},/turf/open/floor/plasteel{dir = 1;icon_state = "whitepurplecorner"},/area/toxins/lab) -"bBj" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bBk" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bBl" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bBn" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) -"bBo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) -"bBp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) -"bBq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{dir = 1;icon_state = "arrival"},/area/hallway/secondary/entry) -"bBr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "bluecorner"},/area/hallway/secondary/entry) -"bBs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bBt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bBu" = (/obj/machinery/conveyor{dir = 1;id = "garbage"},/obj/structure/sign/vacuum{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bBv" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{base_state = "right";density = 0;dir = 4;icon_state = "rightopen";layer = 3},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/disposal) -"bBw" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBx" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bBy" = (/obj/machinery/mineral/stacking_machine{input_dir = 1;stack_amt = 10},/turf/open/floor/plating,/area/maintenance/disposal) -"bBz" = (/obj/machinery/mineral/stacking_unit_console{dir = 2;machinedir = 8},/turf/closed/wall,/area/maintenance/disposal) -"bBA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bBB" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port) -"bBC" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bBD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bBE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bBF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/port) -"bBG" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/port) -"bBH" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBI" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBK" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/structure/closet/wardrobe/cargotech,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBL" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBM" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBO" = (/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = -1;pixel_y = 24;req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bBP" = (/obj/machinery/photocopier,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/quartermaster/office) -"bBQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/office) -"bBR" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"bBT" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bBU" = (/obj/machinery/power/apc{dir = 1;name = "Bridge Maintenance APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/maintcentral) -"bBV" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bBW" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/bridge/meeting_room) -"bBX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/bridge/meeting_room) -"bBY" = (/obj/structure/closet/secure_closet/freezer/money,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) -"bBZ" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"bCa" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"bCb" = (/obj/machinery/power/apc{dir = 1;name = "Vault APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"bCc" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) -"bCd" = (/obj/machinery/newscaster/security_unit{pixel_x = -32;pixel_y = 0},/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/captain) -"bCe" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Captain's Desk Door";req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bCf" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bCg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/wood,/area/crew_quarters/captain) -"bCh" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/captain) -"bCi" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bCj" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bCk" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bCl" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellow"},/area/medical/chemistry) -"bCm" = (/obj/machinery/smartfridge/chemistry,/turf/closed/wall/r_wall,/area/medical/chemistry) -"bCn" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bCo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "whitebluecorner"},/area/medical/medbay) -"bCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) -"bCq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) -"bCr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) -"bCs" = (/turf/open/floor/plasteel{dir = 2;icon_state = "whiteblue"},/area/medical/medbay) -"bCu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bCT" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bCU" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bCV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bCW" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bCX" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bCY" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bCZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bDa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bDb" = (/turf/closed/wall,/area/maintenance/asmaint2) -"bDc" = (/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 12;id = "ferry_home";name = "port bay 2";turf_type = /turf/open/space;width = 5},/turf/open/space,/area/space) -"bDd" = (/obj/machinery/door/airlock/external{id_tag = null;name = "Port Docking Bay 2";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bDe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bDf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bDg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) -"bDh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/hallway/secondary/entry) -"bDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/hallway/secondary/entry) -"bDj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bDk" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bDl" = (/obj/machinery/conveyor{dir = 1;id = "garbage";layer = 2.5},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit";layer = 3;name = "disposal exit vent"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bDm" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/closed/wall,/area/maintenance/disposal) -"bDn" = (/obj/machinery/button/massdriver{id = "trash";pixel_x = -26;pixel_y = -6},/obj/machinery/button/door{id = "Disposal Exit";name = "Disposal Vent Control";pixel_x = -25;pixel_y = 4;req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) -"bDo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) -"bDp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) -"bDq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bDr" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access";req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bDs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/port) -"bDt" = (/turf/closed/wall/r_wall,/area/maintenance/port) -"bDu" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/port) -"bDv" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance";req_access_txt = "31"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/quartermaster/storage) -"bDw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bDx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bDy" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) -"bDz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/quartermaster/office) -"bDA" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bDB" = (/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bDC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bDD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bDF" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/office) -"bDG" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDI" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) -"bDJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/maintcentral) -"bDK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/power/apc{dir = 2;name = "Head of Personnel APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads) -"bDL" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/maintcentral) -"bDM" = (/obj/machinery/power/apc{dir = 4;name = "Conference Room APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge/meeting_room) -"bDN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Confrence Room South";dir = 1},/turf/open/floor/wood,/area/bridge/meeting_room) -"bDO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bDP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) -"bDQ" = (/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"bDR" = (/obj/machinery/nuclearbomb/selfdestruct{layer = 2},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/ai_monitored/nuke_storage) -"bDS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/ai_monitored/nuke_storage) -"bDT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) -"bDU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bDV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain) -"bDW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters";req_access = null;req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bDX" = (/obj/machinery/door/airlock/maintenance{name = "Captain's Office Maintenance";req_access_txt = "20"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/captain) -"bDY" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDZ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/item/clothing/glasses/science{pixel_x = 2;pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bEa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bEb" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bEc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bEd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bEe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteblue"},/area/medical/medbay) -"bEf" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bEg" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bEh" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bEi" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/cell_charger,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bEk" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bEl" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/medical) -"bEm" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/assembly/chargebay) -"bEn" = (/turf/open/floor/plasteel/recharge_floor,/area/assembly/chargebay) -"bEo" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bEp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bEq" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bEr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bEs" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20;pixel_x = -3;pixel_y = 6},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) -"bEt" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) -"bEu" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/assembly/robotics) -"bEw" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) -"bEy" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bEz" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bEA" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) -"bEB" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) -"bEC" = (/obj/machinery/r_n_d/protolathe,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/lab) -"bED" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/lab) -"bEE" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bEF" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3;pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bEG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bEH" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bEI" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bEJ" = (/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 = 32},/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bEK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bEL" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 4";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bEM" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 3";req_access_txt = "0"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/hallway/secondary/entry) -"bEO" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bEP" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bEQ" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bER" = (/obj/machinery/light/small{dir = 8},/obj/machinery/mass_driver{id = "trash"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/disposal) -"bES" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/disposal) -"bET" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/disposal) -"bEU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bEV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/maintenance/disposal) -"bEW" = (/obj/effect/decal/cleanable/oil,/obj/machinery/light_switch{pixel_x = 25;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/disposal) -"bEX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/port) -"bEY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bEZ" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) -"bFa" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFc" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFf" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay";req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"bFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bFi" = (/obj/machinery/status_display{density = 0;pixel_y = 2;supply_display = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/quartermaster/office) -"bFj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/office) -"bFl" = (/obj/machinery/mineral/ore_redemption{input_dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/quartermaster/office) -"bFm" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bFn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFo" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/maintcentral) -"bFp" = (/turf/closed/wall,/area/crew_quarters/heads) -"bFq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads) -"bFr" = (/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/heads) -"bFs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads) -"bFt" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1;pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1;pixel_y = -2},/obj/item/weapon/storage/belt/champion,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) -"bFu" = (/obj/item/weapon/coin/silver{pixel_x = 7;pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12;pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4;pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6;pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5;pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) -"bFv" = (/turf/closed/wall,/area/crew_quarters/captain) -"bFw" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bFx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bFy" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bFz" = (/obj/machinery/door/airlock{name = "Private Restroom";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bFA" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bFC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFD" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFE" = (/obj/structure/table/glass,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bFF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bFG" = (/obj/structure/disposalpipe/segment,/obj/machinery/chem_heater,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bFH" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel{dir = 2;icon_state = "whiteyellow"},/area/medical/chemistry) -"bFI" = (/obj/machinery/chem_master,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteyellow"},/area/medical/chemistry) -"bFJ" = (/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/light,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bFK" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bFL" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = -26;req_access_txt = "5"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bFM" = (/obj/structure/chair/withwheels/office/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bFO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/medical) -"bFP" = (/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/medical) -"bFQ" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFU" = (/obj/structure/disposalpipe/segment{dir = 4},/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},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bFV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance";req_access_txt = "6"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/morgue) -"bFW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bFX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/power/apc{dir = 1;name = "Starboard Emergency Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency) -"bFY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{sortType = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bFZ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Mech Bay";dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bGa" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bGb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bGc" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bGd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/robotics) -"bGf" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics) -"bGg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/assembly/robotics) -"bGi" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) -"bGj" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bGk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bGl" = (/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"bGm" = (/obj/machinery/door/airlock/research{name = "Research Division Access";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bGn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"bGo" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/toxins/lab) -"bGp" = (/turf/open/floor/plasteel,/area/toxins/lab) -"bGq" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/open/floor/plasteel,/area/toxins/lab) -"bGr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/lab) -"bGs" = (/obj/structure/table/glass,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bGt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bGu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bGv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"bGx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/asmaint2) -"bGy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bGz" = (/obj/structure/grille,/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 = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bGA" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bGB" = (/obj/machinery/camera{c_tag = "Arrivals Bay 3 & 4";dir = 1},/turf/open/floor/plasteel{icon_state = "warning"},/area/hallway/secondary/entry) -"bGC" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/hallway/secondary/entry) -"bGD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"bGE" = (/turf/closed/wall/r_wall,/area/maintenance/disposal) -"bGF" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;icon_state = "switch-rev";id = "garbage";name = "disposal coveyor";position = -1},/turf/open/floor/plating,/area/maintenance/disposal) -"bGG" = (/turf/open/floor/plating,/area/maintenance/disposal) -"bGH" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/disposal) -"bGI" = (/obj/structure/closet,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plating,/area/maintenance/disposal) -"bGJ" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) -"bGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bGL" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bGM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bGN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bGO" = (/obj/machinery/door/airlock/glass_mining{name = "Cargo Bay";req_access_txt = "31"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bGP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/office) -"bGQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"bGR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bGS" = (/obj/item/weapon/stamp{pixel_x = -3;pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4;pixel_y = -2},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bGT" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/pen/red,/obj/structure/table,/turf/open/floor/plasteel,/area/quartermaster/office) -"bGU" = (/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/quartermaster/office) -"bGV" = (/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel,/area/quartermaster/office) -"bGW" = (/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/quartermaster/office) -"bGX" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/office) -"bGY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGZ" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/hallway/primary/central) -"bHa" = (/obj/machinery/button/flasher{id = "hopflash";pixel_x = 6;pixel_y = 36},/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = 6;pixel_y = 25;req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue";name = "Queue Shutters Control";pixel_x = -4;pixel_y = 25;req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -4;pixel_y = 36},/obj/machinery/pdapainter,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/heads) -"bHb" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = 32},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bHc" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/bed/dogbed{anchored = 1;desc = "Ian's bed! Looks comfy.";name = "Ian's bed"},/mob/living/simple_animal/pet/dog/corgi/Ian{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bHe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bHf" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/ai_monitored/nuke_storage) -"bHg" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/ai_monitored/nuke_storage) -"bHh" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "vault"},/area/ai_monitored/nuke_storage) -"bHi" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/camera/motion{c_tag = "Vault";dir = 1;network = list("MiniSat")},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 10},/area/ai_monitored/nuke_storage) -"bHj" = (/obj/structure/safe,/obj/item/clothing/head/bearpelt,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/gun/projectile/revolver/russian,/obj/item/ammo_box/a357,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/ai_monitored/nuke_storage) -"bHk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/captain) -"bHl" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bHm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bHn" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bHo" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bHq" = (/obj/structure/table/glass,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2;pixel_y = 6},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bHr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bHs" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bHt" = (/turf/closed/wall,/area/medical/medbay) -"bHu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteblue"},/area/medical/medbay) -"bHv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteblue"},/area/medical/medbay) -"bHw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/medbay) -"bHx" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bHy" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 30;pixel_y = 0;pixel_z = 0},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bHz" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/security/checkpoint/medical) -"bHA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bHB" = (/obj/machinery/door/airlock/medical{name = "Morgue";req_access_txt = "6;5"},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/morgue) -"bHC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/genetics) -"bHD" = (/turf/closed/wall,/area/medical/genetics) -"bHE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/genetics) -"bHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/genetics) -"bHG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/genetics) -"bHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) -"bHI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"bHJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall,/area/assembly/chargebay) -"bHK" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/assembly/chargebay) -"bHL" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bHM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bHN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bHO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/assembly/robotics) -"bHP" = (/turf/open/floor/plasteel,/area/assembly/robotics) -"bHR" = (/obj/structure/table,/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/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000;pixel_x = 5;pixel_y = -5},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/crowbar,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bHS" = (/turf/closed/wall,/area/assembly/robotics) -"bHT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) -"bHU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) -"bHV" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) -"bHW" = (/turf/closed/wall,/area/toxins/lab) -"bHX" = (/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) -"bHY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) -"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/lab) -"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhitecorner"},/area/toxins/lab) -"bIb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bIc" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/glass,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2;pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/power/apc{dir = 4;name = "Research Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bId" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/toxins/lab) -"bIe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/toxins/lab) -"bIf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIh" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bIi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) -"bIj" = (/turf/closed/wall,/area/toxins/shuttledock) -"bIk" = (/turf/closed/wall/shuttle{icon_state = "swall_s6";dir = 2},/area/shuttle/outpost) -"bIl" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/outpost) -"bIm" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/open/floor/plating,/area/shuttle/outpost) -"bIn" = (/turf/closed/wall/shuttle{icon_state = "swall_s10";dir = 2},/area/shuttle/outpost) -"bIo" = (/obj/machinery/door/poddoor{id = "trash";name = "disposal bay door"},/turf/open/floor/plating,/area/maintenance/disposal) -"bIp" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bIq" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) -"bIr" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bIs" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/quartermaster/storage) -"bIt" = (/turf/open/floor/plasteel{dir = 1;icon_state = "browncorner"},/area/quartermaster/office) -"bIu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office) -"bIv" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bIw" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bIx" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bIy" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{name = "Cargo Desk";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bIz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/quartermaster/office) -"bIB" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bIC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bID" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/hallway/primary/central) -"bIE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/hallway/primary/central) -"bIF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery"},/area/hallway/primary/central) -"bIG" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8;icon_state = "left";name = "Reception Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{base_state = "rightsecure";dir = 4;icon_state = "rightsecure";name = "Head of Personnel's Desk";req_access = null;req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/flasher{id = "hopflash";pixel_x = 0;pixel_y = 28},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bIH" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/heads) -"bII" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bIJ" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bIK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) -"bIL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bIM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) -"bIN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIP" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIQ" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked";locked = 1;req_access_txt = "53"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/nuke_storage) -"bIR" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"bIU" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bIV" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters";dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain) -"bIW" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/matches,/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/item/weapon/razor{pixel_x = -4;pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/turf/open/floor/carpet,/area/crew_quarters/captain) -"bIX" = (/obj/machinery/shower{dir = 4},/obj/item/weapon/soap/deluxe,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "freezerfloor"},/area/crew_quarters/captain) -"bIY" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bIZ" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bJa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bJb" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bJc" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bJd" = (/obj/structure/bed/roller,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Exit Button";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel{tag = "icon-whitebot (WEST)";icon_state = "whitebot";dir = 8},/area/medical/medbay) -"bJe" = (/obj/machinery/status_display,/turf/closed/wall,/area/medical/medbay) -"bJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJg" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJj" = (/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bJl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall,/area/medical/genetics) -"bJm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bJn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/genetics) -"bJo" = (/obj/machinery/computer/cloning,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTH)";icon_state = "whiteblue";dir = 1},/area/medical/genetics) -"bJp" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (NORTHEAST)";icon_state = "whiteblue";dir = 5},/area/medical/genetics) -"bJq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/genetics) -"bJr" = (/obj/machinery/power/apc{dir = 1;name = "Genetics APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/device/radio/headset/headset_medsci,/obj/item/weapon/storage/pill_bottle/mutadone,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bJs" = (/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Genetics";departmentType = 0;name = "Genetics Requests Console";pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bJt" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteblue"},/area/medical/genetics) -"bJu" = (/obj/structure/window/reinforced{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bJv" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bJw" = (/turf/closed/wall/r_wall,/area/medical/genetics) -"bJx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall,/area/assembly/chargebay) -"bJy" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bJz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bJA" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay) -"bJB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bJC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bJD" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/plasteel,/area/assembly/robotics) -"bJF" = (/obj/structure/table,/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/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bJG" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/turf/open/floor/plating,/area/assembly/robotics) -"bJH" = (/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/medical/research{name = "Research Division"}) -"bJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/research{name = "Research Division"}) -"bJJ" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/medical/research{name = "Research Division"}) -"bJK" = (/obj/item/weapon/folder/white,/obj/structure/table,/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bJL" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bJM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bJN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bJO" = (/obj/machinery/light_switch{pixel_x = 0;pixel_y = -23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bJP" = (/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Research Division Delivery";req_access_txt = "47"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/toxins/lab) -"bJQ" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Research Division"},/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/lab) -"bJR" = (/turf/closed/wall/r_wall,/area/toxins/explab) -"bJS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bJT" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bJU" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bJV" = (/obj/machinery/power/apc{dir = 1;name = "Science Outpost Dock APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bJW" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/toxins/shuttledock) -"bJX" = (/turf/closed/wall/shuttle{icon_state = "swall3";dir = 2},/area/shuttle/outpost) -"bJY" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) -"bJZ" = (/obj/machinery/computer/shuttle/outpost,/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) -"bKa" = (/obj/docking_port/stationary{dir = 2;dwidth = 11;height = 22;id = "whiteship_ss13";name = "SS13 Arrival Docking";width = 35},/turf/open/space,/area/space) -"bKb" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bKc" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"bKd" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) -"bKe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/quartermaster/storage) -"bKf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bKg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bKh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bKi" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bKj" = (/obj/machinery/autolathe,/obj/machinery/light_switch{pixel_x = -27},/turf/open/floor/plasteel,/area/quartermaster/office) -"bKk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bKl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bKm" = (/obj/machinery/computer/cargo,/turf/open/floor/plasteel,/area/quartermaster/office) -"bKn" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/quartermaster/office) -"bKo" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"bKp" = (/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/central) -"bKq" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"bKr" = (/turf/open/floor/plasteel{icon_state = "bot"},/area/hallway/primary/central) -"bKs" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) -"bKt" = (/obj/machinery/computer/card,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/crew_quarters/heads) -"bKu" = (/turf/open/floor/carpet,/area/crew_quarters/heads) -"bKv" = (/obj/machinery/hologram/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads) -"bKw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) -"bKx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "Vault Access";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/nuke_storage) -"bKy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) -"bKz" = (/turf/closed/wall/r_wall,/area/teleporter) -"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/teleporter) -"bKB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/teleporter) -"bKC" = (/obj/machinery/door/airlock/maintenance{name = "Teleporter Maintenance";req_access_txt = "17"},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/teleporter) -"bKD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bKE" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bKF" = (/turf/closed/wall,/area/medical/chemistry) -"bKG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Chemistry Lab";req_access_txt = "5; 33"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/chemistry) -"bKH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/chemistry) -"bKI" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{dir = 1;name = "Chemistry Desk";req_access_txt = "33"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/medical/chemistry) -"bKJ" = (/obj/structure/bed/roller,/turf/open/floor/plasteel{tag = "icon-whitebot (WEST)";icon_state = "whitebot";dir = 8},/area/medical/medbay) -"bKK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKM" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bKQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor2";name = "Genetics";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKT" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKU" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKW" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bKX" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteblue"},/area/medical/genetics) -"bKY" = (/turf/open/floor/plasteel,/area/medical/genetics) -"bKZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 14},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"bLa" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance";req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/chargebay) -"bLb" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bLc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bLd" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bLe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay) -"bLf" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/assembly/robotics) -"bLh" = (/obj/machinery/button/door{dir = 2;id = "robotics2";name = "Shutters Control Button";pixel_x = 24;pixel_y = -24;req_access_txt = "29"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bLi" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Robotics Desk";req_access_txt = "29"},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/assembly/robotics) -"bLj" = (/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bLk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bLl" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/lab) -"bLm" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bLn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/shutters/preopen{id = "rnd2";name = "research lab shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/lab) -"bLo" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 6},/turf/open/floor/plasteel{dir = 2;icon_state = "whitecorner"},/area/toxins/explab) -"bLp" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/camera{c_tag = "Experimentor Lab";dir = 2;network = list("SS13","RD")},/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) -"bLq" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) -"bLr" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/toxins/explab) -"bLs" = (/obj/structure/closet/emcloset{pixel_x = -2},/turf/open/floor/plasteel{dir = 8;icon_state = "whitecorner"},/area/toxins/explab) -"bLv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bLw" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bLx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bLy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/shuttledock) -"bLz" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/outpost) -"bLA" = (/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) -"bLB" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/outpost) -"bLC" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock";req_access_txt = "31"},/turf/open/floor/plating,/area/quartermaster/storage) -"bLD" = (/turf/open/floor/plating,/area/quartermaster/storage) -"bLE" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/storage) -"bLF" = (/turf/open/floor/plasteel{icon_state = "delivery"},/area/quartermaster/storage) -"bLG" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400;home_destination = "QM #1";suffix = "#1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bLH" = (/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/item/device/multitool,/obj/machinery/camera{c_tag = "Cargo Office";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/office) -"bLI" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel,/area/quartermaster/office) -"bLJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLK" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = -32},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/shutters/preopen{id = "hop";layer = 2.9;name = "Privacy Shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/heads) -"bLL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bLM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/carpet,/area/crew_quarters/heads) -"bLN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads) -"bLO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bLP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) -"bLQ" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/ai_monitored/nuke_storage) -"bLR" = (/turf/closed/wall,/area/teleporter) -"bLS" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/structure/table,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/teleporter) -"bLT" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) -"bLU" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/obj/structure/closet/crate,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bLV" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bLW" = (/obj/machinery/camera{c_tag = "Teleporter"},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/teleporter) -"bLX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/teleporter) -"bLY" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/teleporter) -"bLZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) -"bMa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bMb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bMc" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/clothing/tie/stethoscope,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whiteyellowcorner"},/area/medical/medbay) -"bMd" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) -"bMe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) -"bMf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellow"},/area/medical/medbay) -"bMg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "whiteyellowcorner"},/area/medical/medbay) -"bMh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay West";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMn" = (/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"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bMo" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/genetics) -"bMp" = (/obj/structure/table/glass,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors.";id = "GeneticsDoor2";name = "Genetics Exit Button";normaldoorcontrol = 1;pixel_x = -6;pixel_y = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bMq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bMr" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel{dir = 6;icon_state = "whiteblue"},/area/medical/genetics) -"bMs" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bMt" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bMu" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bMv" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/assembly/chargebay) -"bMw" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "bot"},/area/assembly/chargebay) -"bMx" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 4},/area/assembly/robotics) -"bMy" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bMz" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bMB" = (/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/assembly/robotics) -"bMD" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bME" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bMF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bMG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bMH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Division North";dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bMI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bMJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bMK" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bML" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bMM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bMN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/explab) -"bMO" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMP" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Research Shuttle";req_access_txt = "7"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bMU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)";icon_state = "pipe-j2";dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) -"bMW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bMX" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bMY" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/toxins/shuttledock) -"bMZ" = (/turf/open/floor/plating,/area/toxins/shuttledock) -"bNa" = (/obj/machinery/door/airlock/shuttle{req_access_txt = "7"},/turf/open/floor/plating,/area/shuttle/outpost) -"bNb" = (/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "outpost_home";name = "outpost shuttle bay";width = 7},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "outpost";name = "outpost shuttle";port_angle = 90;width = 7},/turf/closed/wall/shuttle{icon_state = "swall3"},/area/shuttle/outpost) -"bNc" = (/obj/machinery/camera{c_tag = "Cargo Recieving Dock";dir = 4},/obj/machinery/button/door{id = "QMLoaddoor";layer = 4;name = "Loading Doors";pixel_x = -24;pixel_y = -8},/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";layer = 4;name = "Loading Doors";pixel_x = -24;pixel_y = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/quartermaster/storage) -"bNd" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2";suffix = "#2"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bNe" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel,/area/quartermaster/office) -"bNf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bNj" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"bNk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bNl" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel{dir = 9;icon_state = "blue"},/area/crew_quarters/heads) -"bNm" = (/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bNn" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/coin/gold,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bNo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bNp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bNq" = (/turf/closed/wall,/area/ai_monitored/nuke_storage) -"bNr" = (/obj/structure/closet/secure_closet/security,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/ai_monitored/nuke_storage) -"bNs" = (/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/ai_monitored/nuke_storage) -"bNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/ai_monitored/nuke_storage) -"bNu" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bNv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/ai_monitored/nuke_storage) -"bNw" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/ai_monitored/nuke_storage) -"bNx" = (/obj/machinery/computer/security,/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/ai_monitored/nuke_storage) -"bNy" = (/obj/machinery/power/apc{dir = 8;name = "Teleporter APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/teleporter) -"bNz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/teleporter) -"bNA" = (/obj/machinery/hologram/holopad,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bNB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel,/area/teleporter) -"bNC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bND" = (/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"},/turf/open/floor/plasteel,/area/teleporter) -"bNE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access";req_access_txt = "17"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/teleporter) -"bNF" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) -"bNG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bNH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"bNI" = (/obj/structure/table,/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNJ" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNL" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNS" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNT" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bNU" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/medical_cloning,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bNV" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bNW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bNX" = (/obj/structure/chair/withwheels/office/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bNY" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel{dir = 5;icon_state = "whiteblue"},/area/medical/genetics) -"bNZ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/westleft{dir = 2;name = "Monkey Pen";req_access_txt = "9"},/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bOa" = (/obj/structure/window/reinforced,/mob/living/carbon/monkey,/turf/open/floor/plasteel,/area/medical/genetics) -"bOb" = (/turf/closed/wall/r_wall,/area/assembly/chargebay) -"bOc" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2";name = "robotics lab shutters"},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/assembly/robotics) -"bOd" = (/obj/machinery/door/airlock/research{name = "Robotics Lab";req_access_txt = "29";req_one_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "white"},/area/assembly/robotics) -"bOe" = (/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bOf" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOg" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bOh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOj" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOk" = (/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bOm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Experimentation Lab";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOp" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOr" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOs" = (/obj/machinery/power/apc{dir = 4;name = "Experimentation Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bOt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/explab) -"bOw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bOx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"bOy" = (/obj/machinery/computer/shuttle/outpost,/turf/open/floor/plasteel/white,/area/toxins/shuttledock) -"bOz" = (/obj/docking_port/stationary{dir = 8;dwidth = 5;height = 7;id = "supply_home";name = "supply bay";width = 12},/turf/open/space,/area/space) -"bOA" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bOB" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #3"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bOC" = (/obj/structure/table,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"bOD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bOE" = (/obj/structure/chair{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office) -"bOF" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "bot"},/area/hallway/primary/central) -"bOG" = (/obj/machinery/keycard_auth{pixel_x = -24;pixel_y = 0},/obj/machinery/computer/cargo,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/crew_quarters/heads) -"bOH" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bOI" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/hop,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bOJ" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bOL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bOM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bON" = (/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bOO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bOP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bOQ" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/ai_monitored/nuke_storage) -"bOR" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/teleporter) -"bOS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warning"},/area/teleporter) -"bOT" = (/turf/open/floor/plasteel{icon_state = "warning"},/area/teleporter) -"bOU" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/teleporter) -"bOV" = (/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{icon_state = "bot"},/area/teleporter) -"bOW" = (/obj/machinery/shieldwallgen,/turf/open/floor/plasteel{icon_state = "bot"},/area/teleporter) -"bOX" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/teleporter) -"bOY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "blue";dir = 8},/area/hallway/primary/central) -"bOZ" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = -30;pixel_y = 0;pixel_z = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bPa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bPb" = (/obj/machinery/vending/medical{pixel_x = -2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bPc" = (/turf/closed/wall,/area/medical/sleeper) -"bPd" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/sleeper) -"bPe" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bPf" = (/obj/machinery/door/firedoor,/obj/machinery/camera{c_tag = "Medbay Hallway";dir = 4;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bPg" = (/obj/structure/table/glass,/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPh" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPj" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/disks{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/disks,/obj/item/device/radio/headset/headset_medsci,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPk" = (/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 12},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPl" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bPm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"}) -"bPn" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) -"bPo" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) -"bPp" = (/obj/machinery/camera{c_tag = "Research Division West";dir = 2;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bPq" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bPs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bPt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bPu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bPv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bPw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bPx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bPy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/hor) -"bPz" = (/turf/closed/wall,/area/crew_quarters/hor) -"bPA" = (/obj/machinery/light_switch{pixel_x = -20;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bPB" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bPC" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bPD" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bPE" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/explab) -"bPF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bPG" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoaddoor";name = "supply dock loading door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bPH" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bPI" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) -"bPJ" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/obj/machinery/light,/obj/machinery/status_display{density = 0;pixel_y = -30;supply_display = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/quartermaster/storage) -"bPK" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/quartermaster/storage) -"bPL" = (/obj/machinery/camera{c_tag = "Cargo Bay South";dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bPM" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "QM #4"},/turf/open/floor/plasteel{icon_state = "bot"},/area/quartermaster/storage) -"bPN" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 6;pixel_y = -5},/turf/open/floor/plasteel,/area/quartermaster/office) -"bPO" = (/obj/machinery/light,/obj/machinery/power/apc{dir = 2;name = "Cargo Office APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "browncorner"},/area/quartermaster/office) -"bPP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bPQ" = (/obj/structure/closet/crate,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/quartermaster/office) -"bPR" = (/turf/closed/wall,/area/security/checkpoint/supply) -"bPS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/supply) -"bPU" = (/obj/machinery/camera{c_tag = "Cargo Bay Entrance";dir = 4;network = list("SS13")},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bPV" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/hallway/primary/central) -"bPW" = (/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/obj/structure/closet/secure_closet/hop,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/crew_quarters/heads) -"bPX" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Personnel's Desk";departmentType = 5;name = "Head of Personnel RC";pixel_y = -30},/obj/machinery/camera{c_tag = "Head of Personnel's Office";dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bPY" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bPZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bQa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bQc" = (/obj/machinery/button/door{id = "vaultshut";name = "Vault Shutters Control";pixel_x = -25;pixel_y = -25;req_access_txt = "1"},/turf/open/floor/plasteel{dir = 8;icon_state = "redcorner"},/area/ai_monitored/nuke_storage) -"bQd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bQe" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/withwheels/office/dark,/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bQg" = (/turf/open/floor/plasteel{dir = 2;icon_state = "redcorner"},/area/ai_monitored/nuke_storage) -"bQh" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/ai_monitored/nuke_storage) -"bQi" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/teleporter) -"bQj" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/teleporter) -"bQk" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter) -"bQl" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/teleporter) -"bQm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQn" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/medbay) -"bQo" = (/obj/machinery/door/window/eastleft{name = "Medical Delivery";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/medical/medbay) -"bQp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bQq" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bQr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bQs" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bQt" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bQu" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitehall"},/area/medical/sleeper) -"bQv" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bQw" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/medical/sleeper) -"bQx" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7;pixel_y = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bQy" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/turf/open/floor/plasteel,/area/medical/sleeper) -"bQz" = (/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Medbay Cryogenics";dir = 2;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel,/area/medical/sleeper) -"bQA" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/bodybags{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQB" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitepurple"},/area/medical/genetics) -"bQF" = (/obj/machinery/door/airlock/research{name = "Genetics Research";req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQG" = (/obj/structure/disposalpipe/sortjunction{sortType = 23},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQH" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bQI" = (/obj/machinery/door/airlock/research{name = "Genetics Research Access";req_access_txt = "47"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "bot"},/area/medical/research{name = "Research Division"}) -"bQK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/research{name = "Research Division"}) -"bQL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bQS" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bQT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bQU" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/rd{pixel_x = 3;pixel_y = -2},/obj/item/weapon/disk/tech_disk/gooncode,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bQV" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office.";name = "Research Monitor";network = list("RD");pixel_x = 0;pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bQW" = (/obj/machinery/computer/aifixer,/obj/machinery/requests_console{announcementConsole = 1;department = "Research Director's Desk";departmentType = 5;name = "Research Director RC";pixel_x = -2;pixel_y = 30},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bQX" = (/obj/structure/rack,/obj/item/weapon/circuitboard/aicore{pixel_x = -2;pixel_y = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bQY" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/crew_quarters/hor) -"bQZ" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/crew_quarters/hor) -"bRa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/explab) -"bRb" = (/turf/closed/wall,/area/toxins/explab) -"bRc" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/turf/open/floor/plasteel{dir = 4;icon_state = "whitecorner"},/area/toxins/explab) -"bRd" = (/obj/machinery/computer/rdconsole/experiment,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/toxins/explab) -"bRe" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel{dir = 1;icon_state = "whitecorner"},/area/toxins/explab) -"bRf" = (/obj/machinery/button/door{id = "telelab";name = "Test Chamber Blast Doors";pixel_x = 25;pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/explab) -"bRg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRh" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRi" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bRk" = (/turf/closed/wall/shuttle{icon_state = "swall_s5";dir = 2},/area/shuttle/outpost) -"bRm" = (/turf/closed/wall/shuttle{icon_state = "swall_s9";dir = 2},/area/shuttle/outpost) -"bRn" = (/turf/closed/wall,/area/quartermaster/qm) -"bRo" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bRp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/qm) -"bRq" = (/turf/closed/wall,/area/quartermaster/miningdock) -"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/miningdock) -"bRs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{req_access_txt = "48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bRt" = (/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/supply) -"bRv" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/supply) -"bRw" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/supply) -"bRx" = (/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/heads) -"bRz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/turf/open/floor/plating,/area/ai_monitored/nuke_storage) -"bRB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bRC" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "vaultshut";layer = 2.9;name = "Vault Shutters"},/obj/machinery/door/window/eastright{dir = 2;name = "Vault Access";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red,/area/ai_monitored/nuke_storage) -"bRD" = (/obj/machinery/camera{c_tag = "Central Hallway South-East";dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/sleeper) -"bRF" = (/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Surgery Observation";req_access_txt = "0"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bRG" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bRH" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bRI" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "delivery"},/area/medical/sleeper) -"bRJ" = (/turf/open/floor/plasteel,/area/medical/sleeper) -"bRK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel,/area/medical/sleeper) -"bRL" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/medical/sleeper) -"bRM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plasteel,/area/medical/sleeper) -"bRN" = (/obj/machinery/door/airlock/glass_medical{id_tag = "GeneticsDoor";name = "Genetics";req_access_txt = "5"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair,/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRP" = (/obj/machinery/door/airlock/glass_research{name = "Genetics Research";req_access_txt = "5; 9"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRS" = (/obj/machinery/camera{c_tag = "Genetics Research";dir = 1;network = list("SS13","RD");pixel_x = 0},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitepurple"},/area/medical/genetics) -"bRT" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/genetics) -"bRU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRV" = (/obj/machinery/camera{c_tag = "Genetics Access";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bRW" = (/turf/closed/wall/r_wall,/area/toxins/server) -"bRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room";req_access = null;req_access_txt = "30"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bRY" = (/turf/closed/wall,/area/security/checkpoint/science) -"bSa" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/security/checkpoint/science) -"bSb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) -"bSc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/science) -"bSd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bSe" = (/obj/structure/table,/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -5;pixel_y = 5;req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2";name = "Research Lab Shutter Control";pixel_x = 5;pixel_y = 5;req_access_txt = "47"},/obj/item/weapon/coin/uranium,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bSf" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bSg" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bSh" = (/obj/structure/rack,/obj/item/device/aicard,/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bSi" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "white"},/area/crew_quarters/hor) -"bSj" = (/obj/structure/displaycase/labcage,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bSk" = (/turf/closed/wall/r_wall,/area/crew_quarters/hor) -"bSl" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) -"bSm" = (/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/engine,/area/toxins/explab) -"bSn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bSo" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bSp" = (/obj/structure/table,/obj/item/weapon/cartridge/quartermaster{pixel_x = 6;pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4;pixel_y = 7},/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/item/weapon/coin/silver,/turf/open/floor/plasteel{dir = 9;icon_state = "brown"},/area/quartermaster/qm) -"bSq" = (/obj/machinery/power/apc{dir = 1;name = "Quartermaster APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) -"bSr" = (/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) -"bSs" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) -"bSt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel{dir = 1;icon_state = "brown"},/area/quartermaster/qm) -"bSu" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{dir = 5;icon_state = "brown"},/area/quartermaster/qm) -"bSv" = (/obj/machinery/power/apc{dir = 1;name = "Mining Dock APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bSw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bSx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bSy" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bSz" = (/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/supply) -"bSC" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/computer/security/mining,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/supply) -"bSD" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bSE" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"bSF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"bSG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "blue"},/area/hallway/primary/central) -"bSI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/hallway/primary/central) -"bSJ" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) -"bSK" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) -"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/hallway/primary/central) -"bSM" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/hallway/primary/central) -"bSN" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bSO" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bSP" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bSQ" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Surgery Observation"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bSR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bSS" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bST" = (/obj/structure/chair,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bSU" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Medbay Treatment Center";dir = 4;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bSV" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bSW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/medical/sleeper) -"bSX" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bSY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/medical/sleeper) -"bSZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bTa" = (/obj/machinery/light,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors.";id = "GeneticsDoor";name = "Genetics Exit Button";normaldoorcontrol = 1;pixel_x = -24;pixel_y = 3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bTb" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side,/area/medical/genetics) -"bTc" = (/obj/machinery/computer/cloning,/turf/open/floor/plasteel/whiteblue/side,/area/medical/genetics) -"bTd" = (/obj/machinery/clonepod,/turf/open/floor/plasteel/whiteblue/side{tag = "icon-whiteblue (SOUTHEAST)";icon_state = "whiteblue";dir = 6},/area/medical/genetics) -"bTe" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/medical/genetics) -"bTf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bTg" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bTh" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bTi" = (/obj/structure/closet/wardrobe/genetics_white,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/genetics) -"bTj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/asmaint) -"bTk" = (/obj/machinery/r_n_d/server/robotics,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bTl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 140;on = 1;pressure_checks = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bTm" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 32},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) -"bTn" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bTo" = (/obj/machinery/camera{c_tag = "Server Room";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/power/apc{dir = 1;name = "Server Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bTp" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 2;on = 1},/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bTq" = (/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = -30;pixel_y = 0},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/science) -"bTs" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) -"bTt" = (/obj/structure/table,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of your own office.";name = "Research Monitor";network = list("RD");pixel_x = 0;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/science) -"bTu" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/science) -"bTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bTw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/hor) -"bTx" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/pen/blue,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bTy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bTz" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bTA" = (/obj/structure/rack,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bTB" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bTC" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/crew_quarters/hor) -"bTD" = (/turf/open/floor/engine,/area/toxins/explab) -"bTE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bTF" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bTG" = (/turf/open/floor/plating,/area/maintenance/asmaint2) -"bTH" = (/obj/machinery/computer/cargo,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/qm) -"bTI" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bTJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bTK" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start{name = "Quartermaster"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bTL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bTM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "brown"},/area/quartermaster/qm) -"bTN" = (/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bTO" = (/obj/structure/disposalpipe/segment{dir = 4},/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/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bTQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 3},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bTR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bTS" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bTT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/supply) -"bUa" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=CHE";location = "AIE"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HOP";location = "CHE"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUh" = (/obj/structure/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bUi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bUj" = (/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bUk" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/medical/sleeper) -"bUl" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bUm" = (/obj/machinery/light,/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bUn" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) -"bUo" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench{pixel_x = 5;pixel_y = -5},/obj/machinery/cell_charger,/turf/open/floor/plasteel,/area/medical/sleeper) -"bUp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/medical/sleeper) -"bUq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/medical/sleeper) -"bUr" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plasteel,/area/medical/sleeper) -"bUs" = (/turf/open/floor/plating,/area/maintenance/asmaint) -"bUt" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bUu" = (/obj/machinery/airalarm/server{dir = 4;pixel_x = -22;pixel_y = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/bluegrid{icon_state = "dark";name = "Server Walkway";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bUv" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/bluegrid{icon_state = "dark";name = "Server Walkway";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Room";req_access_txt = "30"},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bUx" = (/obj/machinery/atmospherics/pipe/manifold{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bUy" = (/obj/structure/chair/withwheels/office/light,/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bUz" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bUA" = (/obj/machinery/camera{c_tag = "Security Post - Science";dir = 4;network = list("SS13","RD")},/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/science) -"bUC" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bUD" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bUE" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/science) -"bUF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bUG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bUH" = (/obj/machinery/door/airlock/glass_command{name = "Research Director";req_access_txt = "30"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUI" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUL" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUM" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bUN" = (/obj/machinery/r_n_d/experimentor,/turf/open/floor/engine,/area/toxins/explab) -"bUO" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine,/area/toxins/explab) -"bUP" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bUQ" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Quartermaster's Office";dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/status_display{density = 0;pixel_x = -32;pixel_y = 0;supply_display = 1},/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/quartermaster/qm) -"bUR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) -"bUS" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) -"bUT" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) -"bUU" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "brown"},/area/quartermaster/qm) -"bUV" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "brown"},/area/quartermaster/qm) -"bUW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/qm) -"bUX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bUY" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bUZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bVa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) -"bVb" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/supply) -"bVd" = (/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/supply) -"bVe" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/obj/machinery/newscaster{hitstaken = 1;pixel_x = 0;pixel_y = -32},/obj/machinery/camera{c_tag = "Security Post - Cargo";dir = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/supply) -"bVf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "browncorner"},/area/hallway/primary/central) -"bVg" = (/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"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVh" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVi" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/camera{c_tag = "Central Primary Hallway South-West";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVj" = (/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;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVl" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVm" = (/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVo" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = -32;pixel_y = -40},/obj/structure/sign/directions/medical{dir = 4;icon_state = "direction_med";pixel_x = -32;pixel_y = -24;tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/evac{dir = 4;icon_state = "direction_evac";pixel_x = -32;pixel_y = -32;tag = "icon-direction_evac (EAST)"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway South";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVu" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVv" = (/obj/structure/extinguisher_cabinet{pixel_x = 5;pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVw" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVx" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVA" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) -"bVB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) -"bVC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) -"bVD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "surgery";name = "Surgery Shutters"},/turf/open/floor/plating,/area/medical/sleeper) -"bVE" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Recovery Room";req_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bVF" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bVG" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/pen,/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 0;pixel_y = 30;pixel_z = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bVH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bVI" = (/turf/closed/wall,/area/medical/cmo) -"bVJ" = (/obj/machinery/suit_storage_unit/cmo,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bVK" = (/obj/machinery/computer/crew,/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Medical Officer's Desk";departmentType = 5;name = "Chief Medical Officer RC";pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bVL" = (/obj/machinery/computer/med_data,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bVM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"bVO" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"bVP" = (/obj/machinery/r_n_d/server/core,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bVQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "o2=0;n2=500;TEMP=80"},/area/toxins/server) -"bVR" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = -32},/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server) -"bVS" = (/obj/machinery/atmospherics/pipe/simple{dir = 9},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bVT" = (/obj/machinery/computer/rdservercontrol,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bVU" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "dark"},/area/toxins/server) -"bVV" = (/obj/item/device/radio/intercom{pixel_x = -25},/obj/structure/filingcabinet,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/science) -"bVX" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) -"bVY" = (/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/science) -"bVZ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/science) -"bWa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bWb" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bWc" = (/obj/machinery/power/apc{dir = 8;name = "RD Office APC";pixel_x = -25},/obj/structure/cable,/obj/machinery/light_switch{pixel_y = -23},/obj/item/weapon/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWd" = (/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/obj/machinery/light,/obj/machinery/computer/card/minor/rd,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWe" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4;pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4;pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office";dir = 1;network = list("SS13","RD")},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWf" = (/obj/structure/closet/secure_closet/RD,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWg" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWh" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel{icon_state = "cafeteria"},/area/crew_quarters/hor) -"bWi" = (/obj/machinery/camera{c_tag = "Experimentor Lab Chamber";dir = 1;network = list("SS13","RD")},/obj/machinery/light,/obj/structure/sign/nosmoking_2{pixel_y = -32},/turf/open/floor/engine,/area/toxins/explab) -"bWj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bWk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bWl" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bWm" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bWn" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"bWo" = (/turf/closed/wall,/area/maintenance/aft) -"bWp" = (/turf/closed/wall,/area/storage/tech) -"bWq" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/central) -"bWs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/central) -"bWt" = (/turf/closed/wall,/area/janitor) -"bWu" = (/obj/machinery/door/airlock{name = "Custodial Closet";req_access_txt = "26"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) -"bWv" = (/turf/closed/wall,/area/maintenance/asmaint) -"bWw" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"bWx" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "dark"},/area/hallway/primary/central) -"bWy" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/weapon/surgicaldrill,/turf/open/floor/plasteel,/area/medical/sleeper) -"bWz" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/sleeper) -"bWA" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWB" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/open/floor/plasteel{icon_state = "whitehall";dir = 2},/area/medical/sleeper) -"bWC" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/turf/open/floor/plasteel,/area/medical/sleeper) -"bWD" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/gun/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "whitebluecorner"},/area/medical/sleeper) -"bWF" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWG" = (/obj/structure/closet/wardrobe/white/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWH" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWI" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/camera{c_tag = "Medbay Storage";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWJ" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/rxglasses,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWK" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/bin,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bWL" = (/turf/open/floor/plasteel{dir = 8;icon_state = "whitebluecorner"},/area/medical/medbay) -"bWM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/cmo) -"bWN" = (/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bWO" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bWP" = (/obj/machinery/keycard_auth{pixel_x = 24;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bWQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"bWR" = (/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"bWS" = (/turf/closed/wall,/area/toxins/storage) -"bWT" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bWU" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bWV" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bWW" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bWX" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bWY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 32},/turf/open/space,/area/space) -"bWZ" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining";departmentType = 0;pixel_x = -30;pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bXb" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bXc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bXd" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance";req_access_txt = "48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) -"bXe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1;name = "Cargo Security APC";pixel_x = 1;pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) -"bXg" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bXi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bXk" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) -"bXl" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/turf/open/floor/plating,/area/storage/tech) -"bXm" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plating,/area/storage/tech) -"bXn" = (/obj/machinery/camera{c_tag = "Tech Storage";dir = 2},/obj/machinery/power/apc{dir = 1;name = "Tech Storage APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/storage/tech) -"bXo" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/tech) -"bXp" = (/obj/structure/table,/obj/item/device/plant_analyzer,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/storage/tech) -"bXq" = (/turf/open/floor/plating,/area/storage/tech) -"bXr" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"bXt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"bXu" = (/obj/structure/closet/jcloset,/turf/open/floor/plasteel,/area/janitor) -"bXv" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel,/area/janitor) -"bXw" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/vehicle/janicart,/turf/open/floor/plasteel,/area/janitor) -"bXx" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/janitor) -"bXy" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) -"bXz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/janitor) -"bXA" = (/turf/open/floor/plasteel,/area/janitor) -"bXB" = (/obj/machinery/door/window/westleft{name = "Janitoral Delivery";req_access_txt = "26"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/janitor) -"bXC" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";freq = 1400;location = "Janitor"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/janitor) -"bXD" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bXE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bXF" = (/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/button/door{id = "surgery";name = "Surgery Shutter Control";pixel_x = -25;req_one_access_txt = "5"},/turf/open/floor/plasteel{dir = 4;icon_state = "whitehall"},/area/medical/sleeper) -"bXG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXH" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXJ" = (/obj/structure/table,/obj/item/weapon/surgical_drapes,/obj/item/weapon/razor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitehall"},/area/medical/sleeper) -"bXK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bXL" = (/obj/structure/table,/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitebluecorner"},/area/medical/sleeper) -"bXM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "whiteblue"},/area/medical/sleeper) -"bXO" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXR" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "45"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bXS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/medbay) -"bXT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bXU" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bXV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bXW" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/coin/silver,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bXX" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/stamp/cmo,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bXY" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/tie/stethoscope,/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bXZ" = (/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{pixel_x = 25},/obj/machinery/camera{c_tag = "Chief Medical Office";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bYa" = (/turf/open/floor/engine,/area/toxins/xenobiology) -"bYb" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber";dir = 2;network = list("Xeno","RD");pixel_x = 0},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) -"bYc" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/storage) -"bYd" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/storage) -"bYe" = (/obj/machinery/power/apc{dir = 8;name = "Misc Research APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bYf" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bYg" = (/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"bYh" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bYi" = (/turf/closed/wall,/area/toxins/mixing) -"bYj" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/plasmaresearch,/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYl" = (/obj/machinery/portable_atmospherics/canister,/obj/structure/window/reinforced{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/camera{c_tag = "Toxins Lab West";dir = 2;network = list("SS13","RD");pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYm" = (/obj/machinery/portable_atmospherics/canister,/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{frequency = 1439;locked = 0;pixel_y = 23},/obj/item/weapon/storage/firstaid/toxin,/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYo" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "warnwhite"},/area/toxins/mixing) -"bYp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/toxins/mixing) -"bYq" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/mixing) -"bYr" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/toxins/mixing) -"bYs" = (/turf/closed/wall/r_wall,/area/toxins/mixing) -"bYt" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4;name = "4maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bYu" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bYv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bYw" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"bYx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/mixing) -"bYy" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/labor) -"bYz" = (/obj/machinery/computer/security/mining,/obj/machinery/camera{c_tag = "Mining Dock";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bYA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bYB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bYC" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/wardrobe/miner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bYD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/quartermaster/miningdock) -"bYE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYF" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYG" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 15},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bYH" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"bYI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/maintenance/aft) -"bYJ" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bYK" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bYL" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bYM" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"bYN" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/open/floor/plating,/area/storage/tech) -"bYO" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/storage/tech) -"bYP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) -"bYQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"bYR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bYS" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"bYT" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Janitor"},/turf/open/floor/plasteel,/area/janitor) -"bYU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/janitor) -"bYV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/janitor) -"bYW" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor) -"bYX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bYY" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor) -"bYZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/power/apc{dir = 8;name = "Custodial Closet APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/janitor) -"bZa" = (/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZb" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 6},/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZc" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"bZd" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZe" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"bZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) -"bZg" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZi" = (/obj/structure/table/optable,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre";req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/medical/sleeper) -"bZm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whiteblue"},/area/medical/sleeper) -"bZn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZo" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitebluecorner"},/area/medical/sleeper) -"bZp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bZq" = (/obj/structure/table,/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/clothing/tie/stethoscope,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZr" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZs" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"bZt" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = -30;pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay South";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bZu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"bZv" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bZw" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bZx" = (/obj/structure/disposalpipe/segment,/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"bZy" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bZz" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bZA" = (/obj/effect/decal/cleanable/oil,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bZB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bZC" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"bZD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/storage) -"bZE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"bZF" = (/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"bZG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing) -"bZH" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"bZI" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"bZJ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"bZK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"bZL" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"bZM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/asmaint2) -"bZN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/mixing) -"bZO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/toxins/mixing) -"bZP" = (/obj/machinery/doppler_array{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/mixing) -"bZQ" = (/turf/closed/indestructible,/area/toxins/test_area) -"bZR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/toxins/test_area) -"bZS" = (/obj/structure/table,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"bZT" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"bZU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock) -"bZV" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/plasteel{dir = 9;icon_state = "brown"},/area/quartermaster/miningdock) -"bZW" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bZX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bZY" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bZZ" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"caa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cab" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"cac" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"cad" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/borgupload{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/aiupload{pixel_x = 2;pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tech) -"cae" = (/obj/machinery/camera{c_tag = "Secure Tech Storage";dir = 2},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) -"caf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/storage/tech) -"cag" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) -"cah" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/pandemic{pixel_x = -3;pixel_y = 3},/obj/item/weapon/circuitboard/computer/rdconsole,/obj/item/weapon/circuitboard/machine/rdserver{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/destructive_analyzer,/obj/item/weapon/circuitboard/machine/protolathe,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/circuitboard/computer/aifixer,/obj/item/weapon/circuitboard/computer/teleporter,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/obj/item/weapon/circuitboard/machine/mechfab,/turf/open/floor/plating,/area/storage/tech) -"cai" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/mining,/obj/item/weapon/circuitboard/machine/autolathe{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/computer/arcade/battle,/turf/open/floor/plating,/area/storage/tech) -"caj" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/processor,/obj/item/weapon/circuitboard/machine/telecomms/receiver,/obj/item/weapon/circuitboard/machine/telecomms/server,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/item/weapon/circuitboard/computer/message_monitor{pixel_y = -5},/turf/open/floor/plating,/area/storage/tech) -"cak" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cal" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/key/janitor,/turf/open/floor/plasteel,/area/janitor) -"cam" = (/obj/structure/table,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_y = -29},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) -"can" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/janitor) -"cao" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel,/area/janitor) -"cap" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/janitor) -"caq" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/janitor) -"car" = (/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/open/floor/plating,/area/maintenance/asmaint) -"cas" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cat" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"cau" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"cav" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4;name = "Treatment Center APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper) -"caw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitehall"},/area/medical/sleeper) -"cax" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cay" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"caz" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{dir = 1;icon_state = "whitebluecorner"},/area/medical/sleeper) -"caA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"caB" = (/obj/machinery/vending/wallmed{pixel_x = 28;pixel_y = 0},/obj/machinery/camera{c_tag = "Medbay Recovery Room";dir = 8;network = list("SS13")},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"caC" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/weapon/gun/syringe,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"caE" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caF" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caG" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv4";name = "Privacy Shutters";pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caH" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv4";name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"caI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"caL" = (/obj/machinery/door/airlock/glass_command{name = "Chief Medical Officer";req_access_txt = "40"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"caM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"caN" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"caO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"caP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/cmo) -"caQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"caR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"caS" = (/obj/machinery/power/apc{dir = 8;name = "Toxins Storage APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Toxins Storage";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/mob/living/simple_animal/mouse,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/door/airlock/research{name = "Toxins Storage";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"caY" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"caZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cba" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"cbb" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab";req_access_txt = "8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cbc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cbd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cbe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) -"cbf" = (/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/toxins/mixing) -"cbg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/toxins/mixing) -"cbh" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/mixing) -"cbi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/closed/wall,/area/toxins/mixing) -"cbj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing) -"cbk" = (/obj/machinery/button/massdriver{dir = 2;id = "toxinsdriver";pixel_y = 24},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/toxins/mixing) -"cbl" = (/obj/structure/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber.";dir = 8;layer = 4;name = "Test Chamber Telescreen";network = list("Toxins");pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/mixing) -"cbm" = (/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/toxins/test_area) -"cbn" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"cbo" = (/obj/item/weapon/ore/iron,/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/quartermaster/miningdock) -"cbp" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/quartermaster/miningdock) -"cbq" = (/turf/open/floor/plasteel{dir = 8;icon_state = "brown"},/area/quartermaster/miningdock) -"cbs" = (/obj/machinery/light/small{dir = 1},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) -"cbt" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft) -"cbu" = (/turf/open/floor/plating,/area/maintenance/aft) -"cbv" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/crew{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/card{pixel_x = 2;pixel_y = -2},/obj/item/weapon/circuitboard/computer/communications{pixel_x = 5;pixel_y = -5},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/storage/tech) -"cbw" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/storage/tech) -"cbx" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage";req_access_txt = "19;23"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) -"cby" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/storage/tech) -"cbz" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/storage/tech) -"cbA" = (/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},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/storage/tech) -"cbB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"cbC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"cbD" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage";req_access_txt = "23"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"cbE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cbG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cbH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/janitor) -"cbI" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance";req_access_txt = "26"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/janitor) -"cbJ" = (/obj/machinery/power/apc{dir = 8;name = "Medbay Maintenance APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/maintenance/asmaint) -"cbK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cbL" = (/obj/structure/grille,/obj/structure/window/fulltile{health = 25},/turf/open/floor/plating,/area/maintenance/asmaint) -"cbM" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile{health = 35},/turf/open/floor/plating,/area/maintenance/asmaint) -"cbN" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"cbO" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cbP" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cbQ" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plasteel,/area/medical/sleeper) -"cbR" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/sleeper) -"cbS" = (/obj/machinery/vending/wallmed{pixel_y = -28},/obj/machinery/camera{c_tag = "Surgery Operating";dir = 1;network = list("SS13");pixel_x = 22},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cbT" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/sleeper) -"cbU" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/APlus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/BMinus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/BPlus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel,/area/medical/sleeper) -"cbV" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cbW" = (/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cbX" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cbY" = (/obj/structure/table,/obj/machinery/light,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cbZ" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cca" = (/obj/structure/table,/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"ccb" = (/obj/structure/table,/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 0;pixel_y = -30;pixel_z = 0},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"ccc" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/brute{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"ccd" = (/obj/machinery/light,/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/sleeper) -"cce" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ccf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ccg" = (/obj/machinery/door/airlock/medical{name = "Patient Room";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cch" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cci" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ccj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) -"cck" = (/obj/structure/table,/obj/item/weapon/cartridge/medical{pixel_x = -2;pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6;pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"ccl" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"ccm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"ccn" = (/obj/structure/closet/secure_closet/CMO,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "barber"},/area/medical/cmo) -"cco" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"ccp" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/toxins/xenobiology) -"ccq" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"ccr" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"ccs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "bot"},/area/toxins/storage) -"cct" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"ccu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"ccv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"ccw" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/research{name = "Research Division"}) -"ccx" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8;pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9;pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccy" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccz" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccA" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccB" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"ccD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/mixing) -"ccE" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) -"ccF" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/mixing) -"ccG" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/mixing) -"ccH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing) -"ccI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/mixing) -"ccJ" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/mixing) -"ccK" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE";name = "BOMB RANGE"},/turf/closed/indestructible,/area/toxins/test_area) -"ccL" = (/obj/structure/chair,/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/toxins/test_area) -"ccM" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless{dir = 1;icon_state = "warnplate"},/area/toxins/test_area) -"ccN" = (/obj/structure/chair,/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/toxins/test_area) -"ccO" = (/obj/machinery/door/airlock/shuttle{name = "Mining Shuttle Airlock";req_access_txt = "48"},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "mining";name = "mining shuttle";port_angle = 90;width = 7},/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "mining_home";name = "mining shuttle bay";width = 7},/turf/open/floor/plating,/area/shuttle/labor) -"ccP" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock";req_access = null;req_access_txt = "48"},/turf/open/floor/plating,/area/quartermaster/miningdock) -"ccQ" = (/obj/machinery/door/airlock/glass_mining{name = "Mining Dock";req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"ccR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"ccS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"ccT" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft) -"ccU" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/robotics{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/mecha_control{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel,/area/storage/tech) -"ccV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/tech) -"ccW" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/storage/tech) -"ccX" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/turf/open/floor/plating,/area/storage/tech) -"ccY" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/computer/med_data{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/clonescanner,/obj/item/weapon/circuitboard/machine/clonepod,/obj/item/weapon/circuitboard/computer/scan_consolenew,/turf/open/floor/plating,/area/storage/tech) -"ccZ" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/secure_data{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/security{pixel_x = 1;pixel_y = -1},/turf/open/floor/plating,/area/storage/tech) -"cda" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/powermonitor{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/stationalert{pixel_x = 1;pixel_y = -1},/obj/item/weapon/circuitboard/computer/atmos_alert{pixel_x = 3;pixel_y = -3},/turf/open/floor/plating,/area/storage/tech) -"cdb" = (/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plating,/area/storage/tech) -"cdc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cde" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cdf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cdi" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cdj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdl" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdm" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdn" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cdo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cdp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plating,/area/maintenance/asmaint) -"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/sleeper) -"cdr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/sleeper) -"cds" = (/turf/closed/wall/r_wall,/area/medical/medbay) -"cdt" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cdu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cdv" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/shieldwallgen{req_access = list(55)},/turf/open/floor/plating,/area/toxins/xenobiology) -"cdw" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cdx" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cdy" = (/obj/machinery/door/window/southleft{dir = 1;name = "Test Chamber";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cdz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cdA" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "misclab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cdB" = (/turf/closed/wall,/area/toxins/xenobiology) -"cdC" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/storage) -"cdD" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cdE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cdF" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"cdG" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdH" = (/obj/structure/closet/wardrobe/science_white,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdI" = (/obj/item/device/assembly/signaler{pixel_x = 0;pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = -2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdJ" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdK" = (/obj/item/device/assembly/timer{pixel_x = 5;pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4;pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6;pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0;pixel_y = 0},/obj/structure/table/reinforced,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdL" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdN" = (/obj/machinery/power/apc{dir = 4;name = "Toxins Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cdO" = (/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/toxins/mixing) -"cdP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/toxins/mixing) -"cdQ" = (/obj/machinery/camera{c_tag = "Toxins Launch Room Access";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 8},/area/toxins/mixing) -"cdR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/toxins/mixing) -"cdS" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/toxins/mixing) -"cdT" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/mixing) -"cdU" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/toxins/mixing) -"cdV" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/toxins/test_area) -"cdW" = (/turf/open/floor/plating/airless,/area/toxins/test_area) -"cdX" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/toxins/test_area) -"cdY" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/quartermaster/miningdock) -"cdZ" = (/obj/machinery/camera{c_tag = "Mining Dock External";dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{icon_state = "warning"},/area/quartermaster/miningdock) -"cea" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/closed/wall,/area/quartermaster/miningdock) -"ceb" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{dir = 10;icon_state = "brown"},/area/quartermaster/miningdock) -"cec" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"ced" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"cee" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"cef" = (/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"ceg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) -"ceh" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"cei" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech) -"cej" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/open/floor/plating,/area/storage/tech) -"cek" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/turf/open/floor/plating,/area/storage/tech) -"cel" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/storage/tech) -"cem" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tech) -"cen" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/storage/tech) -"ceo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"ceq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cer" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint) -"ces" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/asmaint) -"cet" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/asmaint) -"ceu" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cev" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cew" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cex" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cey" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cez" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/sign/securearea{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceB" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"ceC" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceE" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceF" = (/obj/effect/decal/cleanable/cobweb2,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{dir = 4;name = "Medbay APC";pixel_x = 24;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/medbay) -"ceG" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ceH" = (/obj/machinery/door/airlock/medical{name = "Patient Room 2";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ceI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/medical/medbay) -"ceK" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceL" = (/obj/machinery/power/apc{dir = 1;name = "CM Office APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo) -"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"ceO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"ceP" = (/obj/item/weapon/wrench,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) -"ceQ" = (/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter";network = list("Xeno");pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) -"ceR" = (/obj/machinery/button/door{id = "misclab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = -2;req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/xenobiology) -"ceS" = (/obj/machinery/door/window/southleft{name = "Test Chamber";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) -"ceT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) -"ceU" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) -"ceV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/toxins/xenobiology) -"ceW" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/xenobiology) -"ceX" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"ceY" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"ceZ" = (/obj/machinery/camera{c_tag = "Research Division South";dir = 8;network = list("SS13")},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel{dir = 9;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cfa" = (/obj/structure/sign/fire,/turf/closed/wall,/area/medical/research{name = "Research Division"}) -"cfb" = (/obj/structure/sign/nosmoking_2{pixel_x = -32},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/mixing) -"cfc" = (/obj/machinery/mass_driver{dir = 4;id = "toxinsdriver"},/turf/open/floor/plating,/area/toxins/mixing) -"cfd" = (/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 = -32},/turf/open/floor/plating,/area/toxins/mixing) -"cfe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/toxins/mixing) -"cff" = (/obj/machinery/door/poddoor{id = "toxinsdriver";name = "toxins launcher bay door"},/turf/open/floor/plating,/area/toxins/mixing) -"cfg" = (/turf/open/floor/plating/airless{dir = 8;icon_state = "warnplate"},/area/toxins/test_area) -"cfh" = (/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/toxins/test_area) -"cfi" = (/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/toxins/test_area) -"cfj" = (/obj/machinery/camera{active_power_usage = 0;c_tag = "Bomb Test Site";desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";dir = 8;invuln = 1;light = null;name = "Hardened Bomb-Test Camera";network = list("Toxins");use_power = 0},/obj/item/target/alien{anchored = 1},/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/toxins/test_area) -"cfk" = (/obj/structure/shuttle/engine/heater,/turf/open/floor/plating,/area/shuttle/labor) -"cfl" = (/obj/structure/ore_box,/turf/open/floor/plasteel/shuttle,/area/shuttle/labor) -"cfm" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cfn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"cfo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cfp" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/open/floor/plating,/area/storage/tech) -"cfq" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) -"cfr" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/open/floor/plating,/area/storage/tech) -"cfs" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/obj/item/device/multitool,/turf/open/floor/plating,/area/storage/tech) -"cft" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light/small,/turf/open/floor/plating,/area/storage/tech) -"cfu" = (/obj/machinery/requests_console{department = "Tech storage";pixel_x = 0;pixel_y = -32},/turf/open/floor/plating,/area/storage/tech) -"cfv" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech) -"cfw" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Primary Hallway 2";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cfy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cfz" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/hallway/primary/aft) -"cfA" = (/turf/closed/wall/r_wall,/area/atmos) -"cfB" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) -"cfC" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) -"cfD" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) -"cfE" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel{icon_state = "bot"},/area/atmos) -"cfF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/atmos) -"cfG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) -"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/atmos) -"cfI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/atmos) -"cfJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cfK" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/clothing/tie/stethoscope,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cfL" = (/obj/structure/chair/withwheels/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cfM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "medpriv1";name = "Privacy Shutters";pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cfN" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "medpriv1";name = "privacy door"},/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"cfO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cfP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/medbay) -"cfQ" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay) -"cfR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cfU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cfV" = (/obj/machinery/power/apc{dir = 8;name = "Xenobiology APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cfW" = (/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cfX" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cfY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cfZ" = (/obj/machinery/monkey_recycler,/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cga" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract.";name = "Slime Processor"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgb" = (/obj/machinery/smartfridge/extract,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgc" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgd" = (/obj/structure/closet/l3closet/scientist,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cge" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgf" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) -"cgg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"cgh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"}) -"cgi" = (/obj/machinery/door/poddoor{id = "mixvent2";name = "Mixer Room Vent"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"cgk" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker2";pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"cgl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing) -"cgm" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor2";master_tag = "tox_airlock_control";pixel_y = 24},/obj/machinery/atmospherics/components/binary/pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/mixing) -"cgn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump2";exterior_door_tag = "tox_airlock_exterior2";id_tag = "tox_airlock_control";interior_door_tag = "tox_airlock_interior2";pixel_x = -24;pixel_y = 0;sanitize_external = 1;sensor_tag = "tox_airlock_sensor2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warnwhitecorner"},/area/toxins/mixing) -"cgo" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "mix to port"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) -"cgp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/mixing) -"cgq" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cgr" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cgs" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/toxins/test_area) -"cgt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/toxins/test_area) -"cgu" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/labor) -"cgv" = (/obj/structure/disposalpipe/segment,/obj/machinery/status_display{density = 0;layer = 3;pixel_x = -32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cgw" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/hallway/primary/aft) -"cgx" = (/turf/closed/wall,/area/atmos) -"cgy" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel,/area/atmos) -"cgz" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cgA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/atmos) -"cgB" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"cgC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"cgD" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/atmos) -"cgE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cgF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/meter{frequency = 1443;id_tag = "wloop_atm_meter";name = "Waste Loop"},/turf/open/floor/plasteel,/area/atmos) -"cgG" = (/obj/machinery/camera{c_tag = "Atmospherics North East"},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Distro to Waste";on = 0},/turf/open/floor/plasteel,/area/atmos) -"cgH" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 2},/obj/machinery/meter{frequency = 1443;id_tag = "dloop_atm_meter";name = "Distribution Loop"},/turf/open/floor/plasteel,/area/atmos) -"cgI" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"cgJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to Distro";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cgK" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plasteel,/area/atmos) -"cgL" = (/turf/open/floor/plasteel,/area/atmos) -"cgM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"cgN" = (/turf/closed/wall/r_wall,/area/medical/virology) -"cgO" = (/turf/closed/wall,/area/medical/virology) -"cgP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "39"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cgQ" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/medical/virology) -"cgR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 13},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"cgS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Xenobiology Maintenance";req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) -"cgT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cha" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab";req_access_txt = "55"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"chb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "whitehall"},/area/medical/research{name = "Research Division"}) -"chc" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/research{name = "Research Division"}) -"chd" = (/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"che" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_exterior2";locked = 1;name = "Mixing Room Exterior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) -"chf" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2;frequency = 1449;id = "tox_airlock_pump2"},/turf/open/floor/engine,/area/toxins/mixing) -"chg" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_interior2";locked = 1;name = "Mixing Room Interior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing) -"chh" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/toxins/mixing) -"chi" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) -"chj" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Toxins Lab East";dir = 8;network = list("SS13","RD");pixel_y = -22},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/mixing) -"chk" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint2) -"chl" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plating,/area/maintenance/asmaint2) -"chm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"chn" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/toxins/test_area) -"cho" = (/obj/item/device/flashlight/lamp,/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/toxins/test_area) -"chp" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/toxins/test_area) -"chq" = (/turf/closed/wall,/area/construction) -"chr" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/construction) -"chs" = (/turf/open/floor/plating,/area/construction) -"cht" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plating,/area/construction) -"chu" = (/turf/open/floor/plasteel,/area/construction) -"chv" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/construction) -"chw" = (/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/hallway/primary/aft) -"chx" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel,/area/atmos) -"chy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"chz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"chA" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/camera{c_tag = "Atmospherics Monitoring";dir = 2;network = list("SS13")},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/atmos) -"chB" = (/obj/machinery/camera{c_tag = "Atmospherics North West";dir = 4;network = list("SS13")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"chC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"chD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/atmos) -"chE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"chF" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"chG" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"chH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"chI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/atmos) -"chJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Mix to Distro";on = 0},/turf/open/floor/plasteel,/area/atmos) -"chK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"chM" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"chN" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos) -"chO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/closed/wall/r_wall,/area/medical/virology) -"chP" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4;pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1;pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2;pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chQ" = (/obj/item/weapon/storage/secure/safe{pixel_x = 5;pixel_y = 29},/obj/machinery/camera{c_tag = "Virology Break Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chR" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chS" = (/obj/item/weapon/bedsheet,/obj/structure/bed,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chT" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{dir = 9;icon_state = "warnwhite"},/area/medical/virology) -"chU" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chV" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock";dir = 2;network = list("SS13")},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 5},/area/medical/virology) -"chW" = (/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chX" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chY" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"chZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cia" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/xenobiology) -"cib" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cic" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cid" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cie" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cig" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cih" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology) -"cii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) -"cij" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) -"cik" = (/turf/open/floor/plasteel{icon_state = "whitehall";dir = 1},/area/medical/research{name = "Research Division"}) -"cil" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker2";pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;frequency = 1443;id = "air_in"},/turf/open/floor/engine/vacuum,/area/toxins/mixing) -"cim" = (/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8;on = 1},/turf/open/floor/engine,/area/toxins/mixing) -"cin" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent2";name = "Mixing Room Vent Control";pixel_x = -25;pixel_y = 5;req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker2";pixel_x = -25;pixel_y = -5},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhitecorner"},/area/toxins/mixing) -"cio" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "port to mix"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/toxins/mixing) -"cip" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/mixing) -"ciq" = (/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless{dir = 2;icon_state = "warnplate"},/area/toxins/test_area) -"cir" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft) -"cis" = (/obj/machinery/light_construct{dir = 8},/turf/open/floor/plating,/area/construction) -"cit" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/construction) -"ciu" = (/obj/machinery/light_construct{dir = 4},/turf/open/floor/plasteel,/area/construction) -"civ" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"ciw" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cix" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "loadingarea"},/area/hallway/primary/aft) -"ciy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";freq = 1400;location = "Atmospherics"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) -"ciz" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{dir = 4;icon_state = "loadingarea"},/area/atmos) -"ciA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ciB" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ciC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"ciD" = (/obj/machinery/computer/atmos_control{frequency = 1441;name = "Tank Monitor";sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank")},/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) -"ciE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/atmos) -"ciF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/autolathe/atmos,/turf/open/floor/plasteel,/area/atmos) -"ciG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/atmos) -"ciH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"ciI" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ciJ" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"ciK" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Waste In";on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ciL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"ciM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"ciN" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/atmos) -"ciO" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix Outlet Pump";on = 0},/turf/open/floor/plasteel,/area/atmos) -"ciP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Mix";on = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ciQ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "green"},/area/atmos) -"ciR" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"ciS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space) -"ciT" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"ciU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "waste_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"ciV" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"ciW" = (/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"ciX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"ciY" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ciZ" = (/obj/machinery/iv_drip,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cja" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "warnwhite"},/area/medical/virology) -"cjb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cjc" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/medical/virology) -"cjd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cje" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cjf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"cjg" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cji" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjj" = (/obj/structure/table/glass,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjk" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjm" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjn" = (/obj/structure/table,/obj/item/weapon/extinguisher{pixel_x = 4;pixel_y = 3},/obj/item/weapon/extinguisher,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjo" = (/obj/structure/table,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjp" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjq" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cjs" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) -"cjt" = (/obj/machinery/door/airlock/research{name = "Testing Lab";req_access_txt = "47"},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cju" = (/turf/closed/wall,/area/toxins/misc_lab) -"cjv" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjw" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cjx" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cjy" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft) -"cjz" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/aft) -"cjA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/aft) -"cjC" = (/obj/item/weapon/shard,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/aft) -"cjD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/aft) -"cjE" = (/obj/structure/girder,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/floor/plating,/area/maintenance/aft) -"cjF" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fsmaint2) -"cjG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cjH" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/plating,/area/maintenance/aft) -"cjI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"cjJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/construction) -"cjL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"cjM" = (/obj/structure/closet/crate,/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"cjN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/construction) -"cjO" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"cjP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) -"cjQ" = (/obj/machinery/door/airlock/engineering{name = "Construction Area";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"cjR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cjU" = (/turf/open/floor/plasteel{icon_state = "caution";dir = 5},/area/hallway/primary/aft) -"cjV" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cjW" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"cjY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cjZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/atmos) -"cka" = (/obj/machinery/computer/atmos_control{frequency = 1443;level = 3;name = "Distribution and Waste Monitor";sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) -"ckb" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) -"ckc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ckd" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos) -"cke" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"ckg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"ckh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cki" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ckj" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"ckk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"ckl" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"ckm" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "waste_in";name = "Gas Mix Tank Control";output_tag = "waste_out";sensors = list("waste_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "green";dir = 4},/area/atmos) -"ckn" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cko" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/atmos) -"ckp" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "waste_sensor"},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"ckq" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"ckr" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cks" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ckt" = (/obj/structure/closet/wardrobe/virology_white,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cku" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = 8;pixel_y = -28;req_access_txt = "39"},/turf/open/floor/plasteel{dir = 10;icon_state = "warnwhite"},/area/medical/virology) -"ckv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"ckw" = (/obj/structure/closet/l3closet,/turf/open/floor/plasteel{dir = 6;icon_state = "warnwhite"},/area/medical/virology) -"ckx" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cky" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) -"ckz" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "warnwhite";dir = 1},/area/toxins/xenobiology) -"ckB" = (/obj/structure/closet/bombcloset,/obj/machinery/light_switch{pixel_x = -20;pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ckC" = (/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ckD" = (/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"ckE" = (/obj/machinery/requests_console{department = "Science";departmentType = 2;dir = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ckF" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/machinery/camera{c_tag = "Testing Lab North";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"ckG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"ckH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"ckI" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;req_access = null},/turf/open/floor/engine,/area/toxins/misc_lab) -"ckJ" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"ckK" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/toxins/misc_lab) -"ckL" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/misc_lab) -"ckM" = (/turf/closed/wall/r_wall,/area/toxins/misc_lab) -"ckN" = (/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ckO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/aft) -"ckP" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft) -"ckQ" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/aft) -"ckR" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"ckS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"ckT" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"ckU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Construction Area Maintenance";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"ckV" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"ckW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"ckX" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction) -"ckY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/construction) -"ckZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cla" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"clb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4;icon_state = "left";name = "Atmospherics Desk";req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) -"clc" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"cld" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"cle" = (/obj/structure/chair/withwheels/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) -"clf" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) -"clg" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/atmos) -"clh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/atmos) -"cli" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"clj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"clk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) -"cll" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"clm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"cln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"clo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"clp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Pure to Mix";on = 0},/turf/open/floor/plasteel,/area/atmos) -"clq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"clr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Unfiltered to Mix";on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"cls" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "green";dir = 6},/area/atmos) -"clt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"clu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space) -"clv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "waste_in";pixel_y = 1},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos) -"clw" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/machinery/reagentgrinder,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"clx" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cly" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"clz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"clA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/virology) -"clB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Monkey Pen";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"clC" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/engine,/area/toxins/xenobiology) -"clD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/toxins/xenobiology) -"clE" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"clF" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/xenobiology) -"clG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"clH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"clI" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio8";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) -"clJ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"clK" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"clL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"clM" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/device/electropack,/obj/item/device/healthanalyzer,/obj/item/device/assembly/signaler,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"clN" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/engine,/area/toxins/misc_lab) -"clO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"clP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) -"clQ" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/toxins/misc_lab) -"clR" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"clS" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"clT" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"clU" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/maintenance/aft) -"clV" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/rack,/obj/item/clothing/head/cone,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plating,/area/maintenance/aft) -"clW" = (/obj/item/weapon/storage/secure/safe,/turf/closed/wall,/area/maintenance/aft) -"clX" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"clY" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/general/hidden{tag = "icon-intact (EAST)";icon_state = "intact";dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"clZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{tag = "icon-connector_map (WEST)";icon_state = "connector_map";dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) -"cma" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cmb" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/aft) -"cmc" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cmd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cme" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/construction) -"cmf" = (/obj/machinery/camera{c_tag = "Construction Area";dir = 1},/turf/open/floor/plating,/area/construction) -"cmg" = (/obj/structure/rack{dir = 1},/obj/item/clothing/suit/hazardvest,/turf/open/floor/plating,/area/construction) -"cmh" = (/obj/structure/table,/obj/item/stack/cable_coil{amount = 5},/obj/item/device/flashlight,/turf/open/floor/plating,/area/construction) -"cmi" = (/obj/structure/table,/turf/open/floor/plating,/area/construction) -"cmj" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cmk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cml" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "atmos";layer = 2.9;name = "atmos blast door"},/turf/open/floor/plating,/area/atmos) -"cmm" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos) -"cmo" = (/obj/machinery/computer/station_alert,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = 24;pixel_y = 4;req_access_txt = "24"},/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/atmos) -"cmp" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5;pixel_y = 3},/obj/machinery/light{dir = 8},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/atmos) -"cmq" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/turf/open/floor/plasteel,/area/atmos) -"cmr" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/turf/open/floor/plasteel,/area/atmos) -"cms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos) -"cmt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmv" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmy" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cmA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Break Room";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmD" = (/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmF" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/firealarm{pixel_y = 25},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmH" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Virology APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology Module"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmI" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cmJ" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cmK" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cmL" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/xenobiology) -"cmM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cmN" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/xenobiology) -"cmO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cmP" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cmQ" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cmR" = (/turf/open/floor/engine,/area/toxins/misc_lab) -"cmS" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/engine,/area/toxins/misc_lab) -"cmT" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/engine,/area/toxins/misc_lab) -"cmU" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5;pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5;pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = -1},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/turf/open/floor/engine,/area/toxins/misc_lab) -"cmV" = (/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/misc_lab) -"cmW" = (/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/toxins/misc_lab) -"cmX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/toxins/misc_lab) -"cmY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cmZ" = (/obj/structure/rack,/obj/item/clothing/glasses/sunglasses/garb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cna" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/aft) -"cnb" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/aft) -"cnc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/maintenance/aft) -"cnd" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/rack,/obj/item/clothing/tie/black,/obj/item/clothing/tie/red,/obj/item/clothing/mask/bandana/red,/obj/item/clothing/mask/bandana/skull,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cne" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"cnf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/aft) -"cng" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft) -"cnh" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cni" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall,/area/maintenance/aft) -"cnj" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cnk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/aft) -"cnl" = (/obj/machinery/power/apc{name = "Aft Hall APC";dir = 8;pixel_x = -25;pixel_y = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cnm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cnn" = (/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/structure/window/reinforced,/turf/open/floor/plasteel{dir = 6;icon_state = "caution"},/area/hallway/primary/aft) -"cno" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/atmos) -"cnp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/atmos) -"cnq" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"cnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/turf/open/floor/plasteel,/area/atmos) -"cns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cnt" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cnu" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cnv" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos) -"cnw" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cnx" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "N2O Outlet Pump";on = 0},/turf/open/floor/plasteel{icon_state = "escape";dir = 5},/area/atmos) -"cny" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "n2o_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2o,/area/atmos) -"cnz" = (/obj/machinery/camera{c_tag = "Atmospherics N2O Tanks"},/turf/open/floor/engine/n2o,/area/atmos) -"cnA" = (/turf/open/floor/engine/n2o,/area/atmos) -"cnB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/medical/virology) -"cnC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"cnD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/medical/virology) -"cnE" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cnF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cnG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cnH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cnI" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cnJ" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) -"cnK" = (/obj/structure/disposalpipe/segment,/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/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cnL" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/toxins/xenobiology) -"cnM" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cnN" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology) -"cnO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cnP" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10;pixel_x = 0;initialize_directions = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cnQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cnR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/engine,/area/toxins/misc_lab) -"cnS" = (/obj/structure/table,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/turf/open/floor/engine,/area/toxins/misc_lab) -"cnT" = (/turf/open/floor/plating,/area/toxins/misc_lab) -"cnU" = (/obj/structure/target_stake,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/toxins/misc_lab) -"cnV" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/turf/open/floor/plasteel,/area/maintenance/aft) -"cnW" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cnX" = (/obj/machinery/door/window{dir = 2},/obj/structure/table/reinforced,/turf/open/floor/plating,/area/maintenance/aft) -"cnY" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/turf/open/floor/plating,/area/maintenance/aft) -"cnZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/cups,/turf/open/floor/plating,/area/maintenance/aft) -"coa" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft) -"cob" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/aft) -"coc" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cod" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"coe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cof" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"cog" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-y";dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"coh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"coi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"coj" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cok" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/power/apc{dir = 1;name = "Construction Area APC";pixel_y = 24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/construction) -"col" = (/obj/machinery/power/apc{dir = 2;name = "Telecoms Monitoring APC";pixel_y = -24},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"com" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"con" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"coo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "arrival";dir = 8},/area/atmos) -"cop" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"coq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/atmos) -"cor" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos) -"cos" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) -"cot" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"cou" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to External";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cov" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cow" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"cox" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel,/area/atmos) -"coy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) -"coz" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Mix to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) -"coA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Pure to Port";on = 0},/turf/open/floor/plasteel,/area/atmos) -"coB" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/atmos) -"coC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/atmos) -"coD" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2o_in";name = "Nitrous Oxide Supply Control";output_tag = "n2o_out";sensors = list("n2o_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "escape";dir = 4},/area/atmos) -"coE" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/atmos) -"coF" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/atmos) -"coG" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/atmos) -"coH" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) -"coI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"coJ" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"coK" = (/obj/machinery/smartfridge/chemistry/virology,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) -"coL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"coM" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) -"coN" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/virology) -"coO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A";req_access_txt = "39"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"coP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"coQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B";req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"coR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall,/area/toxins/xenobiology) -"coS" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"coT" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"coU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"coV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"coW" = (/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) -"coX" = (/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) -"coY" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) -"coZ" = (/obj/machinery/camera{c_tag = "Testing Firing Range";dir = 8;network = list("SS13","RD");pixel_y = -22},/turf/open/floor/plating,/area/toxins/misc_lab) -"cpa" = (/obj/structure/target_stake,/turf/open/floor/plating,/area/toxins/misc_lab) -"cpb" = (/obj/structure/sign/nosmoking_1,/turf/closed/wall,/area/maintenance/aft) -"cpc" = (/turf/open/floor/plasteel,/area/maintenance/aft) -"cpd" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/aft) -"cpe" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cpf" = (/turf/closed/wall/r_wall,/area/tcommsat/server) -"cpg" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cph" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cpj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) -"cpk" = (/obj/machinery/camera{c_tag = "Atmospherics Access";dir = 4;network = list("SS13")},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 8;icon_state = "caution"},/area/atmos) -"cpl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/atmos) -"cpm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"cpn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "caution";dir = 4},/area/atmos) -"cpo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/securearea,/turf/closed/wall,/area/atmos) -"cpp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "External to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cpq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cpr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/atmos) -"cps" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/atmos) -"cpt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/atmos) -"cpu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cpv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cpw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos) -"cpx" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "n2o";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cpy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{icon_state = "escape";dir = 6},/area/atmos) -"cpz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "n2o_in";pixel_y = 1},/turf/open/floor/engine/n2o,/area/atmos) -"cpA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cpB" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex,/obj/machinery/requests_console{department = "Virology";name = "Virology Requests Console";pixel_x = -32},/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) -"cpC" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) -"cpD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/medical/virology) -"cpE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cpF" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cpG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cpH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cpI" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/button/door{id = "xenobio7";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) -"cpJ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cpK" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cpL" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cpM" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cpN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cpO" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cpP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/toxins/misc_lab) -"cpQ" = (/obj/structure/chair{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/maintenance/aft) -"cpR" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/aft) -"cpS" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/maintenance/aft) -"cpT" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/aft) -"cpU" = (/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cpV" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cpW" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cpX" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Telecoms Server APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cpY" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cpZ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqa" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) -"cqb" = (/obj/machinery/computer/message_monitor,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/tcommsat/computer) -"cqc" = (/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cqd" = (/obj/machinery/light{dir = 1},/obj/machinery/announcement_system,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cqe" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cqf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/atmos) -"cqg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"cqh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "atmos";name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) -"cqi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/preopen{id = "atmos";name = "atmos blast door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/atmos) -"cqj" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"cqk" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel,/area/atmos) -"cql" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics West";dir = 8;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) -"cqm" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Port";on = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cqn" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cqo" = (/obj/structure/door_assembly/door_assembly_mai,/turf/open/floor/plating,/area/maintenance/asmaint) -"cqp" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{pixel_x = -25},/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) -"cqq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cqr" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cqs" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/obj/item/weapon/pen/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) -"cqt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"cqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cqv" = (/obj/structure/table,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cqw" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cqx" = (/obj/effect/landmark{name = "revenantspawn"},/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/toxins/xenobiology) -"cqy" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cqz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cqA" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqB" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/ignition{id = "testigniter";pixel_x = -6;pixel_y = 2},/obj/machinery/button/door{id = "testlab";name = "Test Chamber Blast Doors";pixel_x = 4;pixel_y = 2;req_access_txt = "55"},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqC" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/device/taperecorder{pixel_y = 0},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqD" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqE" = (/obj/structure/rack,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/machinery/computer/security/telescreen{name = "Test Chamber Moniter";network = list("Test");pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqF" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/closet,/obj/item/pipe{dir = 4;icon_state = "mixer";name = "gas mixer fitting";pipe_type = 14},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cqG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cqH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cqI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) -"cqJ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/recharger{pixel_y = 4},/obj/item/weapon/paper/range,/turf/open/floor/plating{tag = "icon-warnplate (SOUTHEAST)";icon_state = "warnplate";dir = 6},/area/toxins/misc_lab) -"cqK" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1},/obj/structure/window/reinforced{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plating{tag = "icon-warnplate (SOUTHWEST)";icon_state = "warnplate";dir = 10},/area/toxins/misc_lab) -"cqL" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cqM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/aft) -"cqN" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/aft) -"cqO" = (/turf/open/floor/plating{dir = 2;icon_state = "warnplate"},/area/maintenance/aft) -"cqP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/pill/mannitol,/turf/open/floor/plating,/area/maintenance/aft) -"cqQ" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft) -"cqR" = (/turf/closed/wall,/area/maintenance/strangeroom) -"cqS" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/strangeroom) -"cqT" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqU" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqW" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqX" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cqY" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cqZ" = (/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/tcommsat/computer) -"cra" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"crb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"crc" = (/obj/structure/table,/obj/item/weapon/paper_bin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) -"crd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/turf/open/floor/plasteel{dir = 8;icon_state = "escape"},/area/atmos) -"cre" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall/r_wall,/area/atmos) -"crf" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Atmospherics";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos) -"crg" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/atmos) -"crh" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Security APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 9},/area/security/checkpoint/engineering) -"cri" = (/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/structure/closet,/turf/open/floor/plasteel{icon_state = "red";dir = 1},/area/security/checkpoint/engineering) -"crj" = (/obj/structure/filingcabinet,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel{icon_state = "red";dir = 5},/area/security/checkpoint/engineering) -"crk" = (/obj/structure/fireaxecabinet{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/atmos) -"crl" = (/obj/structure/closet/secure_closet/atmospherics,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/atmos) -"crm" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos) -"crn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/atmos) -"cro" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"crp" = (/obj/machinery/camera{c_tag = "Atmospherics East";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Plasma Outlet Pump";on = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/atmos) -"crq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "tox_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"crr" = (/obj/machinery/camera{c_tag = "Atmospherics Plasma Tank"},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"crs" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"crt" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/asmaint) -"cru" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"crv" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{anchored = 1;density = 0;pixel_x = -30},/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel{dir = 8;icon_state = "whitegreen"},/area/medical/virology) -"crw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"crx" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cry" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "whitegreen"},/area/medical/virology) -"crz" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/virology) -"crA" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"crB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"crC" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) -"crD" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"crE" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) -"crF" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/misc_lab) -"crG" = (/obj/structure/grille,/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/misc_lab) -"crH" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"crI" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"crJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"crK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) -"crL" = (/obj/machinery/door/airlock/glass_research{name = "Firing Range";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"crM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) -"crN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/toxins/misc_lab) -"crO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{tag = "icon-warningcorner (EAST)";icon_state = "warningcorner";dir = 4},/area/toxins/misc_lab) -"crP" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"crQ" = (/obj/structure/closet/crate,/obj/item/clothing/under/color/lightpurple,/obj/item/stack/spacecash/c200,/turf/open/floor/plating,/area/maintenance/asmaint2) -"crR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/vomit/old,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/cobweb,/obj/structure/kitchenspike,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) -"crS" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/remains/human,/obj/structure/kitchenspike,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) -"crT" = (/obj/effect/decal/cleanable/shreds,/obj/machinery/power/apc{dir = 1;name = "Worn Out APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) -"crU" = (/turf/open/floor/plating,/area/maintenance/strangeroom) -"crV" = (/obj/structure/table/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/molten_item,/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating,/area/maintenance/strangeroom) -"crW" = (/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"crX" = (/obj/machinery/blackbox_recorder,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"crY" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"crZ" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"csa" = (/obj/machinery/computer/telecomms/server{network = "tcommsat"},/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/tcommsat/computer) -"csb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer) -"csc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/tcommsat/computer) -"csd" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"csn" = (/obj/machinery/suit_storage_unit/atmos,/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/atmos) -"cso" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall,/area/atmos) -"csp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"csq" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "tox_in";name = "Toxin Supply Control";output_tag = "tox_out";sensors = list("tox_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/atmos) -"csr" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "tox_sensor"},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"css" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"cst" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"csu" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "whitegreen"},/area/medical/virology) -"csv" = (/obj/structure/closet/secure_closet/medical1,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 2;icon_state = "whitegreen"},/area/medical/virology) -"csw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"csx" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/camera{c_tag = "Xenobiology South";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"csy" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"csz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;unacidable = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"csA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/engine,/area/toxins/misc_lab) -"csB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"csC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/toxins/misc_lab) -"csD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/misc_lab) -"csE" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"csF" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"csG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"csH" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/turf/open/floor/plating,/area/maintenance/aft) -"csI" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/aft) -"csJ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"csK" = (/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/aft) -"csL" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/cable_coil{amount = 1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"csM" = (/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (SOUTHWEST)";icon_state = "tracks";dir = 10},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"csN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) -"csO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (EAST)";icon_state = "tracks";dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) -"csP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks{tag = "icon-tracks (NORTHEAST)";icon_state = "tracks";dir = 5},/obj/structure/chair{dir = 1},/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) -"csQ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"csR" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"csS" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"csT" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/tcommsat/computer) -"csU" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"csV" = (/obj/machinery/status_display,/turf/closed/wall,/area/tcommsat/computer) -"csW" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/turf/open/floor/plating,/area/tcommsat/computer) -"csX" = (/obj/machinery/door/airlock/glass_command{name = "Control Room";req_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"csY" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) -"csZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cta" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ctb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"ctc" = (/turf/closed/wall,/area/engine/break_room) -"ctd" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cte" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"ctf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"ctg" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cth" = (/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "63"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"cti" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "red";dir = 8},/area/security/checkpoint/engineering) -"ctj" = (/obj/structure/chair/withwheels/office/dark,/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"ctk" = (/obj/machinery/computer/secure_data,/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel{icon_state = "red";dir = 4},/area/security/checkpoint/engineering) -"ctl" = (/obj/machinery/power/apc{dir = 8;name = "Atmospherics APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/atmos) -"ctm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/atmos) -"ctn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos) -"cto" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"ctp" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "plasma";on = 1},/turf/open/floor/plasteel,/area/atmos) -"ctq" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/atmos) -"ctr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "tox_in";pixel_y = 1},/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"cts" = (/turf/open/floor/engine{name = "plasma floor";initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0"},/area/atmos) -"ctt" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint) -"ctu" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/asmaint) -"ctv" = (/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"ctw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/medical/virology) -"ctx" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/item/weapon/wrench,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating{icon_state = "warnplate";dir = 9},/area/maintenance/asmaint) -"cty" = (/obj/machinery/atmospherics/components/binary/valve/open{tag = "icon-mvalve_map (EAST)";icon_state = "mvalve_map";dir = 4},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/maintenance/asmaint) -"ctz" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/turf/open/floor/plating{icon_state = "warnplate";dir = 5},/area/maintenance/asmaint) -"ctA" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) -"ctB" = (/obj/structure/rack{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"ctC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"ctD" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/toxins/xenobiology) -"ctE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"ctF" = (/obj/item/device/radio/intercom{pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) -"ctG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/misc_lab) -"ctH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 1},/area/toxins/misc_lab) -"ctI" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-warningcorner (WEST)";icon_state = "warningcorner";dir = 8},/area/toxins/misc_lab) -"ctJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctK" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctL" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/asmaint2) -"ctM" = (/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"ctN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/bodypart/r_leg,/obj/item/bodypart/r_arm,/obj/item/weapon/shard,/obj/item/weapon/hatchet,/obj/item/weapon/staplegun,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"ctO" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/obj/structure/chair{dir = 1},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"ctP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/item/bodypart/l_leg,/obj/item/bodypart/l_arm,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"ctQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{tag = "icon-gcircuitoff";icon_state = "gcircuitoff"},/area/maintenance/strangeroom) -"ctR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/tracks,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/strangeroom) -"ctS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) -"ctT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall/r_wall,/area/tcommsat/server) -"ctU" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"ctV" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"ctW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"ctX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/bluegrid{dir = 8;icon_state = "vault";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"ctY" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"ctZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cua" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room";req_access_txt = "61"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) -"cub" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) -"cuc" = (/obj/machinery/door/airlock/glass_engineering{name = "Server Room";req_access_txt = "61"},/turf/open/floor/plasteel{icon_state = "vault";dir = 5},/area/tcommsat/computer) -"cud" = (/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/tcommsat/computer) -"cue" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cuf" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Telecoms Monitoring";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cug" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"cuh" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cui" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cuj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cuk" = (/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cul" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/engine/break_room) -"cum" = (/turf/open/floor/plasteel,/area/engine/break_room) -"cun" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cuo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) -"cup" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"cuq" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/security/checkpoint/engineering) -"cur" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "red"},/area/security/checkpoint/engineering) -"cus" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{anchored = 1;pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/security/checkpoint/engineering) -"cut" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"cuu" = (/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/atmos) -"cuv" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos) -"cuw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/atmos) -"cux" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cuy" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cuz" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cuA" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"cuB" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"cuC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cuD" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"cuE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cuF" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "warnplate";dir = 10},/area/maintenance/asmaint) -"cuG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating{dir = 2;icon_state = "warnplate"},/area/maintenance/asmaint) -"cuH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating{icon_state = "warnplate";dir = 6},/area/maintenance/asmaint) -"cuI" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"cuJ" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cuK" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen";req_access_txt = "55"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cuL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/turf/open/floor/engine,/area/toxins/xenobiology) -"cuM" = (/obj/machinery/sparker{id = "testigniter";pixel_x = -25},/turf/open/floor/engine,/area/toxins/misc_lab) -"cuN" = (/obj/item/device/radio/beacon,/turf/open/floor/engine,/area/toxins/misc_lab) -"cuO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/misc_lab) -"cuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"cuQ" = (/obj/machinery/door/poddoor/preopen{id = "testlab";name = "test chamber blast door"},/obj/machinery/door/airlock/glass_research{name = "Test Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/toxins/misc_lab) -"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/misc_lab) -"cuS" = (/obj/machinery/door/airlock/glass_research{name = "Test Chamber";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/toxins/misc_lab) -"cuT" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/toxins/misc_lab) -"cuU" = (/obj/machinery/power/apc{dir = 4;name = "Testing Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cuV" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cuW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cuX" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cuY" = (/obj/structure/table,/obj/item/weapon/folder/white,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cuZ" = (/obj/structure/barricade/wooden,/obj/effect/decal/cleanable/generic,/obj/effect/decal/cleanable/blood/tracks,/turf/open/floor/plasteel{tag = "icon-damaged5";icon_state = "damaged5"},/area/maintenance/strangeroom) -"cva" = (/obj/machinery/camera{c_tag = "Telecoms Server Room";dir = 4;network = list("SS13")},/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cvb" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cvc" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"cvd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 0},/turf/closed/wall,/area/tcommsat/computer) -"cve" = (/turf/open/floor/plasteel,/area/tcommsat/computer) -"cvf" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cvg" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Telecoms Admin";departmentType = 5;name = "Telecoms RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cvh" = (/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j2s";sortType = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 8;icon_state = "cautioncorner"},/area/hallway/primary/aft) -"cvi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cvj" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Aft Primary Hallway 1";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = -22},/turf/open/floor/plasteel{dir = 2;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cvk" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Foyer APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/engine/break_room) -"cvl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cvm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cvn" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/engineering) -"cvo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos) -"cvp" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/open/floor/plasteel,/area/atmos) -"cvq" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/atmos) -"cvr" = (/obj/machinery/space_heater,/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/atmos) -"cvs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos) -"cvt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/cigbutt,/turf/open/floor/plasteel,/area/atmos) -"cvu" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel,/area/atmos) -"cvv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "CO2 Outlet Pump";on = 0},/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/atmos) -"cvw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "co2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cvx" = (/obj/machinery/camera{c_tag = "Atmospherics CO2 Tank"},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cvy" = (/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cvz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/asmaint) -"cvA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cvB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cvC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cvD" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance";req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cvE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cvF" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cvG" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "xenobio2-1";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cvH" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/light,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/toxins/xenobiology) -"cvI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/xenobiology) -"cvJ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/engine,/area/toxins/xenobiology) -"cvK" = (/obj/machinery/camera{c_tag = "Testing Chamber";dir = 1;network = list("Test","RD");pixel_x = 0},/obj/machinery/light,/turf/open/floor/engine,/area/toxins/misc_lab) -"cvL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 4},/area/toxins/misc_lab) -"cvM" = (/obj/machinery/camera{c_tag = "Testing Lab South";dir = 8;network = list("SS13","RD");pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cvN" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cvO" = (/obj/structure/closet/crate,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target/clown,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cvP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cvQ" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cvR" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cvS" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar";name = "Port Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cvT" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cvU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed,/turf/open/floor/plasteel{tag = "icon-damaged2";icon_state = "damaged2"},/area/maintenance/strangeroom) -"cvV" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel{tag = "icon-damaged1";icon_state = "damaged1"},/area/maintenance/strangeroom) -"cvW" = (/obj/structure/mirror{icon_state = "mirror_broke";pixel_y = 28;shattered = 1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"cvX" = (/obj/effect/decal/cleanable/blood/drip,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) -"cvY" = (/obj/structure/table/reinforced,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/chem_pile,/turf/open/floor/plating,/area/maintenance/strangeroom) -"cvZ" = (/obj/machinery/message_server,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cwa" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cwb" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cwc" = (/obj/structure/table,/obj/item/device/multitool,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/tcommsat/computer) -"cwd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cwe" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cwf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cwg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/hallway/primary/aft) -"cwh" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/hallway/primary/aft) -"cwi" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cwj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cwk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/hallway/primary/aft) -"cwl" = (/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/hallway/primary/aft) -"cwm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/break_room) -"cwn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cwo" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cwp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cwq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cwr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/break_room) -"cws" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"cwt" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/break_room) -"cwu" = (/turf/closed/wall/r_wall,/area/engine/engineering) -"cwv" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/atmos) -"cww" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel,/area/atmos) -"cwx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cwy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "N2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos) -"cwz" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "co2_in";name = "Carbon Dioxide Supply Control";output_tag = "co2_out";sensors = list("co2_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/atmos) -"cwA" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "co2_sensor"},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cwB" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cwC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cwD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwE" = (/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 28},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwF" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2";icon_state = "cobweb2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cwG" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwI" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwJ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwK" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cwM" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cwO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) -"cwP" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/xenobiology) -"cwQ" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"cwR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cwS" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "floorgrime"},/area/toxins/misc_lab) -"cwT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint2) -"cwU" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cwV" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cwW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cwX" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plating,/area/maintenance/aft) -"cwY" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft) -"cwZ" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft) -"cxa" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"cxb" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft) -"cxc" = (/obj/structure/spirit_board,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/strangeroom) -"cxd" = (/obj/structure/closet/crate/secure,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/pen,/obj/item/weapon/paper{info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough.";name = "Strange Paper"},/turf/open/floor/plasteel{tag = "icon-damaged4";icon_state = "damaged4"},/area/maintenance/strangeroom) -"cxe" = (/obj/effect/decal/cleanable/blood/drip,/obj/structure/closet/crate/bin,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/strangeroom) -"cxf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/gibber,/turf/open/floor/plasteel,/area/maintenance/strangeroom) -"cxg" = (/obj/machinery/vending/cart{desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort.";icon_state = "cart-broken";name = "Old Machine";product_slogans = "Bzzzt..-6-4-!";products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0)},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/cobweb{tag = "icon-cobweb2";icon_state = "cobweb2"},/turf/open/floor/plasteel{tag = "icon-platingdmg1";icon_state = "platingdmg1"},/area/maintenance/strangeroom) -"cxh" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cxi" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cxj" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cxk" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cxl" = (/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/tcommsat/computer) -"cxm" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cxn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cxo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cxp" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications";req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cxq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "yellow"},/area/hallway/primary/aft) -"cxr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cxs" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cxt" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AIE";location = "AftH"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cxu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cxv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/hallway/primary/aft) -"cxw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cxx" = (/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},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cxy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cxz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) -"cxA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cxB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cxC" = (/obj/machinery/vending/cigarette{pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/break_room) -"cxD" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/atmos) -"cxE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos) -"cxF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"cxG" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4;node1_concentration = 0.8;node2_concentration = 0.2;on = 1;pixel_x = 0;pixel_y = 0;target_pressure = 4500},/turf/open/floor/plasteel,/area/atmos) -"cxH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 to Pure";on = 0},/turf/open/floor/plasteel,/area/atmos) -"cxI" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "co2";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cxJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/atmos) -"cxK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "co2_in";pixel_y = 1},/turf/open/floor/engine{name = "co2 floor";initial_gas_mix = "o2=0;n2=0;co2=50000"},/area/atmos) -"cxL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxO" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxP" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cxQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxS" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint) -"cxU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxV" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cxW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cxX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space) -"cxY" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cxZ" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cya" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"cyb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cyc" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cyd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cye" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Maintenance APC";pixel_x = -25;pixel_y = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cyf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cyg" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft) -"cyh" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cyi" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cyj" = (/obj/structure/sign/nosmoking_2{pixel_y = -32},/obj/machinery/light,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cyk" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cyl" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/bluegrid{icon_state = "dark";name = "Mainframe Floor";initial_gas_mix = "o2=0;n2=100;TEMP=80"},/area/tcommsat/server) -"cym" = (/obj/structure/window/reinforced/fulltile,/obj/structure/grille,/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"cyn" = (/obj/structure/table,/obj/item/device/radio/off,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/tcommsat/computer) -"cyo" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cyp" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/light,/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cyq" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cyr" = (/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/hallway/primary/aft) -"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) -"cyt" = (/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) -"cyu" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) -"cyv" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "yellow"},/area/hallway/primary/aft) -"cyw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/hallway/primary/aft) -"cyx" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/break_room) -"cyy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cyz" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cyA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cyB" = (/obj/machinery/camera{c_tag = "Engineering Foyer";dir = 1},/obj/structure/noticeboard{dir = 1;pixel_y = -27},/turf/open/floor/plasteel,/area/engine/break_room) -"cyC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cyD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cyE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cyF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cyG" = (/obj/machinery/camera{c_tag = "Atmospherics South West";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/atmos) -"cyH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"cyI" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos) -"cyJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/atmos) -"cyK" = (/obj/machinery/power/apc{dir = 2;name = "Incinerator APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/incinerator) -"cyL" = (/obj/structure/sign/fire{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cyM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating{icon_state = "warnplate"},/area/maintenance/asmaint) -"cyN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cyO" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cyP" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/maintenance/asmaint) -"cyQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/asmaint) -"cyR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint) -"cyS" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint) -"cyT" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/l3closet,/turf/open/floor/plating,/area/maintenance/asmaint) -"cyU" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cyV" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cyW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cyX" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel{dir = 2;icon_state = "bot"},/area/toxins/misc_lab) -"cyY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/toxins/misc_lab) -"cyZ" = (/obj/item/stack/sheet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cza" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"czb" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2) -"czc" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/asmaint2) -"czd" = (/obj/item/clothing/under/rank/vice,/obj/structure/closet,/obj/item/clothing/shoes/jackboots,/turf/open/floor/plating,/area/maintenance/aft) -"cze" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/aft) -"czf" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/closed/wall,/area/maintenance/aft) -"czg" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"czh" = (/turf/closed/wall/r_wall,/area/engine/chiefs_office) -"czi" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"czj" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/chiefs_office) -"czk" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/door/airlock/glass_command{name = "Chief Engineer";req_access_txt = "56"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/chiefs_office) -"czl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "yellow";dir = 10},/area/engine/break_room) -"czm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/break_room) -"czn" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 6;icon_state = "yellow"},/area/engine/break_room) -"czo" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 2;filter_type = "n2";on = 1},/turf/open/floor/plasteel,/area/atmos) -"czp" = (/turf/closed/wall,/area/maintenance/incinerator) -"czq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/incinerator) -"czr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/incinerator) -"czs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/toy/minimeteor,/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/asmaint) -"czt" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/roller,/turf/open/floor/plating,/area/maintenance/asmaint) -"czu" = (/obj/structure/disposalpipe/segment,/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/reagent_containers/food/snacks/donkpocket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"czv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/c_tube,/turf/open/floor/plating,/area/maintenance/asmaint) -"czw" = (/obj/structure/mopbucket,/obj/item/weapon/caution,/turf/open/floor/plating,/area/maintenance/asmaint) -"czx" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"czy" = (/obj/machinery/door/airlock/maintenance{name = "Air Supply Maintenance";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"czz" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance";req_access_txt = "47"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/toxins/misc_lab) -"czA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/toxins/misc_lab) -"czB" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/asmaint2) -"czC" = (/obj/machinery/door/airlock/maintenance{name = "Firefighting equipment";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"czD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/maintenance/portsolar) -"czE" = (/turf/closed/wall/r_wall,/area/maintenance/portsolar) -"czF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft) -"czG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/aft) -"czH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"czI" = (/obj/structure/closet/wardrobe/black,/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"czJ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"czK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"czL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"czM" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) -"czN" = (/obj/machinery/suit_storage_unit/ce,/turf/open/floor/plasteel{dir = 4;icon_state = "warnwhite"},/area/engine/chiefs_office) -"czO" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"czP" = (/obj/machinery/light{dir = 1},/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"czQ" = (/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"czR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"czS" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "CE Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"czT" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/engineering) -"czV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/engine/engineering) -"czW" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/atmos) -"czX" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/atmos) -"czY" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/atmos) -"czZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos) -"cAa" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;filter_type = "o2";on = 1},/turf/open/floor/plasteel,/area/atmos) -"cAb" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos) -"cAc" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos) -"cAd" = (/obj/machinery/chem_master,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAe" = (/obj/structure/chair/withwheels/wheelchair,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/kitchenspike_frame,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAh" = (/obj/structure/table/wood,/obj/item/weapon/staplegun,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAi" = (/obj/structure/table/wood,/obj/item/weapon/retractor/alien,/obj/item/weapon/reagent_containers/glass/bowl,/turf/open/floor/wood,/area/maintenance/incinerator) -"cAj" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint) -"cAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAl" = (/obj/structure/disposalpipe/segment,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAn" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cAq" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAs" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/mob/living/simple_animal/mouse/gray,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAw" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"cAy" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAz" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAB" = (/obj/structure/rack{dir = 1},/obj/effect/decal/cleanable/cobweb2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAC" = (/obj/machinery/door/airlock/maintenance{name = "Research Delivery access";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cAD" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cAE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/portsolar) -"cAF" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/portsolar) -"cAG" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/portsolar) -"cAH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/portsolar) -"cAI" = (/obj/machinery/camera{c_tag = "Aft Port Solar Access";dir = 4},/obj/machinery/light/small{dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) -"cAJ" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) -"cAK" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"cAN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cAO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"cAP" = (/obj/machinery/computer/atmos_alert,/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Engineer's Desk";departmentType = 3;name = "Chief Engineer RC";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cAQ" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/lighter,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/weapon/stamp/ce,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cAR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cAS" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cAT" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cAU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cAV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cAW" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"cAX" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel{icon_state = "red";dir = 10},/area/atmos) -"cAY" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2_in";name = "Nitrogen Supply Control";output_tag = "n2_out";sensors = list("n2_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "red"},/area/atmos) -"cAZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "N2 Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "red";dir = 6},/area/atmos) -"cBa" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/atmos) -"cBb" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel{icon_state = "blue";dir = 10},/area/atmos) -"cBc" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "o2_in";name = "Oxygen Supply Control";output_tag = "o2_out";sensors = list("o2_sensor" = "Tank")},/turf/open/floor/plasteel{dir = 0;icon_state = "blue"},/area/atmos) -"cBd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "blue";dir = 6},/area/atmos) -"cBe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel{icon_state = "arrival";dir = 10},/area/atmos) -"cBf" = (/obj/machinery/computer/atmos_control/tank{frequency = 1443;input_tag = "air_in";name = "Mixed Air Supply Control";output_tag = "air_out";sensors = list("air_sensor" = "Tank")},/turf/open/floor/plasteel{icon_state = "arrival"},/area/atmos) -"cBg" = (/obj/machinery/camera{c_tag = "Atmospherics South East";dir = 1},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Air Outlet Pump";on = 1},/turf/open/floor/plasteel{icon_state = "arrival";dir = 6},/area/atmos) -"cBh" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos) -"cBi" = (/turf/open/floor/plating,/area/atmos) -"cBj" = (/turf/open/floor/wood,/area/maintenance/incinerator) -"cBk" = (/turf/open/floor/wood{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/maintenance/incinerator) -"cBl" = (/obj/effect/decal/cleanable/greenglow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/maintenance/incinerator) -"cBm" = (/turf/open/floor/wood{tag = "icon-wood-broken5";icon_state = "wood-broken5"},/area/maintenance/incinerator) -"cBn" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/glass/beaker,/obj/machinery/light/small{dir = 4},/obj/item/weapon/lighter/greyscale,/turf/open/floor/wood,/area/maintenance/incinerator) -"cBo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/maintenance/asmaint) -"cBp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBq" = (/obj/structure/chair,/obj/item/weapon/storage/fancy/cigarettes,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBr" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/asmaint2) -"cBt" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cBv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBw" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBx" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBy" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBz" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBB" = (/obj/structure/rack{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBE" = (/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{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBF" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cBG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/port) -"cBH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cBI" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cBJ" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cBK" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cBL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBO" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBP" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBQ" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/portsolar) -"cBR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/aft) -"cBS" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft) -"cBT" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft) -"cBU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cBV" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/aft) -"cBW" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cBZ" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Engineering APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCa" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/recharge_station,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCb" = (/obj/machinery/portable_atmospherics/pump,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCd" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCe" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCf" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cCg" = (/turf/closed/wall,/area/engine/engineering) -"cCh" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/engine/engineering) -"cCi" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel,/area/engine/engineering) -"cCj" = (/obj/machinery/computer/station_alert,/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -10;req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage";name = "Engineering Secure Storage";pixel_x = -24;pixel_y = 0;req_access_txt = "11"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = -24;pixel_y = 10;req_access_txt = "24"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cCk" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cCl" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper/monitorkey,/obj/item/weapon/coin/plasma,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cCm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cCn" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cCo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cCq" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cCr" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"cCs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/atmos) -"cCt" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cCu" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cCv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos) -"cCw" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/atmos) -"cCx" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/wood,/area/maintenance/incinerator) -"cCy" = (/obj/effect/decal/cleanable/vomit/old,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/wood,/area/maintenance/incinerator) -"cCz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/maintenance/incinerator) -"cCA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/wood,/area/maintenance/incinerator) -"cCC" = (/obj/structure/table,/obj/item/weapon/cartridge/medical,/obj/item/pizzabox/mushroom,/turf/open/floor/plating,/area/maintenance/asmaint) -"cCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset/full,/turf/open/floor/plating,/area/maintenance/asmaint) -"cCE" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/asmaint) -"cCF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCG" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCH" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCK" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCL" = (/obj/machinery/power/apc{dir = 8;name = "Science Maintenance APC";pixel_x = -25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/camera{c_tag = "Aft Starboard Solar Access";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCM" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCN" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCO" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/switchblade{force = 12},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCP" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cCQ" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cCR" = (/obj/machinery/power/solar_control{id = "portsolar";name = "Aft Port Solar Control";track = 0},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) -"cCS" = (/turf/open/floor/plating,/area/maintenance/portsolar) -"cCT" = (/obj/machinery/power/apc{dir = 4;name = "Aft Port Solar APC";pixel_x = 23;pixel_y = 2},/obj/machinery/camera{c_tag = "Aft Port Solar Control";dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar) -"cCU" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft) -"cCV" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cCW" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cCY" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/engine/engineering) -"cCZ" = (/turf/open/floor/plating,/area/engine/engineering) -"cDa" = (/obj/machinery/door/poddoor{id = "Secure Storage";name = "secure storage"},/turf/open/floor/plating,/area/engine/engineering) -"cDb" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"cDc" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cDd" = (/turf/open/floor/plasteel,/area/engine/engineering) -"cDe" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cDf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cDg" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cDh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) -"cDi" = (/obj/machinery/camera{c_tag = "Chief Engineer's Office";dir = 4;network = list("SS13")},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/computer/card/minor/ce,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDj" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/item/weapon/storage/fancy/cigarettes,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDk" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDl" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/structure/filingcabinet/chestdrawer,/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDm" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) -"cDn" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) -"cDo" = (/obj/machinery/door/poddoor/preopen{id = "Engineering";name = "engineering security door"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engineering) -"cDp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space) -"cDq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space) -"cDr" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space) -"cDs" = (/obj/structure/sign/science,/turf/closed/wall,/area/maintenance/incinerator) -"cDt" = (/obj/structure/chair{dir = 4},/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/incinerator) -"cDu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/wood,/area/maintenance/incinerator) -"cDv" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/wood,/area/maintenance/incinerator) -"cDw" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/item/clothing/tie/black,/turf/open/floor/wood,/area/maintenance/incinerator) -"cDx" = (/obj/structure/table/wood,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/wood,/area/maintenance/incinerator) -"cDy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/maintenance/incinerator) -"cDz" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/maintenance/incinerator) -"cDA" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/shard,/mob/living/simple_animal/mouse/white,/turf/open/floor/plating,/area/maintenance/asmaint) -"cDB" = (/obj/structure/disposalpipe/segment,/obj/item/weapon/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/asmaint) -"cDC" = (/obj/structure/closet,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cDD" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cDE" = (/obj/structure/rack,/obj/effect/decal/cleanable/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cDF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cDG" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cDH" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cDI" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cDJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cDK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cDM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cDN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cDQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cDR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDU" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4;pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3;pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/machinery/light_switch{pixel_x = 27},/obj/item/weapon/cartridge/atmos,/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cDV" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"cDW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/engineering) -"cDX" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/atmos) -"cDY" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{frequency = 1443;id_tag = "mair_in_meter";name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/atmos) -"cDZ" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{frequency = 1443;id_tag = "mair_out_meter";name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/atmos) -"cEa" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/maintenance/incinerator) -"cEb" = (/obj/item/clothing/head/cone,/obj/item/weapon/restraints/handcuffs/cable/orange,/turf/open/floor/wood,/area/maintenance/incinerator) -"cEc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/maintenance/incinerator) -"cEd" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/asmaint) -"cEe" = (/obj/machinery/door/airlock/maintenance{name = "Biohazard Disposals";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cEf" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/asmaint2) -"cEg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEh" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/mouse,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEk" = (/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEl" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEm" = (/obj/structure/sink{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEn" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cEo" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cEp" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cEq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cEr" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cEs" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cEt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cEz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cEA" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/computer/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/turf/open/floor/plasteel,/area/engine/engineering) -"cEB" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/engineering) -"cED" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cEE" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cEF" = (/obj/machinery/door/airlock/glass_command{name = "Chief Engineer";req_access_txt = "56"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel{dir = 2;icon_state = "neutralfull"},/area/engine/chiefs_office) -"cEG" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office) -"cEH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/chiefs_office) -"cEI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) -"cEJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cEK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel{dir = 5;icon_state = "yellow"},/area/engine/engineering) -"cEL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "n2_in"},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cEM" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2_sensor"},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cEN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "n2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cEO" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "o2_in"},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cEP" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "o2_sensor"},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cEQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "o2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cER" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1443;id = "air_in"},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cES" = (/obj/machinery/air_sensor{frequency = 1443;id_tag = "air_sensor"},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cET" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1;external_pressure_bound = 0;frequency = 1443;icon_state = "vent_map";id_tag = "air_out";internal_pressure_bound = 2000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cEU" = (/obj/machinery/iv_drip,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/maintenance/incinerator) -"cEV" = (/turf/open/floor/wood{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/maintenance/incinerator) -"cEW" = (/obj/item/clothing/suit/toggle/labcoat/mad,/turf/open/floor/wood,/area/maintenance/incinerator) -"cEX" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/incinerator) -"cEY" = (/obj/structure/table/wood,/obj/item/organ/internal/butt/xeno,/turf/open/floor/wood,/area/maintenance/incinerator) -"cEZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cFa" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/hidden{tag = "icon-manifold (NORTH)";icon_state = "manifold";dir = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"cFb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cFc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/asmaint) -"cFd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cFe" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/aft) -"cFf" = (/obj/structure/rack,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFl" = (/obj/structure/rack{dir = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFm" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFo" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFp" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFq" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cFr" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft) -"cFs" = (/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 = 32},/turf/open/floor/plating,/area/maintenance/aft) -"cFt" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cFu" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/engine/engine_smes) -"cFv" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) -"cFw" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/engine/engine_smes) -"cFx" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cFy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall,/area/engine/engineering) -"cFz" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cFC" = (/obj/structure/table,/obj/item/weapon/crowbar/large,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) -"cFD" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cFE" = (/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) -"cFF" = (/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) -"cFG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cFH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) -"cFI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cFJ" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) -"cFK" = (/obj/machinery/camera{c_tag = "Atmospherics N2 Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cFL" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cFM" = (/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cFN" = (/obj/machinery/camera{c_tag = "Atmospherics O2 Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cFO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cFP" = (/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cFQ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/camera{c_tag = "Atmospherics Air-mix Tank";dir = 4;network = list("SS13")},/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cFR" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cFS" = (/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cFT" = (/obj/machinery/iv_drip,/obj/effect/decal/cleanable/xenoblood/xsplatter,/turf/open/floor/wood,/area/maintenance/incinerator) -"cFU" = (/obj/item/weapon/kitchen/knife,/turf/open/floor/wood,/area/maintenance/incinerator) -"cFV" = (/obj/structure/table/wood,/obj/item/weapon/scalpel,/obj/item/weapon/wirecutters,/obj/item/organ/brain/alien,/turf/open/floor/wood,/area/maintenance/incinerator) -"cFW" = (/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/incinerator) -"cFX" = (/turf/open/floor/plating,/area/maintenance/incinerator) -"cFY" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/incinerator) -"cFZ" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGa" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGb" = (/obj/structure/disposalpipe/junction{dir = 2;icon_state = "pipe-y"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGc" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGd" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGe" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGf" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb2,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) -"cGg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGh" = (/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGi" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{tag = "icon-platingdmg3";icon_state = "platingdmg3"},/area/maintenance/asmaint2) -"cGj" = (/obj/structure/closet/toolcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGl" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/asmaint2) -"cGn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cGo" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) -"cGp" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cGq" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) -"cGr" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Engineering"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plasteel{icon_state = "bot"},/area/engine/engineering) -"cGs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"cGt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = -32;pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cGu" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 9;icon_state = "yellow"},/area/engine/engineering) -"cGD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cGE" = (/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/open/floor/plasteel,/area/engine/engineering) -"cGF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cGG" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cGH" = (/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) -"cGI" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "n2 floor";initial_gas_mix = "o2=0;n2=100000"},/area/atmos) -"cGJ" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "o2 floor";initial_gas_mix = "o2=100000;n2=0"},/area/atmos) -"cGK" = (/obj/machinery/light/small,/turf/open/floor/engine{name = "air floor";initial_gas_mix = "o2=2644;n2=10580"},/area/atmos) -"cGL" = (/obj/structure/table/wood,/obj/item/weapon/hatchet,/obj/item/weapon/lighter,/turf/open/floor/wood,/area/maintenance/incinerator) -"cGM" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/incinerator) -"cGN" = (/obj/structure/table/wood,/obj/item/weapon/pen,/obj/item/weapon/crowbar,/turf/open/floor/plating,/area/maintenance/incinerator) -"cGO" = (/obj/item/weapon/bedsheet/cult,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGP" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGQ" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGS" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGT" = (/obj/machinery/light/small,/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/clipboard,/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/plating,/area/maintenance/asmaint) -"cGU" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cGV" = (/obj/structure/chair{dir = 8},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cGW" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) -"cGX" = (/obj/machinery/vending/cola,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cGY" = (/obj/structure/reagent_dispensers,/turf/open/floor/plating{tag = "icon-panelscorched";icon_state = "panelscorched"},/area/maintenance/asmaint2) -"cGZ" = (/obj/structure/table/glass,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cHa" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cHb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cHc" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"cHd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHe" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 4},/area/engine/engine_smes) -"cHf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/engine_smes) -"cHg" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel{icon_state = "vault";dir = 1},/area/engine/engine_smes) -"cHh" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "SMES Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHi" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Engineering Delivery";req_access_txt = "10"},/turf/open/floor/plasteel{icon_state = "delivery"},/area/engine/engineering) -"cHk" = (/obj/machinery/camera{c_tag = "Engineering Middle";dir = 4;network = list("SS13")},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) -"cHl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cHm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cHp" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) -"cHq" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{dir = 4;icon_state = "yellow"},/area/engine/engineering) -"cHr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2;name = "Waste Out";on = 1},/turf/open/floor/plating,/area/maintenance/asmaint) -"cHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/emitter{anchored = 1;dir = 4;state = 2},/turf/open/floor/plating,/area/maintenance/asmaint) -"cHt" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/asmaint) -"cHu" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/maintenance/asmaint2) -"cHv" = (/obj/structure/table,/obj/item/weapon/weldingtool,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cHw" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cHx" = (/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) -"cHy" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access";req_access_txt = "10"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cHz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/starboardsolar) -"cHA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHB" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/terminal{icon_state = "term";dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHC" = (/obj/machinery/door/window{name = "SMES Chamber";req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHD" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHE" = (/obj/structure/window/reinforced,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/engine_smes) -"cHF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cHG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) -"cHH" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "SMES Access";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) -"cHI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/engine/engineering) -"cHJ" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/engineering) -"cHK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHL" = (/obj/machinery/firealarm{pixel_y = 24},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHO" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHQ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cHR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cHT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cHU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cHW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cHX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cHY" = (/obj/structure/table,/obj/item/device/flashlight{pixel_y = 5},/obj/item/clothing/ears/earmuffs{pixel_x = -5;pixel_y = 6},/obj/item/weapon/airlock_painter,/turf/open/floor/plasteel,/area/engine/engineering) -"cHZ" = (/obj/machinery/camera{c_tag = "Engineering East";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) -"cIa" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/asmaint) -"cIb" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cIc" = (/turf/open/floor/plating,/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating{tag = "icon-platingdmg2";icon_state = "platingdmg2"},/area/maintenance/asmaint2) -"cId" = (/obj/structure/table/glass,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cIe" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plating,/area/space) -"cIf" = (/obj/machinery/power/apc{dir = 8;name = "Aft Starboard Solar APC";pixel_x = -26;pixel_y = 3},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIg" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIh" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) -"cIk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cIl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) -"cIm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/engine_smes) -"cIn" = (/obj/machinery/door/airlock/engineering{name = "SMES Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) -"cIo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) -"cIp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) -"cIq" = (/obj/machinery/door/airlock/engineering{name = "SMES Room";req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) -"cIr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engineering) -"cIs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cIu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cIv" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cIw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"cIx" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "loadingarea"},/area/hallway/secondary/entry) -"cIz" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 1},/area/hallway/primary/fore) -"cIA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cIB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall,/area/maintenance/fsmaint) -"cIC" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{icon_state = "redcorner";dir = 4},/area/hallway/primary/fore) -"cID" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fsmaint) -"cIF" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/structure/window{tag = "icon-window (NORTH)";icon_state = "window";dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/grass,/area/hallway/secondary/exit) -"cIG" = (/obj/structure/window{tag = "icon-window (WEST)";icon_state = "window";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/grass,/area/hallway/secondary/exit) -"cIH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cII" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) -"cIJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{pixel_x = -32},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) -"cIK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cIL" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/engineering) -"cIM" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"cIN" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall_f6";dir = 2},/area/shuttle/pod_4) -"cIO" = (/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/pod_4) -"cIP" = (/turf/open/space,/turf/closed/wall/shuttle{dir = 2;icon_state = "swall_f10";layer = 2},/area/shuttle/pod_4) -"cIQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/space,/area/space) -"cIR" = (/obj/structure/table_frame,/obj/item/weapon/wirerod,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "warnplate";dir = 5},/area/maintenance/asmaint2) -"cIS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space) -"cIT" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Aft Starboard Solar Control";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIU" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIV" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cIW" = (/obj/machinery/biogenerator,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cIX" = (/obj/machinery/seed_extractor,/turf/open/floor/plating,/area/maintenance/asmaint2) -"cIY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cIZ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Research Shuttle";req_access_txt = "7"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/toxins/shuttledock) -"cJa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engine_smes) -"cJb" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/closed/wall,/area/toxins/shuttledock) -"cJc" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "warning"},/area/engine/engine_smes) -"cJd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "white"},/area/maintenance/asmaint2) -"cJe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) -"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engine_smes) -"cJg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cJh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cJi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cJj" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint";req_access = null;req_access_txt = "1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/nuke_storage) -"cJk" = (/obj/structure/window,/turf/open/floor/plating,/area/toxins/mixing) -"cJl" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior";idInterior = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Console";pixel_x = 8;pixel_y = 22;req_access_txt = "0";req_one_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "white"},/area/medical/virology) -"cJm" = (/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cJn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cJo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft) -"cJp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cJq" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/junction{tag = "icon-pipe-j2 (NORTH)";icon_state = "pipe-j2";dir = 1},/turf/open/floor/plating,/area/maintenance/aft) -"cJr" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cJs" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/engine/engineering) -"cJt" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) -"cJu" = (/obj/structure/table,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel{icon_state = "yellow"},/area/engine/engineering) -"cJv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cJw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"cJx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cJy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/engineering) -"cJz" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/engineering) -"cJA" = (/obj/machinery/door/airlock/external{name = "Escape Pod Four";req_access = null;req_access_txt = "0"},/turf/open/floor/plating,/area/engine/engineering) -"cJB" = (/obj/machinery/door/airlock/shuttle{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;id = "pod4";name = "escape pod 4"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cJC" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_y = -30},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cJD" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -30;possible_destinations = "asteroid_pod4";shuttleId = "pod4"},/turf/open/floor/plasteel/shuttle,/area/shuttle/pod_4) -"cJE" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_4) -"cJF" = (/obj/docking_port/stationary/random{dir = 4;id = "asteroid_pod4"},/turf/open/space,/area/space) -"cJG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/space) -"cJH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space) -"cJI" = (/obj/machinery/power/solar_control{id = "starboardsolar";name = "Aft Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cJJ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cJK" = (/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 = -32},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cJL" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/engine/engineering) -"cJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "32"},/turf/open/floor/plasteel,/area/engine/engineering) -"cJN" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/apc,/turf/open/floor/plasteel,/area/engine/engineering) -"cJO" = (/obj/structure/table,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/cell_charger,/turf/open/floor/plasteel,/area/engine/engineering) -"cJP" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) -"cJQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cJR" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Engineering West";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/engineering) -"cJS" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel,/area/engine/engineering) -"cJT" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) -"cJU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = -32},/obj/machinery/light,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) -"cJV" = (/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) -"cJW" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/engine/engineering) -"cJX" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plating,/area/engine/engineering) -"cJY" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/plating,/area/engine/engineering) -"cJZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/engine/engineering) -"cKa" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cKb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "32";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cKd" = (/turf/closed/wall/r_wall,/area/engine/port_engineering) -"cKe" = (/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_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft) -"cKf" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKg" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/engineering) -"cKh" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/engineering) -"cKi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cKj" = (/obj/structure/sign/pods{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engineering) -"cKk" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/engine/engineering) -"cKl" = (/turf/open/floor/plating,/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/shuttle{icon_state = "swall_f5";dir = 2},/area/shuttle/pod_4) -"cKm" = (/turf/open/space,/turf/closed/wall/shuttle{icon_state = "swall_f9";dir = 2},/area/shuttle/pod_4) -"cKn" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cKo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cKp" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cKq" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKr" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{dir = 4;icon_state = "yellowcorner"},/area/engine/engineering) -"cKs" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_construction,/obj/machinery/camera{c_tag = "Engineering Materials";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/engineering) -"cKt" = (/obj/structure/sign/map/left{pixel_y = 32},/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/engine/engineering) -"cKu" = (/obj/structure/sign/map/right{pixel_y = 32},/turf/open/floor/plasteel,/area/engine/engineering) -"cKv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating/airless,/area/engine/engineering) -"cKw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cKx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cKy" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cKz" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Engineering";departmentType = 4;name = "Engineering RC";pixel_y = 30},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellowcorner"},/area/engine/engineering) -"cKD" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1;icon_state = "yellow"},/area/engine/engineering) -"cKE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cKF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cKG" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKH" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar) -"cKI" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cKJ" = (/obj/machinery/computer/station_alert,/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cKL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKM" = (/obj/structure/table,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/apc,/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKN" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel{dir = 5;icon_state = "warning"},/area/engine/gravity_generator) -"cKO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cKP" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_y = 6},/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKQ" = (/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKR" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft) -"cKS" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft) -"cKT" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "32"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering) -"cKU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cKV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cKW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cKX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cKY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cKZ" = (/obj/structure/chair/withwheels/office/dark{dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLa" = (/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLb" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Port Engineering APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/obj/machinery/camera{c_tag = "Port Engineering North"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLc" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"cLe" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cLf" = (/obj/machinery/camera{c_tag = "Engineering MiniSat Access";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cLg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cLh" = (/obj/structure/transit_tube{tag = "icon-Block";icon_state = "Block"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) -"cLi" = (/obj/machinery/door/airlock/external{name = "External Access";req_access = null;req_access_txt = "13"},/obj/structure/sign/securearea{name = "EXTERNAL AIRLOCK";desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;pixel_x = 32;pixel_y = 32},/turf/open/floor/plating,/area/maintenance/asmaint2) -"cLj" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "10"},/turf/open/floor/plating,/area/engine/port_engineering) -"cLk" = (/obj/effect/decal/cleanable/vomit/old,/obj/item/weapon/kitchen/fork,/turf/open/floor/plating,/area/maintenance/aft) -"cLl" = (/obj/item/weapon/lighter{lit = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft) -"cLm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/machinery/camera{c_tag = "Gravity Generator Entrance";dir = 4;network = list("SS13")},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/gravity_generator) -"cLn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cLo" = (/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/gravity_generator) -"cLp" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50;pixel_x = 5},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2},/obj/item/stack/sheet/metal{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) -"cLq" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = 5},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -2},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -8},/turf/open/floor/plasteel,/area/engine/engineering) -"cLr" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = -4},/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = -6},/obj/item/stack/sheet/plasteel{amount = 50;pixel_x = 5},/turf/open/floor/plasteel,/area/engine/engineering) -"cLs" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 18},/obj/item/weapon/storage/backpack/industrial,/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel,/area/engine/engineering) -"cLt" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel,/area/engine/engineering) -"cLu" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/engineering) -"cLv" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/engineering) -"cLw" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/clothing/ears/earmuffs{pixel_x = -3;pixel_y = -2},/turf/open/floor/plasteel,/area/engine/engineering) -"cLx" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) -"cLy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"cLz" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 3;pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) -"cLA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cLB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cLC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/supermatter) -"cLD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cLE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cLF" = (/obj/machinery/door/airlock/command{name = "MiniSat Access";req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cLG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cLH" = (/obj/structure/transit_tube/station{dir = 8;icon_state = "closed";reverse_launch = 1;tag = "icon-closed (EAST)"},/obj/structure/transit_tube_pod,/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) -"cLI" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cLJ" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cLK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator";req_access_txt = "11"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cLL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cLM" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cLN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/engineering) -"cLO" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cLP" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cLQ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cLR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Supermatter Control Room";req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cLS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/supermatter) -"cLT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/supermatter) -"cLU" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLV" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLW" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLX" = (/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;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cLZ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cMa" = (/obj/structure/table,/obj/item/weapon/pocketknife,/obj/item/weapon/reagent_containers/food/snacks/beans{bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30);desc = "Smells kind of funny."},/turf/open/floor/plating,/area/maintenance/aft) -"cMb" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/engineering) -"cMc" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/engine/engineering) -"cMd" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engineering) -"cMe" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/engineering) -"cMf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cMg" = (/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cMh" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cMi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/engine/engine_smes) -"cMj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/engine_smes) -"cMk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cMl" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/engineering) -"cMm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cMn" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/obj/item/weapon/reagent_containers/pill/charcoal,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"cMo" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering) -"cMp" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/engine/engineering) -"cMq" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering) -"cMr" = (/obj/structure/chair/withwheels/office/light,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cMs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{dir = 4;icon_state = "warning"},/area/engine/gravity_generator) -"cMt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cMu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cMv" = (/obj/structure/closet/radiation,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark (NORTHWEST)";icon_state = "warndark";dir = 9},/area/engine/supermatter) -"cMw" = (/turf/closed/wall/r_wall,/area/engine/supermatter) -"cMx" = (/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) -"cMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) -"cMz" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark (NORTHEAST)";icon_state = "warndark";dir = 5},/area/engine/supermatter) -"cMA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/engine/supermatter) -"cMB" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/engineering) -"cMC" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/engine/engineering) -"cMD" = (/obj/structure/transit_tube{tag = "icon-N-SE";icon_state = "N-SE"},/turf/open/space,/area/space) -"cME" = (/obj/structure/transit_tube{icon_state = "D-SW"},/turf/open/space,/area/space) -"cMF" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cMG" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Gravity Generator APC";pixel_x = -25;pixel_y = 1},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/engine/gravity_generator) -"cMH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/gravity_generator) -"cMI" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{dir = 2;icon_state = "warning"},/area/engine/gravity_generator) -"cMJ" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/gravity_generator) -"cMK" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cML" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering) -"cMM" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) -"cMN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/engineering) -"cMP" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cMQ" = (/obj/structure/transit_tube{icon_state = "D-NE"},/turf/open/space,/area/space) -"cMR" = (/obj/structure/transit_tube{tag = "icon-E-NW";icon_state = "E-NW"},/turf/open/space,/area/space) -"cMS" = (/obj/structure/transit_tube,/obj/structure/lattice,/turf/open/space,/area/space) -"cMT" = (/obj/structure/transit_tube,/turf/open/space,/area/space) -"cMU" = (/obj/structure/transit_tube{tag = "icon-E-W-Pass";icon_state = "E-W-Pass"},/turf/open/space,/area/space) -"cMV" = (/obj/structure/transit_tube{icon_state = "W-SE"},/turf/open/space,/area/space) -"cMW" = (/obj/structure/transit_tube{icon_state = "D-SW"},/obj/structure/lattice,/turf/open/space,/area/space) -"cMX" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cMY" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cMZ" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -32;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNa" = (/obj/structure/grille,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_engineering{name = "Gravity Generator";req_access_txt = "11";req_one_access_txt = "0"},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNc" = (/obj/structure/grille,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 32;pixel_y = 0},/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNd" = (/obj/structure/table,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cNe" = (/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cNf" = (/obj/machinery/suit_storage_unit/engine,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cNg" = (/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cNh" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/obj/structure/lattice,/turf/open/space,/area/space) -"cNi" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNj" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/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},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNk" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNl" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNm" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNn" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cNo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNp" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNr" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance";req_access_txt = "10"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/engine/port_engineering) -"cNs" = (/turf/open/floor/plating/airless{dir = 9;icon_state = "warnplate"},/area/space) -"cNt" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) -"cNu" = (/turf/open/floor/plating/airless{dir = 5;icon_state = "warnplate"},/area/space) -"cNv" = (/obj/item/weapon/crowbar,/turf/open/space,/area/space) -"cNw" = (/obj/structure/transit_tube{icon_state = "D-NE"},/obj/structure/lattice,/turf/open/space,/area/space) -"cNx" = (/turf/closed/wall/r_wall,/area/aisat) -"cNy" = (/obj/structure/cable,/obj/machinery/power/solar{id = "starboardsolar";name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cNz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{dir = 8;icon_state = "warning"},/area/engine/engine_smes) -"cNA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "warningcorner";dir = 2},/area/engine/engine_smes) -"cNC" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/firealarm{dir = 4;pixel_x = 26;pixel_y = 6},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engine_smes) -"cND" = (/obj/structure/table,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/turf/open/floor/plasteel,/area/engine/engineering) -"cNE" = (/obj/structure/transit_tube{tag = "icon-D-NE";icon_state = "D-NE"},/turf/open/space,/area/space) -"cNF" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/aisat) -"cNG" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/aisat) -"cNH" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/aisat) -"cNI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Gravity Generator";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNJ" = (/obj/item/weapon/weldingtool,/turf/open/space,/area/space) -"cNK" = (/turf/open/floor/plating/airless{dir = 10;icon_state = "warnplate"},/area/space) -"cNM" = (/turf/open/floor/plating/airless{dir = 6;icon_state = "warnplate"},/area/space) -"cNN" = (/obj/structure/transit_tube{tag = "icon-D-NE";icon_state = "D-NE"},/obj/structure/lattice,/turf/open/space,/area/space) -"cNO" = (/obj/structure/transit_tube{icon_state = "NW-SE"},/turf/open/space,/area/space) -"cNP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) -"cNQ" = (/obj/machinery/bluespace_beacon,/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) -"cNR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/aisat) -"cNS" = (/obj/machinery/gravity_generator/main/station,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNT" = (/obj/structure/transit_tube{tag = "icon-S-NW";icon_state = "S-NW"},/obj/structure/lattice,/turf/open/space,/area/space) -"cNU" = (/obj/machinery/camera{c_tag = "MiniSat Teleporter";dir = 1;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = -28;pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cNV" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cNW" = (/obj/machinery/button/door{id = "teledoor";name = "AI Satellite Teleport Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "17;65"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cNX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cNZ" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cOa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cOb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel{icon_state = "vault";dir = 6},/area/engine/gravity_generator) -"cOc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cOd" = (/turf/closed/wall,/area/aisat) -"cOe" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/aisat) -"cOf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/aisat) -"cOg" = (/obj/machinery/door/airlock/hatch{name = "Teleporter Room";req_access_txt = "17;65"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOh" = (/obj/machinery/door/poddoor/shutters{id = "teledoor";name = "AI Satellite Teleport Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cOj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cOk" = (/obj/structure/transit_tube{icon_state = "N-S"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/aisat) -"cOl" = (/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/aisat) -"cOm" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 0;pixel_y = 25},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) -"cOn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) -"cOp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cOq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/aisat) -"cOr" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cOs" = (/turf/open/floor/plasteel{tag = "icon-warndark (WEST)";icon_state = "warndark";dir = 8},/area/engine/supermatter) -"cOt" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cOu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cOv" = (/obj/structure/transit_tube/station{dir = 4;icon_state = "closed";reverse_launch = 1;tag = "icon-closed (EAST)"},/turf/open/floor/plating,/area/aisat) -"cOw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) -"cOx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) -"cOy" = (/obj/machinery/door/airlock/external{name = "MiniSat External Access";req_access = null;req_access_txt = "65;13"},/turf/open/floor/plating,/area/aisat) -"cOz" = (/turf/open/floor/plating,/area/aisat) -"cOA" = (/turf/open/floor/plasteel{tag = "icon-warndark (EAST)";icon_state = "warndark";dir = 4},/area/engine/supermatter) -"cOB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cOC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cOD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/port_engineering) -"cOE" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/port_engineering) -"cOF" = (/obj/structure/transit_tube{dir = 1;icon_state = "Block";tag = "icon-Block (NORTH)"},/turf/open/floor/plating,/area/aisat) -"cOG" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/aisat) -"cOH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) -"cOI" = (/obj/machinery/hologram/holopad,/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) -"cOK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cOL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/aisat) -"cOM" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cON" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"cOO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "11";req_one_access_txt = "0"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cOP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "MiniSat Entrance";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/power/apc{dir = 8;name = "MiniSat External Power APC";pixel_x = -27;pixel_y = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/aisat) -"cOQ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) -"cOS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/aisat) -"cOT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/aisat) -"cOV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/aisat) -"cOW" = (/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat");pixel_x = 0;pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) -"cOX" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) -"cOY" = (/obj/machinery/turretid{control_area = "AI Satellite Antechamber";enabled = 1;icon_state = "control_standby";name = "Antechamber Turret Control";pixel_x = 0;pixel_y = -24;req_access = list(65)},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/aisat) -"cOZ" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless{icon_state = "solarpanel"},/area/solar/starboard) -"cPa" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) -"cPb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/aisat) -"cPc" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plating,/area/aisat) -"cPd" = (/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/aisat) -"cPe" = (/turf/closed/wall,/area/turret_protected/aisat_interior) -"cPf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/turret_protected/aisat_interior) -"cPg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Antechamber";req_one_access_txt = "65"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/turret_protected/aisat_interior) -"cPi" = (/obj/structure/window/reinforced{dir = 4},/turf/closed/wall,/area/aisat) -"cPj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cPk" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/aisat) -"cPl" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space) -"cPm" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cPn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) -"cPo" = (/obj/structure/lattice,/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/space,/area/space) -"cPp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) -"cPs" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPt" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) -"cPu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPv" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPw" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/window/reinforced,/turf/open/space,/area/space) -"cPx" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space) -"cPy" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/aisat) -"cPz" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_sw";name = "southwest of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"cPA" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) -"cPB" = (/obj/machinery/door/window{dir = 1;name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cPC" = (/obj/structure/window/reinforced,/obj/machinery/door/window{base_state = "right";dir = 1;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cPD" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cPE" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPG" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) -"cPI" = (/obj/machinery/hologram/holopad,/obj/effect/landmark/start{name = "Cyborg"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1},/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) -"cPK" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (WEST)";dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPL" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPM" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cPN" = (/obj/structure/window/reinforced,/obj/machinery/door/window{dir = 1;name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/aisat) -"cPO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window{base_state = "right";dir = 1;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "13;65"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/aisat) -"cPP" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cPQ" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPR" = (/turf/open/floor/plasteel{tag = "icon-darkbluecorners (WEST)";icon_state = "darkbluecorners";dir = 8},/area/turret_protected/aisat_interior) -"cPS" = (/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cPT" = (/turf/open/floor/plasteel{tag = "icon-darkbluecorners";icon_state = "darkbluecorners"},/area/turret_protected/aisat_interior) -"cPU" = (/obj/machinery/power/apc{aidisabled = 0;cell_type = 2500;dir = 4;name = "MiniSat Antechamber APC";pixel_x = 29;pixel_y = 0},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cPV" = (/obj/structure/window/reinforced{dir = 1},/turf/open/space,/area/space) -"cPW" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) -"cPX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) -"cPY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space) -"cPZ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior North West";dir = 8;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cQa" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/simple_animal/bot/floorbot{on = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cQb" = (/obj/machinery/porta_turret{ai = 1;dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/aisat_interior) -"cQc" = (/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/turret_protected/aisat_interior) -"cQd" = (/obj/machinery/camera/motion{c_tag = "MiniSat Antechamber";dir = 1;network = list("MiniSat")},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_y = -29},/turf/open/floor/plasteel{tag = "icon-darkblue";icon_state = "darkblue"},/area/turret_protected/aisat_interior) -"cQe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/bot/cleanbot{on = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/aisat_interior) -"cQf" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "MiniSat Exterior North East";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) -"cQg" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space) -"cQh" = (/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQj" = (/obj/machinery/ai_status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQk" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{icon_state = "door_locked";locked = 1;name = "AI Chamber";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQm" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQp" = (/obj/structure/chair/withwheels/office/dark{dir = 8},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQq" = (/obj/machinery/camera{c_tag = "AI Chamber North";dir = 2;network = list("MiniSat","RD");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) -"cQr" = (/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) -"cQs" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/turret_protected/ai) -"cQt" = (/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQw" = (/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQy" = (/obj/machinery/porta_turret{ai = 1;dir = 4},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQz" = (/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -21},/obj/machinery/ai_slipper{icon_state = "motion0";uses = 10},/obj/machinery/light,/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQA" = (/obj/machinery/porta_turret{ai = 1;dir = 8},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cQC" = (/turf/closed/wall,/area/turret_protected/ai) -"cQD" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) -"cQE" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 0;pixel_y = -25},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQF" = (/obj/machinery/ai_slipper{icon_state = "motion0";uses = 10},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQG" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 27},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 27;pixel_y = 5},/obj/effect/landmark/start{name = "AI"},/obj/machinery/requests_console{department = "AI";departmentType = 5;pixel_x = 32;pixel_y = 32},/obj/machinery/newscaster/security_unit{pixel_x = -32;pixel_y = 32},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQH" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = 27;pixel_y = 5},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 0;pixel_y = -25},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQI" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "AI Chamber APC";pixel_y = 24},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQJ" = (/obj/machinery/door/window{name = "AI Core Door";req_access_txt = "16"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQK" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/machinery/turretid{name = "AI Chamber turret control";pixel_x = 5;pixel_y = 24},/obj/machinery/flasher{id = "AI";pixel_x = -6;pixel_y = 24},/obj/machinery/camera/motion{c_tag = "AI Chamber South";dir = 2;network = list("RD","MiniSat")},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/turret_protected/ai) -"cQM" = (/obj/machinery/light,/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQN" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQO" = (/obj/machinery/hologram/holopad,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQP" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior South West";dir = 8;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cQR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQS" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/turret_protected/ai) -"cQT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "MiniSat Exterior South East";dir = 4;network = list("MiniSat");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/aisat) -"cQV" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_se";name = "southeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"cQW" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQX" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/closed/wall/r_wall,/area/turret_protected/ai) -"cQY" = (/turf/closed/wall,/area/ai_monitored/storage/secure) -"cQZ" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cRa" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cRb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure) -"cRc" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cRd" = (/obj/structure/rack,/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/item/clothing/head/welding,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cRe" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space) -"cRf" = (/obj/structure/window/reinforced,/turf/open/space,/area/space) -"cRg" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space) -"cRh" = (/obj/machinery/power/apc{dir = 8;name = "MiniSat Maint APC";pixel_x = -24},/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/ai_monitored/storage/secure) -"cRi" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air Out";on = 1},/turf/open/floor/plasteel{tag = "icon-warndark (NORTHEAST)";icon_state = "warndark";dir = 5},/area/ai_monitored/storage/secure) -"cRj" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating{icon_state = "warnplate"},/area/ai_monitored/storage/secure) -"cRk" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel{tag = "icon-warndark (NORTHWEST)";icon_state = "warndark";dir = 9},/area/ai_monitored/storage/secure) -"cRl" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 28;pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{tag = "icon-warndark (NORTH)";icon_state = "warndark";dir = 1},/area/ai_monitored/storage/secure) -"cRm" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space) -"cRn" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/aisat) -"cRo" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cRp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/aisat) -"cRq" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRr" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRt" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRu" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRw" = (/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "65"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRx" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/aisat) -"cRy" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/turf/open/space,/area/space) -"cRz" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera/motion{c_tag = "MiniSat Maintenance";dir = 4;network = list("MiniSat")},/obj/machinery/light/small{dir = 8},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRB" = (/obj/structure/chair,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/ai_monitored/storage/secure) -"cRF" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating/airless,/area/space) -"cRG" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 22;id = "syndicate_s";name = "south of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space) -"cRH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRI" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRJ" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRK" = (/obj/structure/table,/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRL" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable,/turf/open/floor/plasteel{icon_state = "dark"},/area/ai_monitored/storage/secure) -"cRM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/storage/secure) -"cRN" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/port_engineering) -"cRP" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cRQ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cRR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cRS" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cRT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cRU" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 2;name = "SMES room APC";pixel_y = -24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{dir = 10;icon_state = "warning"},/area/engine/engine_smes) -"cRV" = (/obj/machinery/door/airlock/glass_engineering{name = "Engineering";req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/open/floor/plasteel,/area/engine/engine_smes) -"cRW" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -35},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 6;icon_state = "warning"},/area/engine/engine_smes) -"cRX" = (/obj/structure/chair/withwheels/office/light{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "warning"},/area/engine/engine_smes) -"cRY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cRZ" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters"},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel{tag = "icon-warndark (WEST)";icon_state = "warndark";dir = 8},/area/engine/supermatter) -"cSa" = (/obj/structure/chair/withwheels/office/light,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cSb" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Supermatter Control Room";dir = 8;network = list("SS13")},/obj/machinery/button/door{id = "superinput";name = "Emitter Shutters"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel{tag = "icon-warndark (EAST)";icon_state = "warndark";dir = 4},/area/engine/supermatter) -"cSc" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel{icon_state = "dark"},/area/engine/supermatter) -"cSd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cSe" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSf" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSg" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSh" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSi" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSj" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/port_engineering) -"cSk" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSl" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/camera{c_tag = "Port Engineering North-East";dir = 5;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/device/multitool,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSo" = (/obj/machinery/vending/tool,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSp" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSq" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/port_engineering) -"cSr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cSA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator";req_access_txt = "11"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "delivery";name = "floor"},/area/engine/engine_smes) -"cSB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/engine/engine_smes) -"cSC" = (/turf/closed/wall/r_wall,/area/engine/heat_exchange) -"cSD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) -"cSE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{req_access_txt = "32"},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/supermatter) -"cSF" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters"},/turf/open/floor/plasteel{tag = "icon-warndark (SOUTHWEST)";icon_state = "warndark";dir = 10},/area/engine/supermatter) -"cSG" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) -"cSH" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) -"cSI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "smblast";name = "Control Room Shutters"},/turf/open/floor/plasteel{tag = "icon-warndark (SOUTHEAST)";icon_state = "warndark";dir = 6},/area/engine/supermatter) -"cSJ" = (/obj/machinery/computer/monitor{name = "primary power monitoring console"},/obj/structure/cable,/turf/open/floor/plasteel{tag = "icon-warndark";icon_state = "warndark";dir = 2},/area/engine/supermatter) -"cSK" = (/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSL" = (/obj/item/device/radio/off,/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSM" = (/obj/machinery/power/emitter{anchored = 1;state = 2},/obj/structure/cable,/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSN" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSO" = (/obj/structure/grille,/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSP" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSQ" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) -"cSR" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cSS" = (/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 = -32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) -"cST" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSU" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSV" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSW" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cSY" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/port_engineering) -"cSZ" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTa" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTb" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{tag = "icon-manifold-r-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/port_engineering) -"cTd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/port_engineering) -"cTe" = (/obj/structure/closet/radiation,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel{dir = 9;icon_state = "warning"},/area/engine/gravity_generator) -"cTf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (EAST)";dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cTg" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel{dir = 1;icon_state = "warning"},/area/engine/gravity_generator) -"cTh" = (/obj/machinery/door/airlock/glass_engineering{name = "Power Storage";req_access_txt = "32";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/engine/engineering) -"cTi" = (/obj/structure/table,/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) -"cTj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) -"cTk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/plating,/area/engine/supermatter) -"cTl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/engine/supermatter) -"cTm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/engine/supermatter) -"cTn" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) -"cTo" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "smblast"},/turf/open/floor/engine,/area/engine/supermatter) -"cTp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cTq" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/turf/open/floor/plating,/area/engine/supermatter) -"cTr" = (/obj/machinery/atmospherics/components/unary/tank/oxygen{volume = 1e+007},/turf/open/floor/plating,/area/engine/supermatter) -"cTs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cTt" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/tank/nitrogen{volume = 1e+007},/turf/open/floor/plating,/area/engine/supermatter) -"cTu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plating,/area/engine/supermatter) -"cTx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTy" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{tag = "icon-manifold-b-f (NORTH)";dir = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTB" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/port_engineering) -"cTD" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/obj/item/weapon/tank/internals/emergency_oxygen,/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) -"cTE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel{icon_state = "vault";dir = 8},/area/engine/heat_exchange) -"cTF" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cTG" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/turf/open/floor/plating,/area/engine/supermatter) -"cTH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter) -"cTI" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cTJ" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plating,/area/engine/supermatter) -"cTK" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cTL" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4;layer = 3},/obj/machinery/camera{c_tag = "Supermatter Center"},/turf/open/floor/plating,/area/engine/supermatter) -"cTM" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plating,/area/engine/supermatter) -"cTN" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cTO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cTP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plating,/area/engine/supermatter) -"cTQ" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Supermatter APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/atmospherics/components/binary/pump{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) -"cTR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cTS" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plating,/area/engine/supermatter) -"cTX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cTY" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/engine/port_engineering) -"cTZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/hologram/holopad,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUb" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUd" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/port_engineering) -"cUe" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/engine/heat_exchange) -"cUh" = (/obj/machinery/atmospherics/components/binary/volume_pump,/turf/open/floor/plating,/area/engine/supermatter) -"cUi" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plating,/area/engine/supermatter) -"cUj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/volume_pump{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) -"cUk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) -"cUl" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cUm" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cUn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/power/emitter,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cUo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cUp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/supermatter) -"cUq" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cUr" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cUs" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cUt" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/open/floor/plating,/area/engine/supermatter) -"cUu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cUv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/item/weapon/wrench,/turf/open/floor/plating,/area/engine/supermatter) -"cUw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plating,/area/engine/supermatter) -"cUx" = (/turf/closed/wall,/area/engine/port_engineering) -"cUA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUB" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUE" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUF" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUG" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cUH" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/space,/area/space) -"cUI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/space,/area/space) -"cUJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/heat_exchange) -"cUK" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/space) -"cUL" = (/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/engine/heat_exchange) -"cUM" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plating,/area/engine/heat_exchange) -"cUN" = (/obj/machinery/power/apc{cell_type = 15000;dir = 1;name = "Filtering Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/heat_exchange) -"cUO" = (/obj/machinery/camera{c_tag = "Filtering Room"},/turf/open/floor/plating,/area/engine/heat_exchange) -"cUP" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters";pixel_x = 22},/turf/open/floor/plating,/area/engine/heat_exchange) -"cUQ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cUR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/camera{c_tag = "Supermatter West";dir = 4;network = list("SS13")},/obj/machinery/button/door{id = "heatexchange";name = "Filtering Room Shutters";pixel_x = -22},/turf/open/floor/plating,/area/engine/supermatter) -"cUS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) -"cUT" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/supermatter) -"cUU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cUV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cUW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "superinput";name = "Emitter Shutters";pixel_y = -22},/turf/open/floor/plating,/area/engine/supermatter) -"cUX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cUY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) -"cUZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cVa" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) -"cVb" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cVc" = (/obj/machinery/field/generator{anchored = 1;state = 2},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cVf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = -25;req_access_txt = "11"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVg" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVh" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50;pixel_x = -8},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVi" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVj" = (/obj/machinery/power/smes/engineering,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/space,/area/space) -"cVl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVm" = (/obj/machinery/atmospherics/pipe/manifold4w/green/visible,/turf/open/floor/plating,/area/engine/heat_exchange) -"cVn" = (/turf/open/floor/plating,/area/engine/heat_exchange) -"cVo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVp" = (/obj/machinery/door/poddoor{id = "heatexchange"},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/engine/heat_exchange) -"cVr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cVs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cVt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters";pixel_x = 22},/turf/open/floor/plating,/area/engine/supermatter) -"cVu" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cVv" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "smcollector"},/turf/open/floor/plating,/area/engine/supermatter) -"cVw" = (/obj/structure/window,/obj/machinery/door/poddoor/preopen{id = "superinput"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cVx" = (/obj/machinery/door/airlock/maintenance_hatch{locked = 1;req_access_txt = "11"},/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cVy" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cVz" = (/obj/machinery/door/airlock/maintenance_hatch{locked = 1;req_access_txt = "11"},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cVA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/open/floor/plating,/area/engine/supermatter) -"cVB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "smcollector";name = "Collector Shutters";pixel_x = -22},/turf/open/floor/plating,/area/engine/supermatter) -"cVC" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/camera{c_tag = "Supermatter East";dir = 8;network = list("SS13")},/turf/open/floor/plating,/area/engine/supermatter) -"cVD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/engine/port_engineering) -"cVG" = (/obj/item/weapon/wirecutters,/turf/open/space,/area/space) -"cVH" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating,/area/engine/port_engineering) -"cVI" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVK" = (/obj/machinery/door/firedoor,/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cVL" = (/obj/machinery/shieldgen,/obj/machinery/light/small{brightness = 3;color = "white";dir = 1;on = 1},/turf/open/floor/plating,/area/engine/port_engineering) -"cVM" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/open/floor/plating,/area/engine/port_engineering) -"cVN" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/port_engineering) -"cVO" = (/obj/machinery/atmospherics/components/unary/heat_exchanger{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVP" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVQ" = (/obj/machinery/atmospherics/components/unary/heat_exchanger{dir = 4},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVR" = (/obj/machinery/door/window{dir = 8;name = "Filtering Room";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plating,/area/engine/heat_exchange) -"cVS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "smcollector"},/turf/open/floor/plating,/area/engine/supermatter) -"cVT" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/supermatter) -"cVU" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/rad_collector{anchored = 1;req_access = list(32)},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/supermatter) -"cVV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cVW" = (/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cVX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cVY" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/rad_collector{anchored = 1;req_access = list(32)},/turf/open/floor/plating{icon_state = "warnplate";dir = 4},/area/engine/supermatter) -"cVZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cWa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter) -"cWb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cWc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/space) -"cWd" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/space,/area/space) -"cWe" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWj" = (/turf/open/floor/plating,/area/engine/port_engineering) -"cWk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cWl" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cWm" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/plating,/area/engine/port_engineering) -"cWo" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/engine/port_engineering) -"cWp" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) -"cWq" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/turf/open/floor/plating,/area/engine/heat_exchange) -"cWr" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/door/poddoor{id = "heatexchange"},/turf/open/floor/plating,/area/engine/heat_exchange) -"cWs" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/engine/heat_exchange) -"cWt" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/supermatter) -"cWu" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plating,/area/engine/supermatter) -"cWv" = (/obj/machinery/mass_driver{id = "engicannon"},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;tag = "smin";volume_rate = 700},/obj/machinery/power/supermatter_shard{anchored = 1},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cWw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cWx" = (/obj/structure/window,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/supermatter) -"cWy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{tag = "icon-intact (NORTHWEST)";icon_state = "intact";dir = 9},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cWz" = (/turf/open/floor/plating,/area/engine/supermatter) -"cWA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cWB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/turf/open/floor/plating,/area/engine/supermatter) -"cWC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space,/area/space) -"cWE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWF" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/engine/port_engineering) -"cWG" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cWH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWI" = (/obj/machinery/particle_accelerator/control_box{dir = 1},/obj/structure/cable/yellow{d1 = 0;d2 = 2},/turf/open/floor/plating,/area/engine/port_engineering) -"cWJ" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plating,/area/engine/port_engineering) -"cWK" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cWL" = (/obj/machinery/door/poddoor{id = "Secure Storage1";name = "secure storage"},/turf/open/floor/plating{icon_state = "warnplate";dir = 8},/area/engine/port_engineering) -"cWM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cWN" = (/obj/structure/closet/crate,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/electronics/airlock,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/engine/port_engineering) -"cWO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/heat_exchange) -"cWP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/tank_dispenser,/turf/open/floor/plating,/area/engine/supermatter) -"cWQ" = (/obj/structure/table,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson{pixel_x = -4;pixel_y = -3},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) -"cWR" = (/obj/machinery/door/poddoor/preopen{id = "smcollector"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cWS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/engine/supermatter) -"cWT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 0;internal_pressure_bound = 1000;on = 1;pressure_checks = 1;pump_direction = 0;tag = "smout"},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cWU" = (/obj/machinery/camera{c_tag = "Supermatter Chamber";dir = 1},/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cWV" = (/obj/structure/sign/securearea{color = "";desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'.";name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE.";pixel_y = -32},/obj/machinery/light,/turf/open/floor/plating,/area/engine/supermatter) -"cWW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/supermatter) -"cWX" = (/turf/open/floor/plating/airless{dir = 8;icon_state = "warnplate"},/area/space) -"cWY" = (/turf/open/floor/plating/airless{dir = 4;icon_state = "warnplate"},/area/space) -"cXc" = (/obj/structure/particle_accelerator/power_box{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cXd" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cXe" = (/obj/structure/particle_accelerator/end_cap{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cXf" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cXg" = (/obj/machinery/camera{c_tag = "Engineering PA";dir = 9;network = list("SS13")},/turf/open/floor/plating,/area/engine/port_engineering) -"cXh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/security/telescreen{desc = "Used for watching the singularity chamber.";dir = 2;layer = 4;name = "Singularity Engine Telescreen";network = list("Singularity");pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXi" = (/obj/item/weapon/storage/box/matches,/turf/open/floor/plating,/area/engine/port_engineering) -"cXj" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/camera{c_tag = "Port Engineering Secure Storage";dir = 8;network = list("SS13")},/turf/open/floor/plating,/area/engine/port_engineering) -"cXk" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/heat_exchange) -"cXl" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cXm" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cXn" = (/obj/machinery/door/poddoor{id = "engicannon"},/obj/machinery/atmospherics/pipe/manifold/yellow/hidden,/turf/open/floor/engine/vacuum,/area/engine/supermatter) -"cXo" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cXp" = (/obj/machinery/atmospherics/pipe/simple/yellow/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) -"cXq" = (/obj/structure/window{color = "red";desc = "A window, break in case of emergency.";dir = 1;icon_state = "window";tag = "icon-window (NORTH)"},/obj/machinery/button/massdriver{id = "engicannon";name = "\improper JETTISON ENGINE";pixel_y = -22;req_access_txt = "32"},/turf/open/floor/plating{icon_state = "warnplate";dir = 1},/area/engine/supermatter) -"cXr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cXt" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 8},/turf/open/floor/plating,/area/engine/port_engineering) -"cXu" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plating,/area/engine/port_engineering) -"cXv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXw" = (/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage1";name = "Secure Storage";pixel_x = 24;pixel_y = 0;req_access_txt = "10"},/obj/machinery/camera{c_tag = "Port Engineering Middle";dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXx" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/port_engineering) -"cXy" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;volume_rate = 5000},/turf/open/floor/plating/airless,/area/space) -"cXz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall,/area/space) -"cXA" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) -"cXB" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = -25;req_access_txt = "11"},/turf/open/floor/plating,/area/engine/port_engineering) -"cXC" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXD" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXE" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/port_engineering) -"cXF" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXG" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXH" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXI" = (/obj/machinery/field/generator,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) -"cXJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 0;pixel_y = 25;req_access_txt = "11"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXM" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Port Engineering South"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXN" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/light{dir = 1},/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXS" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 22},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/hologram/holopad,/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXY" = (/obj/structure/table,/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{pixel_x = 2;pixel_y = 3},/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cXZ" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYb" = (/obj/item/device/multitool,/turf/open/space,/area/space) -"cYd" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYe" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 3;pixel_y = 5},/obj/item/device/flashlight,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYf" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/turf/open/floor/plating,/area/engine/port_engineering) -"cYg" = (/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 = 32},/turf/open/floor/plating,/area/engine/port_engineering) -"cYh" = (/obj/machinery/power/emitter{anchored = 1;dir = 1;state = 2},/obj/structure/cable{cable_color = "yellow";d2 = 2;icon_state = "0-2"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cYi" = (/obj/structure/grille,/obj/machinery/light,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cYj" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cYk" = (/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 = 32},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) -"cYl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYp" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/port_engineering) -"cYq" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cYr" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/engine/port_engineering) -"cYs" = (/obj/structure/closet/emcloset,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/port_engineering) -"cYt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYu" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYw" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYx" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/closet/secure_closet/engineering_personal,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYy" = (/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYz" = (/obj/structure/closet/wardrobe/engineering_yellow,/turf/open/floor/plasteel,/area/engine/port_engineering) -"cYA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/port_engineering) -"cYB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/port_engineering) -"cYC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/port_engineering) -"cYD" = (/obj/structure/lattice,/obj/structure/grille{density = 0;icon_state = "brokengrille"},/turf/open/space,/area/space) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aag" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aah" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aai" = ( +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aak" = ( +/obj/machinery/door/poddoor{ + id = "executionspacevent" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aal" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aam" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/open/space, +/area/space) +"aan" = ( +/obj/machinery/flasher{ + id = "executionflasher"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/processing) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"aar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/security/transfer) +"aas" = ( +/obj/machinery/sparker{ + id = "executionsparker"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/chair, +/turf/open/floor/engine, +/area/security/transfer) +"aau" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aay" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northwest"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aaF" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + heat_proof = 1; + name = "Prisoner Transfer Chamber"; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"aaM" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 10000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaN" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaO" = ( +/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaP" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/razor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaR" = ( +/obj/machinery/button/flasher{ + id = "executionflasher"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionspacevent"; + name = "vent to space"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaS" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/weapon/tank/internals/anesthetic, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaV" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northeast"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaW" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaX" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaY" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aba" = ( +/obj/machinery/button/ignition{ + id = "executionsparker"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abd" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"abe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abf" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/transfer) +"abk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abq" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Transfer"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abw" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/clothing/head/helmet, +/obj/item/device/assembly/signaler, +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Transfer Center APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aby" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abz" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abF" = ( +/turf/closed/wall/r_wall, +/area/security/lockers) +"abG" = ( +/turf/closed/wall/r_wall, +/area/security/hos) +"abH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/hos) +"abI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abK" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Brig Interrogation" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/processing) +"abO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/hos) +"abQ" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"abT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/carpet, +/area/security/hos) +"abU" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"abV" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/lockers) +"abX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plasteel, +/area/security/lockers) +"abY" = ( +/turf/open/floor/plasteel, +/area/security/lockers) +"abZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Cappers! Fairly unremarkable really."; + name = "\improper Officer Cappers" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aca" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Camilla! He constantly seeks validation."; + name = "\improper Officer Camilla" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acg" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ach" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aci" = ( +/obj/structure/table, +/obj/item/weapon/lighter, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"ack" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"acl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acm" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Prison Shuttle Dock APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aco" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acp" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acr" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"act" = ( +/obj/structure/closet/ammunitionlocker, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/deputy, +/obj/item/weapon/storage/box/seccarts, +/turf/open/floor/carpet, +/area/security/hos) +"acx" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"acy" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acB" = ( +/turf/open/floor/carpet, +/area/security/hos) +"acC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acD" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acE" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acF" = ( +/obj/structure/table, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acG" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"acI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/security/hos) +"acQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/adamantine, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acR" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/security/hos) +"acS" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/carpet, +/area/security/hos) +"acT" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Locker Room West"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/lockers) +"acY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"ada" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"add" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"ade" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"adi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adj" = ( +/obj/structure/closet/ammunitionlocker, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/hos) +"adn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/security/hos) +"ado" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adp" = ( +/turf/closed/wall, +/area/security/transfer) +"adq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/transfer) +"ads" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Security Locker Room APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adw" = ( +/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/open/floor/plasteel, +/area/security/lockers) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"ady" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"adz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"adA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adE" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/obj/item/weapon/stamp/hos, +/turf/open/floor/carpet, +/area/security/hos) +"adF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Brig Riot Equipment"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"adI" = ( +/turf/closed/wall, +/area/security/hos) +"adJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adK" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/security/hos) +"adL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"adP" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adR" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/security/lockers) +"adT" = ( +/obj/structure/table, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/machinery/camera{ + c_tag = "Brig Locker Room East"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adU" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/isolation) +"adW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitered" + }, +/area/security/isolation) +"adX" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitered" + }, +/area/security/isolation) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"adZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aea" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor Northwest"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"aeg" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aei" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/camera/motion{ + c_tag = "Armory"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aej" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aek" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"ael" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aem" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/hos) +"aen" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/turf/open/floor/carpet, +/area/security/hos) +"aeo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/hos) +"aep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aer" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/main) +"aes" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"aet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"aeu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"aev" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Brig Medbay"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/isolation) +"aex" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"aey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aeG" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeK" = ( +/obj/machinery/button/door{ + id = "riotequipment"; + name = "Riot Equipment Shutters"; + pixel_x = 24; + pixel_y = 32; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeN" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/hos) +"aeQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"aeS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aeU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeV" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeW" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/main) +"afa" = ( +/obj/machinery/computer/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"afb" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afc" = ( +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afe" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"aff" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"afh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afi" = ( +/obj/structure/bed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"afj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fpmaint) +"afm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afp" = ( +/obj/structure/rack, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; + name = "\improper Officer Lock n Lode" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afs" = ( +/obj/structure/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Armory APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afv" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"afw" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"afx" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"afy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"afz" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afB" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afC" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"afF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afG" = ( +/obj/machinery/camera{ + c_tag = "Brig Medbay"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afI" = ( +/turf/closed/wall, +/area/security/main) +"afJ" = ( +/obj/structure/grille, +/turf/open/space, +/area/space) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 6" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afO" = ( +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Secure Cell 2"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afS" = ( +/obj/machinery/door/window/brigdoor{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afT" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afU" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/ecase, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afV" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/shotgun, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afW" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aga" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"agc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"age" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/security/main) +"agf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"agh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Security Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"agi" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agj" = ( +/obj/machinery/door/airlock{ + name = "Showers"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agl" = ( +/obj/machinery/camera{ + c_tag = "Brig Showers"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agm" = ( +/turf/open/floor/plasteel, +/area/security/main) +"agn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"ago" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/security/isolation) +"agp" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitered" + }, +/area/security/isolation) +"agq" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitered" + }, +/area/security/isolation) +"agr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ags" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Medbay APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"agu" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agv" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agw" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/pod_3) +"agx" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/pod_3) +"agz" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agA" = ( +/obj/machinery/flasher{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"agC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell2"; + name = "Secure Cell 2"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"agD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"agE" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"agJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agK" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/weapon/gun/energy/laser/practice, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"agM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/main) +"agP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Security Office West"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/open/floor/plasteel, +/area/security/main) +"agR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Security Office East"; + dir = 8; + network = list("SS13") + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"agT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aha" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahc" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahd" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc4" + }, +/area/shuttle/pod_3) +"ahe" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahf" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahg" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahi" = ( +/obj/structure/chair, +/obj/item/weapon/storage/pod{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahj" = ( +/obj/structure/chair, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahk" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahp" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aht" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahx" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"ahy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahA" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahB" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -31; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahC" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall1"; + dir = 2 + }, +/area/shuttle/labor) +"ahD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"ahF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahG" = ( +/obj/structure/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahR" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahS" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/door{ + id = "armorylockdown"; + name = "Brig Control Lockdown"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahV" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Brig Control APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahX" = ( +/turf/closed/wall, +/area/security/warden) +"ahY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahZ" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/item/device/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/main) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aib" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aid" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + dwidth = 2; + height = 9; + id = "pod3"; + name = "escape pod 3"; + width = 5 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aie" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aif" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig Escape Shuttle"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aig" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aih" = ( +/obj/docking_port/stationary/random{ + dir = 4; + dwidth = 2; + height = 9; + id = "asteroid_pod3"; + width = 5 + }, +/turf/open/space, +/area/space) +"aii" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aik" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/main) +"ail" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aim" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ain" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/main) +"aio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"air" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ais" = ( +/obj/structure/table, +/obj/item/baseball, +/obj/item/baseball, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ait" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiy" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 5" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiz" = ( +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Secure Cell 1"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"aiA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aiB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aiC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aiE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aiL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiM" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiN" = ( +/obj/machinery/flasher{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell1"; + name = "Secure Cell 1"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Brig APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/brig) +"aiR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aiY" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc1" + }, +/area/shuttle/pod_3) +"aiZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aja" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ajb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigshuttleflash"; + name = "Flash Control"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 0; + pixel_y = -31 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod3"; + shuttleId = "pod3" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajd" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajn" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"ajp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"ajs" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aju" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajv" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"ajx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice{ + pixel_y = 4 + }, +/obj/item/weapon/dice/d8{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajA" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ajB" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d20, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ajD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/brig) +"ajG" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajI" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajL" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajM" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aka" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/pod_3) +"akb" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/pod_3) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"akd" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ake" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aki" = ( +/obj/structure/table/wood, +/obj/item/weapon/gavelblock, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akj" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d12, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akk" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"akm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"akn" = ( +/turf/closed/wall, +/area/security/isolation) +"ako" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 4"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/labor) +"akr" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aks" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/labor) +"akt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + color = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aku" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akw" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aky" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akC" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akE" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"akG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akI" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akJ" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d10, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akL" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akM" = ( +/obj/structure/chair/comfy/brown, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/cheesie, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/mop, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/ian, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akP" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akX" = ( +/turf/closed/wall, +/area/maintenance/fsmaint) +"akY" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"akZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"ala" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"alc" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ald" = ( +/turf/closed/wall/r_wall, +/area/security/isolation) +"ale" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alf" = ( +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"alg" = ( +/obj/structure/grille, +/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ali" = ( +/obj/item/stack/teeth/lizard{ + amount = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"all" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aln" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alo" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alp" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "perma prison shuttle"; + port_angle = 90; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"alq" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/rack, +/obj/item/clothing/head/bowler, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/computer/security, +/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/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aly" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/crew_quarters/courtroom) +"alz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 8; + name = "Courtroom APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alB" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alC" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alD" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alE" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alF" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alG" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alH" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 3" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alJ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alK" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 1" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alN" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"alP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alQ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby Desk"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/flasher{ + id = "lobbyflash"; + pixel_y = -4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "lobbylockdown"; + name = "Lobby Lockdown"; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"alV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"alY" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/space) +"alZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ama" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amb" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/weapon/gun/magic/staff, +/obj/item/weapon/gun/magic/wand, +/obj/item/weapon/sord, +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amc" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/clothing/suit/armor/riot/knight, +/obj/item/clothing/head/helmet/knight, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/helmet/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/under/roman, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/under/kilt, +/obj/item/clothing/under/pirate, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amd" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ame" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ami" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"amj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aml" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"amm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"amn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ams" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amz" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Brig Lobby" + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amF" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amH" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"amJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"amN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amO" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amS" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amU" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"amV" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"amW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amZ" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ana" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anb" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"and" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/item/weapon/poster/legit, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ane" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ang" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anh" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ani" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ann" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ano" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anp" = ( +/obj/machinery/atmospherics/pipe/manifold, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ans" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ant" = ( +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anv" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"anw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"any" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anA" = ( +/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"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anE" = ( +/obj/structure/table, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anF" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/pill/morphine, +/obj/item/weapon/reagent_containers/pill/morphine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anG" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"anN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"anO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anP" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anS" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aob" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aoc" = ( +/turf/closed/wall, +/area/security/brig) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"aoe" = ( +/obj/machinery/camera{ + c_tag = "Cargo North"; + dir = 4; + network = list("perma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 8; + network = list("perma") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"aog" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aok" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aol" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aom" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aon" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aoo" = ( +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aop" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aor" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aos" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/main) +"aot" = ( +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aou" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aov" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/matches, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aow" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 1; + color = "red"; + dir = 1 + }, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aox" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoA" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoD" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoE" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aoH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"aoJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Port Engineering Hallway" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"aoK" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northwest"; + dir = 5; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoL" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northeast"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoN" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southwest"; + dir = 4; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoO" = ( +/obj/item/weapon/crowbar, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aoP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoQ" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoR" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoS" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Detective's Office"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoU" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aoX" = ( +/obj/structure/rack, +/obj/item/weapon/storage/backpack/satchel/sec, +/obj/item/weapon/storage/backpack/security, +/obj/item/weapon/storage/backpack/dufflebag/sec, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apb" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apd" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apf" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"apg" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"aph" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"api" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apl" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apm" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apn" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"apo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"app" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apr" = ( +/obj/machinery/button/door{ + id = "detshutters"; + name = "Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aps" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/brig) +"apu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apv" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"apw" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/outpost) +"apx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apy" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apF" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apM" = ( +/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" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Security Electrical Maintenance APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apP" = ( +/turf/closed/wall, +/area/maintenance/secelectrical) +"apQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"apU" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apW" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/adamantine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apY" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/wirecutters, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqe" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqf" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqi" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aql" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqo" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqu" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqx" = ( +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqA" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"aqB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aqE" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Northeast" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqG" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqH" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqL" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6; + icon_state = "tracks"; + tag = "icon-tracks (SOUTHWEST)" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqR" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqY" = ( +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ara" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"arc" = ( +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"are" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ari" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arp" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"ars" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"art" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aru" = ( +/obj/structure/closet/cardboard, +/obj/item/clothing/suit/jacket/miljacket, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"arv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arw" = ( +/obj/structure/table, +/obj/item/stack/ducttape, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c50, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ary" = ( +/obj/structure/table/wood, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arz" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arB" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office Backroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"arD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway North"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arN" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"arO" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod1" + }, +/turf/open/space, +/area/space) +"arP" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod2" + }, +/turf/open/space, +/area/space) +"arQ" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/labor) +"arR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"arS" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/labor) +"arT" = ( +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/engine/port_engineering) +"arU" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southeast"; + dir = 9; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"arV" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/weapon/crowbar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Red Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"arW" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asb" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asc" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"asd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/lawoffice) +"asf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawshutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"asg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ash" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ask" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ass" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ast" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"asu" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"asv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"asw" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"asx" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"asy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/labor) +"asz" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"asA" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"asB" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"asC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asE" = ( +/obj/structure/closet/crate, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plating, +/area/engine/port_engineering) +"asG" = ( +/obj/structure/table, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/engineering) +"asH" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"asI" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"asJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asL" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asM" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"asN" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/red, +/obj/item/clothing/glasses/orange, +/obj/item/clothing/glasses/gglasses, +/turf/open/floor/wood, +/area/lawoffice) +"asP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/lawoffice) +"asQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asR" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/carpet, +/area/lawoffice) +"asS" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"asT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/turf/open/floor/carpet, +/area/lawoffice) +"asU" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"asV" = ( +/obj/machinery/button/door{ + id = "lawshutters"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"asZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"ata" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ate" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Pool APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"atf" = ( +/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/open/floor/plating, +/area/maintenance/fpmaint2) +"atg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ath" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_1) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod1"; + shuttleId = "pod1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_2) +"atk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod2"; + shuttleId = "pod2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atl" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/space) +"atm" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atn" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ato" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"atr" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"ats" = ( +/obj/effect/decal/cleanable/oil, +/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" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"att" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/weapon/storage/firstaid/surgery, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"aty" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"atz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"atA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atL" = ( +/turf/closed/wall, +/area/maintenance/commiespy) +"atM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/open/floor/carpet, +/area/lawoffice) +"atT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atU" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atV" = ( +/obj/machinery/camera{ + c_tag = "Pool North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atW" = ( +/obj/structure/closet, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Law Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/lawoffice) +"atY" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atZ" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/device/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"aua" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/lawoffice) +"aub" = ( +/obj/structure/closet/crate, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/wood, +/area/lawoffice) +"auc" = ( +/obj/structure/closet, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/under/griffin, +/obj/item/clothing/head/griffin, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/pig, +/obj/item/clothing/head/chicken, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lawoffice) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet, +/area/lawoffice) +"aue" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/law, +/obj/item/weapon/pen/blue, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/med_data, +/turf/open/floor/carpet, +/area/lawoffice) +"aug" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/lawoffice) +"auh" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/lawoffice) +"aui" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/lawoffice) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (WEST)"; + icon_state = "yellowcornersiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"auk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aum" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auo" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aup" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auq" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/open/floor/engine, +/area/gateway) +"aur" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aus" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1351; + name = "Science intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "Supply intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1355; + name = "Medical intercom"; + pixel_x = -27; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"aut" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1353; + name = "Command intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Stronk Russian APC"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/soviet, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auw" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aux" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"auy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"auz" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"auA" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"auB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"auC" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"auD" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"auE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"auF" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/arrival) +"auG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auI" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"auJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"auK" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"auL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"auM" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"auN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"auO" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auQ" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"auR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_access_txt = list(27,12) + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"auW" = ( +/obj/machinery/gateway, +/turf/open/floor/engine, +/area/gateway) +"auX" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"auY" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"ava" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avb" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avc" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avd" = ( +/turf/closed/wall, +/area/lawoffice) +"ave" = ( +/turf/closed/wall, +/area/maintenance/fsmaint2) +"avf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating/airless, +/area/maintenance/fsmaint2) +"avg" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1447; + name = "AI Private intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/storage/photo_album, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avi" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/syndie, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avl" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"avm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avn" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avo" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"avr" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avu" = ( +/obj/machinery/door/window/southright{ + name = "Gateway Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"avv" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avw" = ( +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avx" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avy" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avG" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/camera{ + c_tag = "Arrivals Infirmary"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avM" = ( +/obj/structure/table/glass, +/obj/item/weapon/cultivator, +/obj/item/weapon/hatchet, +/obj/item/weapon/crowbar, +/obj/item/device/plant_analyzer, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avN" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"avO" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avP" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avS" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avT" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"avU" = ( +/obj/machinery/door/airlock/external{ + name = "Airlock"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avV" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1357; + name = "Engineering intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avW" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/clothing/tie/stethoscope, +/obj/item/device/camera, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer{ + desc = "These possibly cant be even letters, blyat!"; + name = "Russian computer" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avY" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awb" = ( +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awc" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awe" = ( +/obj/structure/rack, +/obj/item/weapon/gun/projectile/shotgun/toy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awg" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"awk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"awl" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awn" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awp" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awq" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aws" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"awu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"awv" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aww" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"awx" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/white, +/area/mime) +"awy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"awA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awB" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/hallway/secondary/entry) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awE" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"awG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"awI" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"awK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awP" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"awQ" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awS" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/library) +"awT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/storage/tools) +"awU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"awV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"awW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"awX" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"awY" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"awZ" = ( +/obj/item/weapon/garrote, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"axa" = ( +/obj/machinery/vending/sustenance, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axb" = ( +/obj/machinery/computer/crew, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axc" = ( +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axd" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axe" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axf" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axg" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"axh" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axi" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axj" = ( +/turf/closed/wall/shuttle{ + blocks_air = 6; + dir = 1; + icon_state = "swall13" + }, +/area/shuttle/arrival) +"axk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"axl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"axo" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axr" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2) +"axs" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axt" = ( +/obj/structure/table/wood, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axw" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/bandana/red, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axx" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axA" = ( +/obj/item/weapon/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"axC" = ( +/obj/item/weapon/storage/box, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"axD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"axJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axK" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/quartermaster/storage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axT" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"axU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/assembly/robotics) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axW" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"axX" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axY" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"axZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency) +"aya" = ( +/turf/open/floor/wood, +/area/lawoffice) +"ayb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency) +"ayc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency) +"ayd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ayf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ayi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayk" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayl" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aym" = ( +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayn" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayo" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayq" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayr" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"ays" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayB" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ayD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayE" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayG" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayL" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayM" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayN" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayP" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayR" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/labor) +"ayS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"ayT" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/labor) +"ayU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ayZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"aza" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"azc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/medical) +"azd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aze" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"azg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"azi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"azj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"azk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"azl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"azm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fsmaint2) +"azn" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fsmaint2) +"azo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"azp" = ( +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azq" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"azr" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azv" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azw" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azx" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azA" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azB" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azD" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azE" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azH" = ( +/obj/item/trash/sosjerky, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azL" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"azM" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azO" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azP" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azQ" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azS" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"azT" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"azU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azV" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"aAb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAc" = ( +/mob/living/simple_animal/bot/cleanbot{ + desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; + name = "\improper Dumpy"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aAd" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"aAj" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/engine/break_room) +"aAk" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/engine/break_room) +"aAl" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/engine/break_room) +"aAm" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aAn" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aAo" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aAp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Checkpoint"; + dir = 8; + network = list("perma") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aAq" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aAr" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/airless, +/area/space) +"aAs" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aAu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAy" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAC" = ( +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aAD" = ( +/obj/structure/table, +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAF" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAH" = ( +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod Hallway"; + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAK" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aAM" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aAN" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAO" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"aAP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAS" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/under/rank/bartender, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAW" = ( +/turf/closed/wall, +/area/maintenance/fpmaint) +"aAX" = ( +/obj/machinery/poolcontroller, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aBl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"aBz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aBA" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBC" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/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 = 32 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBE" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aBG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBH" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBJ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aBK" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBL" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBM" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aBN" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aBP" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHEAST)"; + icon_state = "intact"; + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBS" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBU" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBV" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBW" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBX" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/tile/wood{ + amount = 25 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBY" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBZ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCc" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aCr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"aCt" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCv" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCw" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/fsmaint2) +"aCx" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aCy" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"aCz" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCB" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCD" = ( +/obj/structure/closet, +/obj/item/ammo_box/foambox, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCE" = ( +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCG" = ( +/obj/structure/closet/wardrobe/blue, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCH" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCI" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCL" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCQ" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCT" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCV" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDc" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aDd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aDe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDv" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDx" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint2) +"aDz" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDG" = ( +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDH" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDJ" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDQ" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aDR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDU" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDW" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aEd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEk" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEl" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aEm" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aED" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEE" = ( +/obj/structure/grille, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEG" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aEI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aEJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEK" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEM" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEN" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/coin/gold, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEQ" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aER" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aET" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEU" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEV" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEW" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aEY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFe" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFf" = ( +/obj/machinery/monkey_recycler, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFg" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFh" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFs" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/bodybags, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFt" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFA" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFD" = ( +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFL" = ( +/turf/closed/wall, +/area/crew_quarters/pool) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFQ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"aFR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFS" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFZ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGa" = ( +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGb" = ( +/obj/structure/closet, +/obj/item/weapon/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"aGm" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aGq" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGs" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aGw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aGH" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aGI" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aGM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/sleep) +"aGN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/sleep) +"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHb" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHf" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHh" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHj" = ( +/turf/closed/wall, +/area/maintenance/electrical) +"aHk" = ( +/turf/closed/wall, +/area/space) +"aHl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space) +"aHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHt" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aHw" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aHx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHy" = ( +/obj/structure/chair/withwheels/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aHz" = ( +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHB" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHC" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aHN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aHO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aHP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHS" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aHV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/toy/carpplushie, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHY" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding"; + icon_state = "yellowcornersiding" + }, +/area/crew_quarters/pool) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aIg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIh" = ( +/obj/structure/table, +/obj/item/weapon/shard, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIi" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIj" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIk" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIl" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIm" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIn" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIo" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/electrical) +"aIq" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/maintenance/electrical) +"aIr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aIs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIx" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged3" + }, +/area/space) +"aIy" = ( +/turf/open/floor/plating/airless, +/area/space) +"aIz" = ( +/obj/item/weapon/paper/crumpled, +/turf/open/floor/plasteel/airless{ + icon_state = "damaged2" + }, +/area/space) +"aIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIC" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aID" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIE" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIF" = ( +/obj/machinery/button/door{ + id = "hobodorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aII" = ( +/obj/machinery/button/door{ + id = "hobodorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/fpmaint) +"aIJ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIN" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aIU" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIY" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aIZ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/poolfilter{ + pixel_y = 11 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aJb" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJf" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJn" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJo" = ( +/turf/open/floor/plating, +/area/maintenance/electrical) +"aJp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aJt" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"aJu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aJv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"aJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJA" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/chair, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJF" = ( +/obj/item/weapon/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space, +/area/space) +"aJG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJI" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm1"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aJK" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/weapon/bedsheet/brown, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aJL" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/open/floor/plasteel, +/area/maintenance/fpmaint) +"aJM" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/fpmaint) +"aJN" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm2"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aJY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aKa" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKb" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aKj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aKk" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/toy/poolnoodle/blue, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKl" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aKn" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aKs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKu" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKx" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/weapon/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKz" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged5" + }, +/area/space) +"aKA" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKF" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKK" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKV" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"aKW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLf" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLg" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLh" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aLn" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/ladder, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLo" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/drain, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLp" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/Lboard, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLr" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aLs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLt" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLw" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLy" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLz" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLI" = ( +/obj/structure/table, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-West"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLP" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-East"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLY" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMs" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/item/clothing/head/welding, +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/off, +/obj/item/device/assembly/timer, +/obj/structure/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMx" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMy" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMz" = ( +/obj/item/device/aicard, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMB" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMC" = ( +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aME" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aMF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMG" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMI" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMJ" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aML" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aMP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNb" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNc" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNi" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNj" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNk" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNl" = ( +/obj/structure/table/glass, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aNz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNA" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aND" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNE" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNG" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNH" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aNI" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aNK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aNQ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/clothing/under/shorts/red, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aNR" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOg" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOh" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aOl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOm" = ( +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aOn" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOp" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aOv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aOw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOy" = ( +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOD" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOH" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/patriot, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aOK" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/open/floor/engine, +/area/gateway) +"aOM" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/open/floor/engine, +/area/gateway) +"aON" = ( +/turf/open/floor/engine, +/area/gateway) +"aOO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOY" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aOZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aPa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 2 + }, +/area/crew_quarters/sleep) +"aPb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPe" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/toilet) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPr" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPs" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPv" = ( +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPx" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPy" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aPA" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPB" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/space) +"aPD" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPE" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPF" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/security/checkpoint2) +"aPG" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPI" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint2) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aPK" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPT" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPV" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/primary) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQb" = ( +/obj/structure/bed/dogbed, +/obj/item/weapon/reagent_containers/food/drinks/flask/det{ + desc = "A Space Veteran's only friend."; + name = "space veteran's flask" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQc" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aQe" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/open/floor/engine, +/area/gateway) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"aQg" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aQi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQw" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aQx" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"aQy" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aQA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/table/glass, +/obj/item/clothing/under/shorts/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQD" = ( +/obj/machinery/camera{ + c_tag = "Pool South"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQH" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQI" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/crew_quarters/pool) +"aQJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQM" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQN" = ( +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aQS" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/security/checkpoint2) +"aQT" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQW" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQX" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint2) +"aQY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRe" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRf" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRj" = ( +/turf/closed/wall, +/area/storage/primary) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"aRn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRo" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/open/floor/engine, +/area/gateway) +"aRq" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aRs" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRv" = ( +/obj/item/weapon/pen{ + desc = "Writes upside down!"; + name = "astronaut pen" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRx" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRy" = ( +/obj/machinery/camera{ + c_tag = "EVA East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aRA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aRB" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRD" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRI" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aRM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRO" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aRP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/weapon/lighter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = 9; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSf" = ( +/turf/closed/wall, +/area/chapel/main) +"aSg" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSh" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"aSi" = ( +/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 = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"aSj" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/open/floor/plating, +/area/chapel/main) +"aSm" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSo" = ( +/turf/closed/wall, +/area/security/checkpoint2) +"aSp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSq" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSB" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSC" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSE" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSF" = ( +/obj/structure/table, +/obj/item/device/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSG" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSH" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSL" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSM" = ( +/turf/closed/wall, +/area/mime) +"aSO" = ( +/turf/closed/wall, +/area/clown) +"aSP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSS" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aST" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aTa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Command EVA"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aTc" = ( +/obj/machinery/door/airlock/command{ + name = "Command EVA"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTd" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aTg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTn" = ( +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTo" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aTr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j1s"; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTu" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTw" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/chapel/main) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTM" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTN" = ( +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/main) +"aTP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aTS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTT" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Green Arrivals"; + name = "Nothing To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTU" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTV" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTW" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTZ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aUa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aUb" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aUj" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/plants{ + lootcount = 10; + name = "10plant_spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUk" = ( +/obj/machinery/door/airlock{ + name = "Garden"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUl" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Mime Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/mime, +/turf/open/floor/plasteel/black, +/area/mime) +"aUn" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aUo" = ( +/obj/item/weapon/bedsheet/mime, +/obj/structure/bed, +/turf/open/floor/plasteel/black, +/area/mime) +"aUp" = ( +/obj/machinery/camera{ + c_tag = "Clown Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/clown, +/turf/open/floor/plasteel/green, +/area/clown) +"aUq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aUr" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed, +/turf/open/floor/plasteel/green, +/area/clown) +"aUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUt" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUu" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/gateway) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUA" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUD" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + c_tag_order = 999; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aUF" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUH" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUK" = ( +/obj/structure/dresser, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUM" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUZ" = ( +/turf/closed/wall, +/area/library) +"aVa" = ( +/turf/closed/wall, +/area/chapel/office) +"aVc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aVd" = ( +/obj/structure/falsewall, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVg" = ( +/obj/machinery/camera{ + c_tag = "Chapel North"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVh" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVi" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"aVk" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals No-Declare Lane"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aVl" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aVn" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Green Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = -22; + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVo" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVq" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aVr" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aVs" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals Declare Lane"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aVQ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mime Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/mime) +"aVR" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVS" = ( +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/open/floor/plasteel/green, +/area/clown) +"aVT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aVY" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aWa" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWb" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWc" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/storage/eva) +"aWe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWh" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWk" = ( +/obj/structure/toilet{ + tag = "icon-toilet00 (WEST)"; + icon_state = "toilet00"; + dir = 8 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWl" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/weapon/lipstick/random, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWn" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWr" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aWJ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 17 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/library) +"aWM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"aWN" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/library) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/wood, +/area/library) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/library) +"aWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"aWS" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWU" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWV" = ( +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWW" = ( +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWX" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aWY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXb" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"aXc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aXd" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aXe" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXg" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/open/space, +/area/space) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXn" = ( +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXo" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXq" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/obj/item/weapon/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXr" = ( +/obj/structure/window, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/black, +/area/mime) +"aXs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aXt" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/frame/computer{ + anchored = 1; + desc = "What, you can't see the screen?"; + name = "Mime's Computer" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"aXu" = ( +/obj/structure/reagent_dispensers/honk_cooler, +/turf/open/floor/plasteel/green, +/area/clown) +"aXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aXw" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/obj/item/weapon/bikehorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aXx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Clown Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/clown) +"aXy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aXA" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/gateway) +"aXB" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aXC" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aXK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXM" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXO" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXP" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXQ" = ( +/obj/structure/closet, +/obj/item/weapon/dnainjector/smilemut, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXR" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXU" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXY" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/bar) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYj" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hydroponics) +"aYk" = ( +/turf/closed/wall, +/area/hydroponics) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYn" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"aYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) +"aYp" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/library) +"aYu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aYv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYw" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYx" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/office) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aYF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aYG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aYN" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aYO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYQ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge"; + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYT" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYU" = ( +/obj/structure/table/glass, +/obj/item/weapon/hatchet, +/obj/item/weapon/cultivator, +/obj/item/weapon/crowbar, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYV" = ( +/obj/item/weapon/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/device/plant_analyzer, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYW" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYY" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZb" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/storage/primary) +"aZc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/storage/primary) +"aZd" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZe" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/mime) +"aZg" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/mime) +"aZh" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aZj" = ( +/obj/structure/statue/bananium/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"aZk" = ( +/obj/machinery/button/door{ + dir = 2; + id = "gateway_shutters"; + name = "Gateway Access Button"; + pixel_x = 0; + pixel_y = -27; + req_access_txt = "47" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aZl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZm" = ( +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aZp" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZs" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZt" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_evac (EAST)" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZu" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZv" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aZx" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/primary/central) +"aZz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZD" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aZF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aZG" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aZH" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/structure/table/wood, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZJ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZK" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/bar) +"aZL" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/hydroponics) +"aZQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"aZR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZS" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/paper/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/library) +"aZU" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aZV" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"aZW" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"aZX" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"aZY" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/library) +"baa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bab" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bac" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bad" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"baf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bah" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"ban" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bao" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bap" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"baq" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bar" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bau" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"baw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"bax" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bay" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/mime) +"baz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/freezer{ + desc = "..."; + name = "Mime Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"baA" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/mime) +"baB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"baC" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/clown) +"baD" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown Office"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"baE" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/clown) +"baF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baG" = ( +/obj/machinery/door/airlock/research{ + name = "Gateway Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"baJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baL" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"baM" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"baN" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/lipstick, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baR" = ( +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baS" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baZ" = ( +/obj/machinery/camera{ + c_tag = "Bar Storage" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bba" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbb" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbe" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hydroponics) +"bbg" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbi" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbk" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbm" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/weapon/watertank, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"bbo" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bbp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/library) +"bbr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbD" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bbE" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbF" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbH" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbL" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + name = "Port Hall APC"; + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcd" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bce" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West"; + dir = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bch" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bci" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bcj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bck" = ( +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bcl" = ( +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bcm" = ( +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bcn" = ( +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bco" = ( +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bcp" = ( +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bcq" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bcv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcw" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East"; + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcA" = ( +/obj/structure/piano, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcG" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcL" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcT" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcU" = ( +/turf/open/floor/wood, +/area/library) +"bcV" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"bcW" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bcY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"bda" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdb" = ( +/obj/machinery/light, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdd" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bde" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdf" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdg" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdk" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint South" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdn" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdo" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdp" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdr" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bds" = ( +/turf/open/floor/goonplaque, +/area/hallway/secondary/entry) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdK" = ( +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bdL" = ( +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bdM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bdN" = ( +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bdP" = ( +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bdQ" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdU" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdX" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdY" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bea" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"beb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bec" = ( +/obj/machinery/vending/coffee, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bed" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bef" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"bei" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"bej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bek" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/library) +"bel" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bem" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/library) +"beo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"beq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bes" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bet" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"beu" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bew" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bex" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0; + verted = -1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bey" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Red Arrivals"; + name = "Items to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bez" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0; + verted = -1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"beA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beB" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beD" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beI" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beJ" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beY" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfd" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfe" = ( +/obj/machinery/light, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bff" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfi" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bfj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bfk" = ( +/obj/structure/closet/chefcloset, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfp" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfq" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bft" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfu" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/open/floor/wood, +/area/library) +"bfv" = ( +/turf/open/floor/carpet, +/area/library) +"bfw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/library) +"bfx" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/open/floor/wood, +/area/library) +"bfy" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bfA" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfB" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bfE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfI" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Escape Arm Holding Area"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bfJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bfO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bfP" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bfQ" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"bfR" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"bfS" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bfV" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bfW" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bga" = ( +/turf/closed/wall, +/area/maintenance/port) +"bgb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgc" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bgd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bge" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/turf/closed/wall, +/area/storage/art) +"bgg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/art) +"bgh" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/art) +"bgj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bgk" = ( +/turf/closed/wall, +/area/storage/emergency2) +"bgl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgm" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgq" = ( +/turf/closed/wall, +/area/storage/tools) +"bgr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bgt" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bgu" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgw" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgx" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgy" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgH" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bgI" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hydroponics) +"bgK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"bgM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bgN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bgO" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgP" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgR" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgS" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgV" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bgW" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgZ" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bha" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bhb" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhc" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhd" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bhk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bhl" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bho" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhp" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhs" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"bhx" = ( +/turf/open/floor/plasteel, +/area/storage/art) +"bhy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bhz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bhA" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bhB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bhD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/turf/open/floor/plasteel, +/area/bridge) +"bhF" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/bridge) +"bhG" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/bridge) +"bhH" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/bridge) +"bhI" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bhJ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bhL" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/bridge) +"bhM" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "green" + }, +/area/bridge) +"bhN" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/bridge) +"bhO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/bridge) +"bhP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhS" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhU" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhV" = ( +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhY" = ( +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bhZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bia" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bib" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bic" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 2 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bie" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bif" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bih" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bij" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"bik" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bil" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bim" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/library) +"bin" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bio" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bip" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"biq" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bir" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bis" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bit" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"biu" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biD" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway Central"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biL" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biO" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"biP" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biQ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"biS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency2) +"biT" = ( +/turf/open/floor/plating, +/area/storage/emergency2) +"biU" = ( +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency2) +"biV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tools) +"bjc" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjd" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bje" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjf" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/bridge) +"bjg" = ( +/obj/structure/chair{ + dir = 1; + name = "Command Station" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/bridge) +"bji" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/bridge) +"bjj" = ( +/obj/structure/chair{ + dir = 1; + name = "Crew Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/bridge) +"bjl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/bridge) +"bjm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjr" = ( +/obj/item/stack/spacecash/c10{ + amount = 10 + }, +/obj/item/stack/spacecash/c100{ + amount = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjs" = ( +/mob/living/carbon/monkey{ + name = "Pun Pun"; + real_name = "Pun Pun"; + unique_name = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjt" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjv" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjA" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjB" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bjC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bjD" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bjH" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"bjI" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/library) +"bjJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjP" = ( +/obj/machinery/vending/cola, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bjQ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/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 = 32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjV" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/open/space, +/area/space) +"bjX" = ( +/turf/closed/wall/r_wall, +/area/rec_room) +"bjY" = ( +/turf/closed/wall, +/area/rec_room) +"bjZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/rec_room) +"bka" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bkb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkc" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkh" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkk" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkm" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkn" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bko" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkq" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/open/floor/plasteel, +/area/storage/art) +"bkr" = ( +/obj/structure/table, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bkt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency2) +"bku" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bky" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkA" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"bkB" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkC" = ( +/turf/closed/wall, +/area/bridge) +"bkD" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/bridge) +"bkE" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/bridge) +"bkF" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/bridge) +"bkG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/bridge) +"bkH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkI" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bkJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/bridge) +"bkL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/bridge) +"bkM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/bridge) +"bkO" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/bridge) +"bkP" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/bridge) +"bkQ" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/bridge) +"bkR" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkS" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkT" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkU" = ( +/obj/item/clothing/head/that{ + throwforce = 1; + throwing = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkV" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkW" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("SS13") + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkY" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkZ" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bla" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/crew_quarters/kitchen) +"bld" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/hydroponics) +"ble" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"blf" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"blg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"blh" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bli" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"blj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/open/floor/wood, +/area/library) +"blk" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/library) +"blm" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/wood, +/area/library) +"bln" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/library) +"blo" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"blp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"blq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bls" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blt" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"blu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bly" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Recreation Room APC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"blz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/carpet, +/area/rec_room) +"blA" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/rec_room) +"blB" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/hallway/secondary/entry) +"blC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blE" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/secondary/entry) +"blF" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"blG" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blI" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blJ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blN" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blR" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blY" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bma" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bmc" = ( +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmd" = ( +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/bridge) +"bme" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/bridge) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bmi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bml" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmn" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/bridge) +"bmq" = ( +/obj/structure/chair{ + dir = 1; + name = "Logistics Station" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmr" = ( +/obj/machinery/camera{ + c_tag = "Bridge East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/bridge) +"bms" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmu" = ( +/obj/machinery/camera{ + c_tag = "Bridge East Entrance"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bmw" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmy" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmz" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmA" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmC" = ( +/obj/machinery/processor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmE" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"bmH" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/open/floor/wood, +/area/library) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bmK" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"bmL" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/library) +"bmM" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/library) +"bmN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bmO" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bmP" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bmR" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmS" = ( +/obj/machinery/door/window/northright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmT" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmV" = ( +/turf/open/floor/carpet, +/area/rec_room) +"bmW" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/rec_room) +"bmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmZ" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/rec_room) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bnb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnd" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bnf" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bng" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bni" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnj" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnk" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"bnl" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnn" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bny" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bnA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bnC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bnD" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"bnE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bnJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bnL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bnN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/bridge) +"bnQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnR" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnV" = ( +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnY" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Bridge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/bridge) +"boa" = ( +/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; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bob" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"boc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"boe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bof" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bog" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bol" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bom" = ( +/obj/item/weapon/lighter, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bon" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boo" = ( +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bop" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"boq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"box" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/library) +"boz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"boC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"boF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"boH" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boI" = ( +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boK" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boN" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/wood, +/area/rec_room) +"boP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/rec_room) +"boQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/bikehorn/airhorn, +/turf/open/floor/wood, +/area/rec_room) +"boR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boS" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boT" = ( +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"boU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"boW" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"boZ" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"bpe" = ( +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bph" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpk" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/crew_quarters/locker) +"bpl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/crew_quarters/locker) +"bpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpo" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tools) +"bpz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tools) +"bpA" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpC" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/hallway/primary/central) +"bpE" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bpF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bpG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpI" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpP" = ( +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bpT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/hallway/primary/central) +"bpV" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Central Hall APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bpY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bpZ" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqe" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bqf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/library) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/library) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqw" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "Scaley."; + name = "Robusts-Many-Faces" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqy" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/rec_room) +"bqz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/rec_room) +"bqA" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder/empty, +/turf/open/floor/wood, +/area/rec_room) +"bqB" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bqC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bqD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bqF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqH" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bqJ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqM" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqQ" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqR" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqS" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/female{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqT" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqZ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"brb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"brc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brg" = ( +/turf/closed/wall, +/area/quartermaster/office) +"brh" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bri" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room) +"brk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"brl" = ( +/turf/closed/wall, +/area/bridge/meeting_room) +"brm" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brn" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brp" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brr" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bru" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brv" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brw" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brx" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bry" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brz" = ( +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brA" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brC" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brE" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"brF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brH" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brM" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"brP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/library) +"brQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"brS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"brT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/library) +"brU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brV" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"brW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Escape Hallway APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape shuttle Hallway"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"brY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bsa" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsb" = ( +/mob/living/simple_animal/cow, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bsd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bsf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bsg" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsh" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsi" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bso" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bss" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/office) +"bst" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/office) +"bsw" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsx" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsy" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Conference Room"; + dir = 2 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsA" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsB" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsF" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsH" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsN" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsP" = ( +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsQ" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsR" = ( +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsS" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bsT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsU" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsW" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/library) +"bsX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"bsY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btb" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "A Lizard Wizard!"; + name = "Merlin" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btc" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btd" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bte" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-l"; + icon_state = "stairs-l" + }, +/area/hallway/secondary/entry) +"btf" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"bth" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-stairs-r"; + icon_state = "stairs-r" + }, +/area/hallway/secondary/entry) +"bti" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/vacantoffice) +"btj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"btk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bto" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btq" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btr" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"bts" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btu" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"btv" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 5 + }, +/area/quartermaster/office) +"btw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btx" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bty" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btA" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btD" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btE" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btG" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btH" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btK" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btN" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btP" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36; + tag = "icon-direction_sec (NORTH)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btQ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btR" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btZ" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bud" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bue" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buf" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bug" = ( +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buh" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bui" = ( +/obj/structure/window, +/obj/machinery/vending/cola, +/turf/open/floor/carpet, +/area/rec_room) +"buj" = ( +/obj/structure/window, +/obj/machinery/vending/snack, +/turf/open/floor/carpet, +/area/rec_room) +"buk" = ( +/obj/structure/window, +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/carpet, +/area/rec_room) +"bul" = ( +/obj/structure/window, +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/rec_room) +"bum" = ( +/obj/structure/window, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/rec_room) +"bun" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bup" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bus" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"but" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"buv" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"buy" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"buB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"buC" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buD" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"buH" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"buI" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"buK" = ( +/obj/item/weapon/hand_labeler, +/obj/item/device/assembly/timer, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buL" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buM" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buN" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buQ" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"buS" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"buT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"buU" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"buV" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"buW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"buX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bva" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bvo" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/turf/open/floor/carpet, +/area/rec_room) +"bvp" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/rec_room) +"bvq" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/rec_room) +"bvr" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"bvu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bvw" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvy" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port) +"bvz" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker) +"bvB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bvC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvE" = ( +/obj/structure/closet/crate, +/obj/machinery/doorButtons, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvF" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvI" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bvJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bvM" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvN" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvO" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvP" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvQ" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/corp, +/obj/item/weapon/aiModule/core/full/paladin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/aiModule/core/full/robocop, +/obj/item/weapon/aiModule/core/full/custom, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvS" = ( +/obj/machinery/computer/upload/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvT" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvU" = ( +/obj/machinery/computer/upload/borg, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvV" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvW" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/reset/purge, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/aiModule/supplied/protectStation, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwd" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/item/weapon/storage/lockbox/medal{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bwf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_sci (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwi" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwj" = ( +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwl" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/hallway/primary/starboard) +"bwo" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bws" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwv" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bww" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bwA" = ( +/obj/machinery/camera{ + c_tag = "Escape Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/easel, +/turf/open/floor/carpet, +/area/rec_room) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/rec_room) +"bwH" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwI" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwK" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bwL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwO" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwU" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwV" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bxa" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxb" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxc" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxd" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bxf" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bxg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxj" = ( +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxn" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxr" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxv" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxy" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxA" = ( +/obj/structure/table/wood, +/obj/item/weapon/pinpointer, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxB" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bxC" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay) +"bxD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bxE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxG" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bxH" = ( +/turf/closed/wall, +/area/medical/morgue) +"bxI" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bxJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxL" = ( +/turf/closed/wall, +/area/storage/emergency) +"bxM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/assembly/chargebay) +"bxO" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "loadingarea" + }, +/area/hallway/primary/starboard) +"bxP" = ( +/turf/closed/wall/r_wall, +/area/assembly/robotics) +"bxR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxS" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxT" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxU" = ( +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxV" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxX" = ( +/turf/closed/wall/r_wall, +/area/toxins/lab) +"bxY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bxZ" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bya" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byc" = ( +/obj/structure/easel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"byd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/rec_room) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"byf" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byg" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byh" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/plants, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"byk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byo" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"byw" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byz" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/storage) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/office) +"byC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"byF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"byI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"byK" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Bridge Delivery"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/bridge/meeting_room) +"byL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byM" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"byQ" = ( +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byS" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"byV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byW" = ( +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byX" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/coin/plasma, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/camera, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bza" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzb" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzd" = ( +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bze" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzf" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzg" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzh" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bzl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bzm" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bzn" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bzo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzp" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzu" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bzv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bzw" = ( +/turf/closed/wall, +/area/assembly/chargebay) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bzy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/assembly/chargebay) +"bzz" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzA" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzC" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + closingLayer = 3.2; + dir = 2; + icon_state = "left"; + layer = 3.2; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzE" = ( +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"bzF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bzG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bzH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + closingLayer = 3.2; + layer = 3.2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/toxins/lab) +"bzI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bzL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bzN" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bzP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/rec_room) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + verted = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"bAj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAk" = ( +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/quartermaster/office) +"bAl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bAo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bAp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bAs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bAt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/bridge/meeting_room) +"bAu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bAv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/maintcentral) +"bAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAz" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAA" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAB" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/weapon/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAC" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAE" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bAJ" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bAK" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bAL" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAO" = ( +/turf/open/floor/plating, +/area/storage/emergency) +"bAP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency) +"bAQ" = ( +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency) +"bAR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bAS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAT" = ( +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/assembly/chargebay) +"bAV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/chargebay) +"bAW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAY" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bBa" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBc" = ( +/obj/machinery/vending/robotics, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBf" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 2; + network = list("SS13") + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"bBg" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBi" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/toxins/lab) +"bBj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bBl" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + density = 0; + dir = 4; + icon_state = "rightopen"; + layer = 3 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bBw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBy" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBz" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bBA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBB" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBI" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBK" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBL" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBO" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBP" = ( +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bBT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bridge Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBV" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBW" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBY" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bBZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCc" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bCd" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCe" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCl" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bCm" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bCn" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCs" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bCT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bCU" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDb" = ( +/turf/closed/wall, +/area/maintenance/asmaint2) +"bDc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space, +/area/space) +"bDd" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + layer = 2.5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3; + name = "disposal exit vent" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bDn" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bDt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDy" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDF" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"bDG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Personnel APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bDL" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Confrence Room South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bDO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bDQ" = ( +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDR" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bDS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"bDW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bDX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bEf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEi" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bEl" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bEm" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bEn" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/assembly/chargebay) +"bEo" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bEp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bEs" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEw" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bEy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEB" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEC" = ( +/obj/machinery/r_n_d/protolathe, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bED" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bEE" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEJ" = ( +/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 = 32 + }, +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEL" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEO" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bER" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bET" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bEZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bFa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFf" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bFi" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/office) +"bFj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bFl" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bFm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bFn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bFp" = ( +/turf/closed/wall, +/area/crew_quarters/heads) +"bFq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads) +"bFr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads) +"bFt" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/champion, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bFu" = ( +/obj/item/weapon/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bFv" = ( +/turf/closed/wall, +/area/crew_quarters/captain) +"bFw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFz" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFA" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFE" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFI" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFJ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFK" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFM" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/medical) +"bFP" = ( +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"bFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bFY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGc" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bGf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/robotics) +"bGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bGj" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGl" = ( +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGm" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGo" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGp" = ( +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGq" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bGs" = ( +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bGz" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"bGE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bGF" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + icon_state = "switch-rev"; + id = "garbage"; + name = "disposal coveyor"; + position = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGG" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGH" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGI" = ( +/obj/structure/closet, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGJ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bGQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGS" = ( +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGT" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGU" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGV" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGW" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bGX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bGY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGZ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/central) +"bHa" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bHb" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHf" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bHg" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault" + }, +/area/ai_monitored/nuke_storage) +"bHi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"bHj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/gun/projectile/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bHk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bHl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHn" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHq" = ( +/obj/structure/table/glass, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHs" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHt" = ( +/turf/closed/wall, +/area/medical/medbay) +"bHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bHx" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHy" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/medical) +"bHA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bHB" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bHD" = ( +/turf/closed/wall, +/area/medical/genetics) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bHK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bHO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHP" = ( +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHR" = ( +/obj/structure/table, +/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/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bHS" = ( +/turf/closed/wall, +/area/assembly/robotics) +"bHT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHW" = ( +/turf/closed/wall, +/area/toxins/lab) +"bHX" = ( +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"bIb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bIc" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/lab) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/lab) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"bIj" = ( +/turf/closed/wall, +/area/toxins/shuttledock) +"bIk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/outpost) +"bIl" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/outpost) +"bIm" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bIn" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/outpost) +"bIo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bIp" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIq" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bIr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bIs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIx" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/office) +"bIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bIC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/primary/central) +"bIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hallway/primary/central) +"bIG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bIN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIQ" = ( +/obj/machinery/door/airlock/vault{ + icon_state = "door_locked"; + locked = 1; + req_access_txt = "53" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bIR" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIW" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/bikehorn/rubberducky, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJb" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJc" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJd" = ( +/obj/structure/bed/roller, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bJe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJo" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJp" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTHEAST)"; + icon_state = "whiteblue"; + dir = 5 + }, +/area/medical/genetics) +"bJq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bJr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJt" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bJu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJv" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJw" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bJx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bJy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJD" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bJF" = ( +/obj/structure/table, +/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/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bJG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bJH" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/research{ + name = "Research Division" + }) +"bJJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJK" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJO" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/toxins/lab) +"bJQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/lab) +"bJR" = ( +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bJT" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Science Outpost Dock APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bJX" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/outpost) +"bJY" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bJZ" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bKa" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_ss13"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/open/space, +/area/space) +"bKb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKc" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKi" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKj" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKm" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKo" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKp" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bKq" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bKr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bKs" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bKt" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bKu" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKv" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Vault Access"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bKy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKz" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"bKD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKF" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bKH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKJ" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bKK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKM" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor2"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKU" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKW" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKX" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bKY" = ( +/turf/open/floor/plasteel, +/area/medical/genetics) +"bKZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 14 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bLa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bLb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLf" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"bLh" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/assembly/robotics) +"bLj" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bLm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLo" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLp" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Experimentor Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLq" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLr" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLs" = ( +/obj/structure/closet/emcloset{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLw" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bLz" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bLA" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLD" = ( +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLE" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bLF" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/storage) +"bLG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bLH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/device/multitool, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bLQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/ai_monitored/nuke_storage) +"bLR" = ( +/turf/closed/wall, +/area/teleporter) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLT" = ( +/obj/structure/table, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bLU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLW" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLY" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bMc" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMn" = ( +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bMp" = ( +/obj/structure/table/glass, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor2"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMr" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bMs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bMt" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMu" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMw" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/chargebay) +"bMx" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 4 + }, +/area/assembly/robotics) +"bMy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMz" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMB" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bMD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bML" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/explab) +"bMO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMP" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"bMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bMZ" = ( +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bNa" = ( +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "7" + }, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bNb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost_home"; + name = "outpost shuttle bay"; + width = 7 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost"; + name = "outpost shuttle"; + port_angle = 90; + width = 7 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall3" + }, +/area/shuttle/outpost) +"bNc" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bNd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bNe" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/folder/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bNl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bNm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNn" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/coin/gold, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNq" = ( +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"bNr" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/ai_monitored/nuke_storage) +"bNs" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bNw" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNx" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/ai_monitored/nuke_storage) +"bNy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bNA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bNC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bND" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bNI" = ( +/obj/structure/table, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNS" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNU" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/medical_cloning, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bNZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOa" = ( +/obj/structure/window/reinforced, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOb" = ( +/turf/closed/wall/r_wall, +/area/assembly/chargebay) +"bOc" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bOd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bOe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOk" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOr" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOy" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/white, +/area/toxins/shuttledock) +"bOz" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/open/space, +/area/space) +"bOA" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bOC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bOG" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bOH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOI" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bON" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOQ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bOR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/teleporter) +"bOS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOT" = ( +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOU" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/teleporter) +"bOV" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOW" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/teleporter) +"bOY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPb" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPc" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bPd" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/sleeper) +"bPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera{ + c_tag = "Medbay Hallway"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPh" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPj" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/disks, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPk" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 12 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bPn" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPp" = ( +/obj/machinery/camera{ + c_tag = "Research Division West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bPz" = ( +/turf/closed/wall, +/area/crew_quarters/hor) +"bPA" = ( +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPC" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPD" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bPG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPI" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light, +/obj/machinery/status_display{ + density = 0; + pixel_y = -30; + supply_display = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPK" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bPL" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPM" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #4" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bPN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPO" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPR" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"bPS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bPU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bPV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bPW" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bPX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQc" = ( +/obj/machinery/button/door{ + id = "vaultshut"; + name = "Vault Shutters Control"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQg" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bQi" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/teleporter) +"bQj" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/teleporter) +"bQk" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/teleporter) +"bQl" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/teleporter) +"bQm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/medbay) +"bQo" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/medbay) +"bQp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQs" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQt" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQu" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bQv" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/sleeper) +"bQx" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQy" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQz" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bQF" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQG" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = 23 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQI" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/disk/tech_disk/gooncode, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQV" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQW" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQX" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bQY" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/crew_quarters/hor) +"bQZ" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/crew_quarters/hor) +"bRa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"bRb" = ( +/turf/closed/wall, +/area/toxins/explab) +"bRc" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/book/manual/experimentor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRd" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/toxins/explab) +"bRe" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRf" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/explab) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRi" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/outpost) +"bRm" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/outpost) +"bRn" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bRo" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bRq" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bRt" = ( +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/supply) +"bRv" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"bRw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/supply) +"bRx" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bRB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bRC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Vault Access"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/ai_monitored/nuke_storage) +"bRD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South-East"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/sleeper) +"bRF" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bRG" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRH" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/sleeper) +"bRJ" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRN" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRP" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Research"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRS" = ( +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bRT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bRU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRV" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRW" = ( +/turf/closed/wall/r_wall, +/area/toxins/server) +"bRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bRY" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bSa" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/science) +"bSb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bSe" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/item/weapon/coin/uranium, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSf" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSg" = ( +/obj/machinery/computer/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSh" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSi" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/crew_quarters/hor) +"bSj" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSk" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/hor) +"bSl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSo" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSp" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSs" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSu" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSz" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bSC" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"bSD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSE" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSM" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bSN" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSO" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSQ" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSS" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bST" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSU" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSV" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bTa" = ( +/obj/machinery/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTb" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTc" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTd" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (SOUTHEAST)"; + icon_state = "whiteblue"; + dir = 6 + }, +/area/medical/genetics) +"bTe" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTg" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"bTk" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bTn" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTo" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTq" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/science) +"bTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTt" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of your own office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTu" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/science) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bTw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bTx" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen/blue, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTz" = ( +/obj/machinery/computer/mecha, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTA" = ( +/obj/structure/rack, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTB" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTD" = ( +/turf/open/floor/engine, +/area/toxins/explab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTG" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTH" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTK" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTN" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bUa" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUh" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUl" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bUm" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUs" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUu" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUv" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUy" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUA" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/science) +"bUC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUD" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/science) +"bUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUH" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUM" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUN" = ( +/obj/machinery/r_n_d/experimentor, +/turf/open/floor/engine, +/area/toxins/explab) +"bUO" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bUP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bUQ" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/status_display{ + density = 0; + pixel_x = -32; + pixel_y = 0; + supply_display = 1 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUS" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUT" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUU" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUV" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bVa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bVb" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/supply) +"bVd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"bVe" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/supply) +"bVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bVg" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVu" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVw" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVA" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVE" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bVF" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVI" = ( +/turf/closed/wall, +/area/medical/cmo) +"bVJ" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVK" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVP" = ( +/obj/machinery/r_n_d/server/core, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVR" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bVS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVT" = ( +/obj/machinery/computer/rdservercontrol, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVV" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/science) +"bVX" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVY" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVZ" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/science) +"bWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/item/weapon/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWd" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/computer/card/minor/rd, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWe" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("SS13","RD") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWi" = ( +/obj/machinery/camera{ + c_tag = "Experimentor Lab Chamber"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWo" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bWp" = ( +/turf/closed/wall, +/area/storage/tech) +"bWq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/central) +"bWt" = ( +/turf/closed/wall, +/area/janitor) +"bWu" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bWv" = ( +/turf/closed/wall, +/area/maintenance/asmaint) +"bWw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWx" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"bWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWz" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWA" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWB" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWC" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWD" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bWF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWG" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWH" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bWM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/cmo) +"bWN" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWO" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWR" = ( +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"bWS" = ( +/turf/closed/wall, +/area/toxins/storage) +"bWT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWV" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWW" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"bWZ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXl" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/storage/tech) +"bXm" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXn" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 2 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Tech Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXo" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXp" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXq" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bXt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bXu" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/plasteel, +/area/janitor) +"bXv" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/vehicle/janicart, +/turf/open/floor/plasteel, +/area/janitor) +"bXx" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/janitor) +"bXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bXz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXA" = ( +/turf/open/floor/plasteel, +/area/janitor) +"bXB" = ( +/obj/machinery/door/window/westleft{ + name = "Janitoral Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/janitor) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/janitor) +"bXD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "surgery"; + name = "Surgery Shutter Control"; + pixel_x = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXH" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXJ" = ( +/obj/structure/table, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bXL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bXO" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXR" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXW" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXX" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXY" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/obj/item/clothing/tie/stethoscope, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bYa" = ( +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYb" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Misc Research APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYg" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYi" = ( +/turf/closed/wall, +/area/toxins/mixing) +"bYj" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/plasmaresearch, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYo" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"bYr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"bYs" = ( +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"bYt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/mixing) +"bYy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/labor) +"bYz" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/aft) +"bYJ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYL" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYN" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/open/floor/plating, +/area/storage/tech) +"bYO" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bYR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bYT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bYY" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"bYZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/janitor) +"bZa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 6 + }, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZc" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZi" = ( +/obj/structure/table/optable, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bZq" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZt" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZy" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZz" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZA" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/storage) +"bZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZF" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/mixing) +"bZH" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZP" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/mixing) +"bZQ" = ( +/turf/closed/indestructible, +/area/toxins/test_area) +"bZR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"bZS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZT" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bZV" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"bZW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZY" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"caa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cab" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cac" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cad" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cae" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"caf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"cag" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cah" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/pandemic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/computer/rdconsole, +/obj/item/weapon/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/destructive_analyzer, +/obj/item/weapon/circuitboard/machine/protolathe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/computer/aifixer, +/obj/item/weapon/circuitboard/computer/teleporter, +/obj/item/weapon/circuitboard/machine/circuit_imprinter, +/obj/item/weapon/circuitboard/machine/mechfab, +/turf/open/floor/plating, +/area/storage/tech) +"cai" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/mining, +/obj/item/weapon/circuitboard/machine/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/computer/arcade/battle, +/turf/open/floor/plating, +/area/storage/tech) +"caj" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/telecomms/processor, +/obj/item/weapon/circuitboard/machine/telecomms/receiver, +/obj/item/weapon/circuitboard/machine/telecomms/server, +/obj/item/weapon/circuitboard/machine/telecomms/bus, +/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, +/obj/item/weapon/circuitboard/computer/message_monitor{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cak" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cal" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"cam" = ( +/obj/structure/table, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"can" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/janitor) +"cao" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/janitor) +"cap" = ( +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"caq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/janitor) +"car" = ( +/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/open/floor/plating, +/area/maintenance/asmaint) +"cas" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cat" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cav" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"cax" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cay" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"caA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caB" = ( +/obj/machinery/vending/wallmed{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("SS13") + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caG" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv4"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caH" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv4"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caL" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Medical Officer"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caN" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/cmo) +"caQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caS" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"caZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cba" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"cbb" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cbf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/mixing) +"cbg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"cbi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbk" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cbl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cbm" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cbn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cbo" = ( +/obj/item/weapon/ore/iron, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbq" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cbs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbt" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbu" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cby" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbA" = ( +/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 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/janitor) +"cbI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/janitor) +"cbJ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbL" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbS" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating"; + dir = 1; + network = list("SS13"); + pixel_x = 22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbV" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbW" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbX" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbY" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cca" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccb" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccc" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccd" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cce" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccg" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cch" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cci" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"cck" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/cartridge/medical, +/obj/item/weapon/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccl" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccn" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"cco" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"ccp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ccq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"cct" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccw" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible, +/area/toxins/test_area) +"ccL" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccN" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "48" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_angle = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"ccP" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"ccQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccU" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccW" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"ccX" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/storage/tech) +"ccY" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/cloning{ + pixel_x = 0 + }, +/obj/item/weapon/circuitboard/computer/med_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/clonescanner, +/obj/item/weapon/circuitboard/machine/clonepod, +/obj/item/weapon/circuitboard/computer/scan_consolenew, +/turf/open/floor/plating, +/area/storage/tech) +"ccZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cda" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/powermonitor{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/computer/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdb" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cde" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdn" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cds" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cdt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdv" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cdw" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdx" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdy" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdA" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdB" = ( +/turf/closed/wall, +/area/toxins/xenobiology) +"cdC" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cdD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdG" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdI" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdJ" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdK" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdO" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/mixing) +"cdP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cdS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/mixing) +"cdT" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdU" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdW" = ( +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cdX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdY" = ( +/obj/item/weapon/ore/silver, +/obj/item/weapon/ore/silver, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cdZ" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cea" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"ceb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cec" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/pickaxe{ + pixel_x = 5 + }, +/obj/item/weapon/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ced" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cee" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cef" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cej" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/storage/tech) +"cek" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/storage/tech) +"cel" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cem" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tech) +"ceo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ceq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"ces" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"cet" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"ceu" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cev" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cex" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cey" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceF" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay) +"ceG" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceH" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room 2"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay) +"ceK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "CM Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceP" = ( +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceQ" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceR" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceS" = ( +/obj/machinery/door/window/southleft{ + name = "Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceU" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceW" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/toxins/xenobiology) +"ceX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceZ" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cfa" = ( +/obj/structure/sign/fire, +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"cfb" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cfc" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfd" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/toxins/mixing) +"cff" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfg" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfh" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfi" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cfj" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfk" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"cfl" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cfm" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfp" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/storage/tech) +"cfq" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfr" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/open/floor/plating, +/area/storage/tech) +"cfs" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cft" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfu" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"cfw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cfA" = ( +/turf/closed/wall/r_wall, +/area/atmos) +"cfB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/atmos) +"cfG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfK" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfX" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfZ" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cga" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgb" = ( +/obj/machinery/smartfridge/extract, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgc" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cge" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgf" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cgh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cgi" = ( +/obj/machinery/door/poddoor{ + id = "mixvent2"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgk" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cgm" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor2"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump2"; + exterior_door_tag = "tox_airlock_exterior2"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior2"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cgo" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cgp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cgq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgs" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgu" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cgw" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/primary/aft) +"cgx" = ( +/turf/closed/wall, +/area/atmos) +"cgy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/atmos) +"cgz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgD" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/atmos) +"cgE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cgF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "wloop_atm_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 2 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgL" = ( +/turf/open/floor/plasteel, +/area/atmos) +"cgM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgN" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgO" = ( +/turf/closed/wall, +/area/medical/virology) +"cgP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cgQ" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cha" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"chb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"chd" = ( +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"che" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior2"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chf" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump2" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chg" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior2"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chi" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"chk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chl" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cho" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chq" = ( +/turf/closed/wall, +/area/construction) +"chr" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction) +"chs" = ( +/turf/open/floor/plating, +/area/construction) +"cht" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/construction) +"chu" = ( +/turf/open/floor/plasteel, +/area/construction) +"chv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/construction) +"chw" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"chx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"chB" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"chF" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chG" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chN" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/atmos) +"chO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"chP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chQ" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chS" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/virology) +"chU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/virology) +"chW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chX" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cia" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cic" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cid" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cig" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cih" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cik" = ( +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cil" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cim" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent2"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker2"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cio" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cip" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ciq" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cir" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"cis" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction) +"cit" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/construction) +"ciu" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"civ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ciw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/aft) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/atmos) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciD" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/atmos) +"ciF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/autolathe/atmos, +/turf/open/floor/plasteel, +/area/atmos) +"ciG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/atmos) +"ciH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciI" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste In"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciN" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"ciO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/atmos) +"ciR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ciT" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"ciU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciW" = ( +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ciY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ciZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cja" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cjg" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cji" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjj" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjk" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjn" = ( +/obj/structure/table, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjp" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjq" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cjt" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cju" = ( +/turf/closed/wall, +/area/toxins/misc_lab) +"cjv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjw" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjy" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjz" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cjC" = ( +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cjD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjE" = ( +/obj/structure/girder, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"cjG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjH" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjM" = ( +/obj/structure/closet/crate, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/construction) +"cjO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"cjQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cjU" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cjV" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cjW" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cka" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ckb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckl" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckm" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"ckn" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/atmos) +"ckp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cks" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckt" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cku" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckx" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cky" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckB" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckC" = ( +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckD" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"ckE" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Testing Lab North"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + req_access = null + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckM" = ( +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"ckN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ckO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckQ" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cla" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"clc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cle" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clf" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"clg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/atmos) +"cli" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cll" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Unfiltered to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cls" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"clt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"clv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "waste_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"clw" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cly" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"clB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clE" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clK" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"clM" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clN" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clR" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/target_stake, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"clS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"clT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"clU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/rack, +/obj/item/clothing/head/cone, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/aft) +"clW" = ( +/obj/item/weapon/storage/secure/safe, +/turf/closed/wall, +/area/maintenance/aft) +"clX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clY" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + tag = "icon-connector_map (WEST)"; + icon_state = "connector_map"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cma" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cme" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmf" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmg" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/construction) +"cmh" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/construction) +"cmi" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/construction) +"cmj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cmk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cml" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plating, +/area/atmos) +"cmm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cmo" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"cmp" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/atmos) +"cmq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/open/floor/plasteel, +/area/atmos) +"cmr" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cmt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmv" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmH" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Module" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmI" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmJ" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmL" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cmN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmR" = ( +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmU" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmV" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/toxins/misc_lab) +"cmY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cmZ" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses/garb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cna" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/clothing/tie/black, +/obj/item/clothing/tie/red, +/obj/item/clothing/mask/bandana/red, +/obj/item/clothing/mask/bandana/skull, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cne" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cng" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cni" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"cnj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnl" = ( +/obj/machinery/power/apc{ + name = "Aft Hall APC"; + dir = 8; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cnm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnn" = ( +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/atmos) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/atmos) +"cnq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnt" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/atmos) +"cny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tanks" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnA" = ( +/turf/open/floor/engine/n2o, +/area/atmos) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/medical/virology) +"cnE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnI" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnK" = ( +/obj/structure/disposalpipe/segment, +/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/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cnL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnM" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnS" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnT" = ( +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnU" = ( +/obj/structure/target_stake, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cnW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnX" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/storage/box/cups, +/turf/open/floor/plating, +/area/maintenance/aft) +"coa" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cob" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coc" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cog" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cok" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"col" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Telecoms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"com" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/atmos) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"coq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cou" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cox" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/atmos) +"coy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coD" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/atmos) +"coE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coF" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/atmos) +"coG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coK" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coM" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"coO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coP" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"coQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall, +/area/toxins/xenobiology) +"coS" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coT" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coV" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coW" = ( +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"coX" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coZ" = ( +/obj/machinery/camera{ + c_tag = "Testing Firing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpa" = ( +/obj/structure/target_stake, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpb" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/maintenance/aft) +"cpc" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpd" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cpg" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cph" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cpk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/atmos) +"cpp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/atmos) +"cps" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/atmos) +"cpt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/atmos) +"cpu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cpw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpx" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "n2o"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/atmos) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cpA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cpB" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cpJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpK" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpM" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cpP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/misc_lab) +"cpQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpR" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cpS" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cpT" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cpU" = ( +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpW" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpY" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpZ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqa" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqb" = ( +/obj/machinery/computer/message_monitor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cqc" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqe" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cqg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqj" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cqk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cql" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 8; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqo" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cqp" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqr" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqs" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"cqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqv" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqx" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqy" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqC" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqE" = ( +/obj/structure/rack, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Test"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet, +/obj/item/pipe{ + dir = 4; + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cqJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/weapon/paper/range, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHEAST)"; + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/misc_lab) +"cqK" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHWEST)"; + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/misc_lab) +"cqL" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cqM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqO" = ( +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/aft) +"cqP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/pill/mannitol, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqR" = ( +/turf/closed/wall, +/area/maintenance/strangeroom) +"cqS" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cqT" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqW" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqZ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cra" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"crf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"crg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/atmos) +"crh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"cri" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"crj" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"crk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crl" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"crm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"crn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"cro" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/atmos) +"crq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Plasma Tank" + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crs" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cru" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"crv" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + anchored = 1; + density = 0; + pixel_x = -30 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cry" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"crA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"crD" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crE" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crF" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crL" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"crP" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crQ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crT" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"crU" = ( +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crV" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crW" = ( +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crX" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crY" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csa" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csd" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csn" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"cso" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/atmos) +"csp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"csq" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Toxin Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/atmos) +"csr" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor" + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"css" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"csu" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csv" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"csx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology South"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"csD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"csE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"csH" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csK" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"csP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csV" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/tcommsat/computer) +"csW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csX" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"ctc" = ( +/turf/closed/wall, +/area/engine/break_room) +"ctd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cte" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cth" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cti" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"ctj" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ctk" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"ctl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/item/weapon/wrench, +/turf/open/floor/plasteel, +/area/atmos) +"cto" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"ctp" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "plasma"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"ctr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cts" = ( +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"ctt" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"ctu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"ctx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/weapon/wrench, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/maintenance/asmaint) +"cty" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ctz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint) +"ctA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctD" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ctE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctF" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ctG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"ctH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/misc_lab) +"ctI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctK" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctM" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/r_arm, +/obj/item/weapon/shard, +/obj/item/weapon/hatchet, +/obj/item/weapon/staplegun, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctO" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/l_leg, +/obj/item/bodypart/l_arm, +/obj/item/weapon/restraints/handcuffs, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"ctR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"ctS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ctU" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/bluegrid{ + dir = 8; + icon_state = "vault"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cua" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cub" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cuc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cud" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/tcommsat/computer) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cuf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Telecoms Monitoring"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cui" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cuj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuk" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cul" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cum" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"cun" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cuo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cup" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cuq" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"cur" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/engineering) +"cus" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"cut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cuu" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuv" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/atmos) +"cux" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/maintenance/asmaint) +"cuG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cuH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/asmaint) +"cuI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuN" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuS" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cuU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cuV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cuW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cuX" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuY" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuZ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel{ + tag = "icon-damaged5"; + icon_state = "damaged5" + }, +/area/maintenance/strangeroom) +"cva" = ( +/obj/machinery/camera{ + c_tag = "Telecoms Server Room"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cvb" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvc" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/tcommsat/computer) +"cve" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cvi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cvk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cvp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/plasteel, +/area/atmos) +"cvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/atmos) +"cvr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"cvs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvt" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/weapon/cigbutt, +/turf/open/floor/plasteel, +/area/atmos) +"cvu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/atmos) +"cvw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank" + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvy" = ( +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvG" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cvI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cvJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvK" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("Test","RD"); + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cvL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"cvM" = ( +/obj/machinery/camera{ + c_tag = "Testing Lab South"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvN" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvO" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cvQ" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cvS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvT" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/strangeroom) +"cvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/strangeroom) +"cvW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cvX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cvY" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/chem_pile, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cvZ" = ( +/obj/machinery/message_server, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwa" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwc" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwe" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cwg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"cwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwt" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwu" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cwv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cwy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwz" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/atmos) +"cwA" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwF" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwP" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cwR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cwU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cwX" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/spirit_board, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cxd" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/restraints/handcuffs, +/obj/item/weapon/pen, +/obj/item/weapon/paper{ + info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; + name = "Strange Paper" + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/strangeroom) +"cxe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"cxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gibber, +/turf/open/floor/plasteel, +/area/maintenance/strangeroom) +"cxg" = ( +/obj/machinery/vending/cart{ + desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; + icon_state = "cart-broken"; + name = "Old Machine"; + product_slogans = "Bzzzt..-6-4-!"; + products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cxh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxi" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxj" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxk" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxl" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cxm" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxx" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxC" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxD" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cxF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cxG" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "co2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/atmos) +"cxK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cxY" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxZ" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyc" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cye" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cym" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cyn" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"cyo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyr" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyt" = ( +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyv" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/break_room) +"cyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyB" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cyI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/atmos) +"cyK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cyL" = ( +/obj/structure/sign/fire{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cyN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyP" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyX" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyZ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cza" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czc" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czd" = ( +/obj/item/clothing/under/rank/vice, +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"czi" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czj" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/chiefs_office) +"czl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/engine/break_room) +"czm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/break_room) +"czn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/engine/break_room) +"czo" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = "n2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"czp" = ( +/turf/closed/wall, +/area/maintenance/incinerator) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/incinerator) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"czs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/minimeteor, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czt" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/snacks/donkpocket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/c_tube, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/caution, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"czB" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/maintenance/portsolar) +"czE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"czF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"czG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czN" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/engine/chiefs_office) +"czO" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czQ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czS" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"czV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/engineering) +"czW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/atmos) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/atmos) +"czY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAa" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = "o2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAd" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAe" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/kitchenspike_frame, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAh" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAi" = ( +/obj/structure/table/wood, +/obj/item/weapon/retractor/alien, +/obj/item/weapon/reagent_containers/glass/bowl, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAj" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"cAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cAE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAF" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAG" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"cAI" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAP" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAT" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAW" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/atmos) +"cAY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/atmos) +"cAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/atmos) +"cBa" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/atmos) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/atmos) +"cBc" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/atmos) +"cBd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/atmos) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 10 + }, +/area/atmos) +"cBf" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "arrival" + }, +/area/atmos) +"cBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 6 + }, +/area/atmos) +"cBh" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cBi" = ( +/turf/open/floor/plating, +/area/atmos) +"cBj" = ( +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBk" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/incinerator) +"cBl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/incinerator) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/lighter/greyscale, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBq" = ( +/obj/structure/chair, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBr" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cBv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBE" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cBH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBZ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCd" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCg" = ( +/turf/closed/wall, +/area/engine/engineering) +"cCh" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCi" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCk" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/coin/plasma, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCn" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCq" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCr" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCy" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCC" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical, +/obj/item/pizzabox/mushroom, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCE" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCH" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cCJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCN" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCO" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/switchblade{ + force = 12 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCQ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCS" = ( +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCY" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cCZ" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cDa" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cDb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDd" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDi" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/computer/card/minor/ce, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDj" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDl" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space) +"cDq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space, +/area/space) +"cDr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space) +"cDs" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/maintenance/incinerator) +"cDt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/tie/black, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDx" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/shard, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDB" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDC" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDD" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cDH" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDI" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cDJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDU" = ( +/obj/item/weapon/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/item/weapon/cartridge/atmos, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDV" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cEa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEb" = ( +/obj/item/clothing/head/cone, +/obj/item/weapon/restraints/handcuffs/cable/orange, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Biohazard Disposals"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEf" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEk" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEl" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEm" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEn" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEA" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/weapon/circuitboard/computer/solar_control, +/obj/item/weapon/electronics/tracker, +/obj/item/weapon/paper/solar, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEB" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cED" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEF" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cEG" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"cEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEM" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEP" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cER" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cES" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor" + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1443; + icon_state = "vent_map"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cEU" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEV" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/incinerator) +"cEW" = ( +/obj/item/clothing/suit/toggle/labcoat/mad, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEX" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cEY" = ( +/obj/structure/table/wood, +/obj/item/organ/internal/butt/xeno, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFa" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (NORTH)"; + icon_state = "manifold"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFf" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFl" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFr" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFs" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cFv" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cFw" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cFx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engine/engineering) +"cFz" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cFC" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/wrench, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cFJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFK" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFM" = ( +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics O2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFP" = ( +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Air-mix Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFS" = ( +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFT" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFU" = ( +/obj/item/weapon/kitchen/knife, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFV" = ( +/obj/structure/table/wood, +/obj/item/weapon/scalpel, +/obj/item/weapon/wirecutters, +/obj/item/organ/brain/alien, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFW" = ( +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFX" = ( +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGe" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGh" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cGn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGo" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGp" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGq" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/engine/engineering) +"cGs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cGt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGE" = ( +/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/open/floor/plasteel, +/area/engine/engineering) +"cGF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGI" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cGJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cGK" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cGL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hatchet, +/obj/item/weapon/lighter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cGM" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGN" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/crowbar, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGO" = ( +/obj/item/weapon/bedsheet/cult, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGP" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGT" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGU" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGW" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGX" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGY" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGZ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHa" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cHd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHe" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cHf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cHg" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cHh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "SMES Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHi" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/engine/engineering) +"cHk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Middle"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cHl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHp" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cHr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Waste Out"; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHt" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cHv" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cHz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHC" = ( +/obj/machinery/door/window{ + name = "SMES Chamber"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHD" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cHG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "SMES Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/engine/engineering) +"cHJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHY" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/airlock_painter, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cIa" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cIb" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIc" = ( +/turf/open/floor/plating, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cId" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donkpockets, +/turf/open/floor/plating, +/area/space) +"cIf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIh" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIn" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIq" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engineering) +"cIs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"cIC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIF" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIG" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cII" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engineering) +"cIM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cIN" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIO" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIP" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cIQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space, +/area/space) +"cIR" = ( +/obj/structure/table_frame, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint2) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space) +"cIT" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIV" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIW" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cIZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"cJa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cJb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cJc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJj" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"cJk" = ( +/obj/structure/window, +/turf/open/floor/plating, +/area/toxins/mixing) +"cJl" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "0"; + req_one_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cJm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/engine/engineering) +"cJt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"cJu" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cJv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJz" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engineering) +"cJA" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cJB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod4"; + shuttleId = "pod4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"cJF" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "asteroid_pod4" + }, +/turf/open/space, +/area/space) +"cJG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJI" = ( +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJK" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/engine/engineering) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJN" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJO" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cJR" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJS" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJT" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJV" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJW" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/engineering) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/engine/engineering) +"cJZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engine/engineering) +"cKa" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKd" = ( +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cKe" = ( +/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_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKf" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cKh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKj" = ( +/obj/structure/sign/pods{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engineering) +"cKk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Escape Pod"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cKl" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKm" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKn" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKs" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/camera{ + c_tag = "Engineering Materials"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKt" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKu" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cKw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKz" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKM" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "32" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering) +"cKU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKZ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLa" = ( +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLb" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Port Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering North" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLe" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLf" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLh" = ( +/obj/structure/transit_tube{ + tag = "icon-Block"; + icon_state = "Block" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLi" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/sign/securearea{ + name = "EXTERNAL AIRLOCK"; + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cLk" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/item/weapon/lighter{ + lit = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Entrance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLo" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLr" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/weapon/storage/backpack/industrial, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLt" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLz" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLF" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLH" = ( +/obj/structure/transit_tube/station{ + dir = 8; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/obj/structure/transit_tube_pod, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cLJ" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLM" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLO" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLP" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Supermatter Control Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cLS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLX" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMa" = ( +/obj/structure/table, +/obj/item/weapon/pocketknife, +/obj/item/weapon/reagent_containers/food/snacks/beans{ + bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); + desc = "Smells kind of funny." + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMb" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMd" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMg" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMh" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMn" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/reagent_containers/pill/charcoal, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"cMp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMq" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cMr" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMv" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/engine/supermatter) +"cMw" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMx" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMz" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/engine/supermatter) +"cMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/engine/engineering) +"cMD" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/turf/open/space, +/area/space) +"cME" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/open/space, +/area/space) +"cMF" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/weapon/paper/gravity_gen{ + layer = 3 + }, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMM" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMQ" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cMR" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/turf/open/space, +/area/space) +"cMS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMT" = ( +/obj/structure/transit_tube, +/turf/open/space, +/area/space) +"cMU" = ( +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/open/space, +/area/space) +"cMV" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/open/space, +/area/space) +"cMW" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMX" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMZ" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNa" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNc" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNd" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNe" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNf" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNg" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNh" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNk" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNl" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNp" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNs" = ( +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/space) +"cNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNu" = ( +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/space) +"cNv" = ( +/obj/item/weapon/crowbar, +/turf/open/space, +/area/space) +"cNw" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNx" = ( +/turf/closed/wall/r_wall, +/area/aisat) +"cNy" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cNz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cNA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/engine/engine_smes) +"cNC" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cND" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cNE" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cNF" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/aisat) +"cNG" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/aisat) +"cNH" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/aisat) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNJ" = ( +/obj/item/weapon/weldingtool, +/turf/open/space, +/area/space) +"cNK" = ( +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/space) +"cNM" = ( +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/space) +"cNN" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNO" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/open/space, +/area/space) +"cNP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNQ" = ( +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNS" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNT" = ( +/obj/structure/transit_tube{ + tag = "icon-S-NW"; + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNU" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNV" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNW" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNZ" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cOd" = ( +/turf/closed/wall, +/area/aisat) +"cOe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/aisat) +"cOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Teleporter Room"; + req_access_txt = "17;65" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cOk" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cOl" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOr" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOs" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cOt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOv" = ( +/obj/structure/transit_tube/station{ + dir = 4; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOy" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/aisat) +"cOz" = ( +/turf/open/floor/plating, +/area/aisat) +"cOA" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cOB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cOF" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block"; + tag = "icon-Block (NORTH)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOI" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cOM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cON" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "MiniSat Entrance"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat External Power APC"; + pixel_x = -27; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOW" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOY" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOZ" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/aisat) +"cPc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cPd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/aisat) +"cPe" = ( +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/closed/wall, +/area/aisat) +"cPj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cPm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPo" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPw" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cPx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cPz" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cPA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cPB" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPC" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPI" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPN" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/aisat) +"cPP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPR" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPT" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPU" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + cell_type = 2500; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space, +/area/space) +"cPW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cPY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cPZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQb" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cQc" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQd" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Antechamber"; + dir = 1; + network = list("MiniSat") + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cQh" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQj" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQk" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_locked"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQp" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQq" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + dir = 2; + network = list("MiniSat","RD"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQr" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQw" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQy" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQA" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQC" = ( +/turf/closed/wall, +/area/turret_protected/ai) +"cQD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQE" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQF" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQH" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQI" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQJ" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber South"; + dir = 2; + network = list("RD","MiniSat") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQN" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQV" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cQW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQY" = ( +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cQZ" = ( +/obj/structure/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/secure) +"cRc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRd" = ( +/obj/structure/rack, +/obj/item/weapon/crowbar/red, +/obj/item/weapon/wrench, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cRf" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cRg" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat Maint APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air Out"; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/ai_monitored/storage/secure) +"cRj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/ai_monitored/storage/secure) +"cRk" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/ai_monitored/storage/secure) +"cRl" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRm" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cRn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/aisat) +"cRo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/aisat) +"cRy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRB" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cRF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cRG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cRH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRI" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRJ" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRK" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cRP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRS" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRU" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 2; + name = "SMES room APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRV" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cRW" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cRZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cSa" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSb" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Supermatter Control Room"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cSc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSf" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSg" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSi" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera{ + c_tag = "Port Engineering North-East"; + dir = 5; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSo" = ( +/obj/machinery/vending/tool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSp" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cSB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSC" = ( +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cSE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/engine/supermatter) +"cSG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSH" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "smblast"; + name = "Control Room Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/engine/supermatter) +"cSJ" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSK" = ( +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSL" = ( +/obj/item/device/radio/off, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSM" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSN" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSO" = ( +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSP" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSQ" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSS" = ( +/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 = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cST" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTe" = ( +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cTg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cTi" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTo" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smblast" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTr" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTB" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTD" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTF" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTG" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTI" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTJ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTK" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTL" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + layer = 3 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Center" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTQ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Supermatter APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTS" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTY" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/port_engineering) +"cTZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUa" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cUe" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUh" = ( +/obj/machinery/atmospherics/components/binary/volume_pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/power/emitter, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUs" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUx" = ( +/turf/closed/wall, +/area/engine/port_engineering) +"cUA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUF" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUG" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space) +"cUJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cUL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUN" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Filtering Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUO" = ( +/obj/machinery/camera{ + c_tag = "Filtering Room" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters"; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVb" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVc" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cVf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVg" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space) +"cVl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVn" = ( +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVp" = ( +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVv" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVw" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "superinput" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVC" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/port_engineering) +"cVG" = ( +/obj/item/weapon/wirecutters, +/turf/open/space, +/area/space) +"cVH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVL" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVM" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVN" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVO" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVP" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVQ" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVR" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Filtering Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVT" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVU" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/supermatter) +"cVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVY" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/supermatter) +"cVZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cWe" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWj" = ( +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWl" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWo" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWp" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWq" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWu" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWv" = ( +/obj/machinery/mass_driver{ + id = "engicannon" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + tag = "smin"; + volume_rate = 700 + }, +/obj/machinery/power/supermatter_shard{ + anchored = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWx" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWz" = ( +/turf/open/floor/plating, +/area/engine/supermatter) +"cWA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space) +"cWE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWF" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWG" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWI" = ( +/obj/machinery/particle_accelerator/control_box{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 0; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWK" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWL" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage1"; + name = "secure storage" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/port_engineering) +"cWM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWQ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWV" = ( +/obj/structure/sign/securearea{ + color = ""; + desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; + name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWX" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space) +"cWY" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space) +"cXc" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXd" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXe" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXf" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXg" = ( +/obj/machinery/camera{ + c_tag = "Engineering PA"; + dir = 9; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 2; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXi" = ( +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXj" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/camera{ + c_tag = "Port Engineering Secure Storage"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cXl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXn" = ( +/obj/machinery/door/poddoor{ + id = "engicannon" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cXo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXq" = ( +/obj/structure/window{ + color = "red"; + desc = "A window, break in case of emergency."; + dir = 1; + icon_state = "window"; + tag = "icon-window (NORTH)" + }, +/obj/machinery/button/massdriver{ + id = "engicannon"; + name = "\improper JETTISON ENGINE"; + pixel_y = -22; + req_access_txt = "32" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/supermatter) +"cXr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXt" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXw" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage1"; + name = "Secure Storage"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "10" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering Middle"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXx" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + volume_rate = 5000 + }, +/turf/open/floor/plating/airless, +/area/space) +"cXz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/space) +"cXA" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXE" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXI" = ( +/obj/machinery/field/generator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXM" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Port Engineering South" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXY" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYb" = ( +/obj/item/device/multitool, +/turf/open/space, +/area/space) +"cYd" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYe" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYf" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYh" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYi" = ( +/obj/structure/grille, +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYk" = ( +/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 = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYq" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYr" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYD" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/space, +/area/space) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJapXaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebcLbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYaZLbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLaZLbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccsbZzbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGczocEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aaa +aad +aad +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aac +aac +aac +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +aac +atM +auw +auw +auw +auw +axm +axm +axm +atM +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aac +aaf +aac +aaa +ass +ath +ath +aux +auw +awf +auw +ayu +azs +aAF +atM +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aac +aaf +aac +arO +ast +ati +atN +auy +avl +awg +avl +ayv +azt +aAG +atM +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bDc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +asu +ath +ath +auz +auw +awh +axf +ayv +azt +aAG +axm +aac +aac +aaf +aac +aaa +aaa +aad +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aac +aac +aad +aad +aad +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +bBl +bDd +axm +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +atM +auw +auw +auw +axg +ayw +azt +aAG +axm +aaa +aaa +aaf +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +atm +aac +aac +aac +aaa +aaa +aaf +aac +aaa +aaa +aaa +atM +axm +axm +awg +axm +axm +atM +aaa +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cPz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +asv +atj +atj +auA +auw +awi +auw +ayx +azt +aAG +axm +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aac +aac +aaa +aaa +atM +bzM +axm +bDd +axm +ayu +atM +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +arP +asw +atk +atO +auB +avl +awg +axh +ayv +azt +aAH +atM +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aAL +azt +azA +azt +azA +azt +aAL +aaa +aac +aac +aac +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +asx +atj +atj +auC +auw +awh +axf +ayy +azt +aAI +atM +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aAL +aDF +bBm +azt +bEK +azt +aAL +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +aac +atM +auw +auw +auw +auw +ayz +azt +auw +atM +atM +atM +atM +axm +axm +axm +atM +atM +atM +atM +atM +aaa +aaa +atM +atM +atM +atM +atM +aAL +aAL +atM +aAL +aAL +atM +atM +atM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aAL +bzN +biA +azt +aNf +bGy +aAL +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axi +ayA +azu +aAJ +aBI +aCF +aDE +aER +aCF +aCF +aCF +aAJ +aKv +aLJ +aNc +axm +aaa +aaa +axm +aTP +aVk +auw +aYG +bap +bbD +bdg +bbD +bfP +bfP +bit +aAL +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +atM +bzN +biA +bDe +bDj +bGy +aAL +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auw +ayB +azv +aAK +azt +azt +aDF +aES +aGd +aGd +aGd +aJs +aGd +aLK +aNd +auw +auw +auw +auw +aTQ +aVl +auw +aYH +azt +azt +bdh +azt +azt +azt +aVl +aAL +aaa +aaa +aaa +aaa +aac +aac +aac +bjX +bjX +bjX +bjY +bBn +bDf +axm +bGz +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auw +auw +azw +auw +ayB +azv +azv +aET +auw +azw +auw +auw +auw +aLL +aNe +aOk +aOk +aOk +aqg +aTR +aVm +aqg +aTR +aYP +aYP +bdi +aYP +aYP +aYP +biu +bjX +bjX +bjX +boM +boM +boM +bjX +bjX +bjX +bwC +byc +bjY +bBo +aNf +bEL +awg +bEL +bKa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +azx +aAL +aAL +aAL +aAL +aAL +aAL +azx +axm +aaa +auw +aLM +aNf +aOl +aPD +aPD +apB +aPD +aPD +apB +aPD +aPD +aPD +aPD +aPD +bfQ +azt +biv +bjX +bly +bmU +bmV +bmV +bmV +bmV +bui +bvo +bmV +boR +bjY +bBo +bDf +axm +axm +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aac +auw +azw +auw +aBJ +aBJ +aBJ +aBJ +auw +azw +auw +aaa +axi +aLN +aNf +aOm +aPE +aQR +aSm +aTS +aTS +aXh +aYI +aYI +aYI +bdj +bew +bfR +azt +biw +bjY +blz +bmV +boN +boN +bmV +bmV +buj +bvo +bwD +bmV +bjY +bBo +bDg +azA +bzM +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auD +awj +azy +awj +auE +auE +auE +auE +awj +axl +awj +aJt +auw +aLO +aNf +aOn +aPF +aQS +aSn +aTT +aPG +aPG +aPG +aPG +aPG +aPG +bex +bfR +azt +bix +bjY +blz +bmW +boO +bqy +bsc +bmV +buk +bvp +bwE +bmV +bzO +bBo +aNf +azt +bGA +axm +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +auD +avm +awj +axj +ayC +avo +avo +aBK +aCG +aDG +aEU +avo +avo +aIr +aJu +auw +aLN +aNf +azt +aPG +aQT +aSo +aSn +aSo +aXi +aSo +aSn +aSo +bdk +bex +bfR +azt +biy +bjY +blz +bmW +boP +bqz +bsc +bmV +bmV +bmV +bwF +byd +bzP +bBp +bqD +azt +bGB +axm +aac +aac +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +auE +avn +avn +axk +avo +azz +avo +azz +avo +azz +avo +azz +avo +aIr +aJu +auw +aLP +aNf +azt +aPG +aQU +aSn +aTU +aVn +aPG +aYJ +baq +aSo +aPF +aPF +bfP +bfP +biz +bjZ +blz +bmW +boQ +bqA +bsc +bmV +bmV +bmV +bmV +bmV +bzO +bBo +bDh +azv +bGC +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +auE +avo +avo +axl +avo +azz +avo +azz +aCH +azz +avo +azz +avo +aIr +aJu +axi +aLP +aNf +azt +aPG +aPE +aSn +aTV +aVo +aPG +aPG +aPG +aXi +aPG +aPG +azt +bhd +biA +bka +blz +bmW +boO +bqy +bsc +bmV +buk +bvq +bwG +bmV +bzO +bBo +bDf +axm +axm +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +auE +avp +avp +axk +avo +azz +avo +azz +avo +azz +avo +azz +avo +aIr +aJu +auw +aLQ +aNf +aOo +aPH +aQV +aSp +aTW +arV +aPH +awF +bar +aSo +aPI +aPI +aPK +aPK +biB +bjZ +blz +bmX +boR +boR +bmV +bmV +bul +bvq +bwH +bmV +bjY +bBo +aNf +bEM +awg +bEM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aac +aaf +aac +aaa +aaa +aaa +aaa +auF +avm +awj +axj +apn +avo +aAM +aBL +aCI +aDH +aEV +avo +avo +aIr +aJu +auw +aLR +aNg +aOp +aPG +aQW +aSo +aSn +aSo +aXi +aSo +aSn +aSo +bdl +bey +bfS +azt +biC +bjY +blz +bmY +bmV +bqB +bsd +btd +bum +bvq +bwI +btd +bjY +bBn +bDf +axm +bGz +axm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auF +awj +axl +awj +auE +auE +auE +auE +awj +axl +awj +aJv +auw +aLN +aNf +aOq +aPI +aQX +aSn +aTX +aPG +aPG +aPG +aPG +aPG +aPG +bey +bfS +azt +biD +bjY +blA +bmZ +boS +bjY +bjY +bjY +bjY +bjY +bjY +bjY +bjY +bBq +bDi +bEN +axm +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aac +auw +azw +auw +aBM +aBM +aBM +aBM +auw +azw +auw +aaa +axi +aLS +aNf +aOr +aPE +aQY +aSq +aTY +aTY +aXj +aYL +aYL +aYL +bdm +bez +bfS +azt +biE +auw +blB +bna +boT +boT +boT +bte +azt +aBO +aBO +aBO +auw +bBr +aNf +bEO +atM +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +azx +aAL +aAL +aAL +aAL +aAL +aAL +azx +axm +aaa +auw +aLT +aNh +aOs +aPJ +aPJ +aqh +aPJ +aPJ +aqh +aPJ +aPJ +aPJ +aPJ +aPJ +bfT +bhe +biF +aYO +blC +bnb +azt +azt +bnd +btf +azt +azt +azt +azt +aYO +biA +aNf +bEP +bGD +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aah +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auw +auw +azw +auw +aBN +azA +azA +aEW +auw +azw +auw +auw +auw +aLN +aNf +aOt +aPK +aPK +aqi +aTZ +aVq +aqi +aTZ +azt +azt +azt +azt +aNf +azt +biG +bkb +blD +bnc +bnd +bqC +bse +btg +azu +azu +azu +azu +bzQ +bBs +bDj +bEP +atM +aac +aac +aac +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aac +aac +aac +aac +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +ayE +azA +aAN +azt +azt +aDF +aEX +aGe +aGe +aGe +cIw +aGe +aLU +aNd +aOu +auw +auw +auw +aUa +aVr +auw +aYM +azt +azt +azt +azt +aNf +azt +biF +aYO +blC +bnd +boU +bqD +bnd +btf +azt +azt +azt +azt +aYO +bBt +aYP +bEQ +atM +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +ayF +azv +aAK +azv +aCJ +aDI +aEY +azv +azv +azv +cIx +aKw +aLV +aNi +aOv +aaa +aaa +axm +aUb +aVs +auw +aYN +aPK +aPK +bdn +beA +bfU +aPK +biH +auw +blE +bne +boV +bqE +bsf +bth +bun +aYP +bwJ +bye +bzR +bnc +bDk +aAG +atM +aac +aac +aac +aaa +aac +aac +aac +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auw +axm +axm +axm +aBO +axr +axr +axr +axr +axr +aDR +aJx +axr +axr +axr +aOw +axr +auw +auw +auw +auw +auw +aYO +aYO +bbE +bbE +bbE +bfV +aYO +biI +bkc +bkc +bkc +bkc +bqF +bkc +bkc +buo +bvr +bvr +bvr +bvr +bvr +bvr +bvr +bGE +bGE +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axm +auw +axr +aDJ +aDJ +axr +aHm +aIs +aJy +aIs +aLW +aLW +aOx +aPL +auT +ava +avA +avI +awB +azt +azt +bbF +bdo +bdo +bfW +azt +biJ +bkc +blF +bnf +boW +bqG +blH +bkc +bup +bvs +bwK +byf +bzS +bBu +bDl +bER +bEU +bIo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aac +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axr +aDK +aEZ +axr +aHn +aIt +aJz +aJz +aJz +aJz +aJz +aPM +auS +auZ +avz +avH +awA +aYP +aYP +bbG +bbG +bbG +bfX +bhf +bdi +bkd +blG +bng +boX +bqH +bng +bkd +buq +bvr +bwL +byg +bzT +bBv +bDm +bES +bES +bGE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aac +aac +aac +cSe +cSe +cSe +cSe +cVD +cSe +cSe +cSe +cSe +cSe +cVD +cSe +cSe +cSe +cSe +aac +aac +aac +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +axr +aDL +aFa +axr +aHn +aIu +aCb +ayP +ayP +aNj +axr +aPN +auw +avc +avC +avK +awD +azt +azt +bbH +bdp +beB +bfY +bhg +biK +bkc +blH +bnh +boY +bqI +blH +bkc +bur +bvr +bwM +byg +bzT +bBw +bDn +bET +bGF +bES +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aii +aii +aii +aii +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aac +cSe +cKd +cKd +cUx +cUx +cUx +cUx +cUx +cUx +cUx +cUx +cUx +cUx +cUx +cKd +cKd +cSe +aac +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +axr +axr +aDM +aBS +axr +aHn +aIu +aJA +aKx +aLY +ayP +axr +aPN +auw +avb +avB +avJ +awC +azu +azu +bbI +bdq +beC +bfZ +bhh +azt +bkc +blI +blF +boZ +bqI +blF +bkc +bur +bvr +bwN +byh +bzU +bBx +bDo +bEU +bGG +bES +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +aac +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaf +aaa +cKd +cKd +cKd +cKd +cSK +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aac +aac +aac +cSK +cKd +cKd +cKd +cKd +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +ajd +aii +aii +aac +aac +aac +aaa +aaa +aaa +axr +aCK +ayP +aFb +aDR +aHn +aIu +aJB +aKy +aLZ +ayP +aob +aPO +auw +avb +avE +avb +axm +azt +azt +bbH +bdr +beD +bbH +aNf +biL +bkc +blH +bni +boZ +bqI +bsg +bkc +bur +bvr +bwO +byi +bzV +bBy +bDp +bEV +bGH +bGE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aac +cBG +aac +aii +aaa +aaa +aaa +aaa +aaa +aaf +aaa +cKd +cSe +cSL +aoK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +aoN +cSK +cSe +cKd +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aac +aaa +aac +aaa +aac +aaa +alY +aaa +aac +aaa +atl +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +axr +aCL +aDN +aFc +aGf +aHn +aIu +aJC +ayP +ayP +aNk +axr +auL +auU +avb +avD +avL +awB +aYQ +azt +bbE +auw +auw +bbE +aNf +azt +bkc +blJ +bnj +bpa +bqI +blH +bkc +bus +bvt +bvt +byj +bvr +bBz +bDq +bEW +bGI +bGE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aii +aii +aii +aii +aac +aac +aaa +cBH +aaa +aac +aac +aii +aii +ajd +aii +aaf +aaa +cKd +cSe +cSK +aaa +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +aac +cSK +cSe +cKd +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +amU +anO +aoG +aaa +amU +anO +aoG +aaa +amU +anO +aoG +aaa +aii +aac +aac +aac +aaa +aaa +aaa +axr +aCM +ayP +aFd +aGg +aHn +aIu +aJD +ayP +aMa +aNl +aOy +aOy +aOy +aOy +aOy +aOy +aOy +aYR +azt +azt +azt +azt +azt +aNh +azu +bke +blK +blK +bpb +bqJ +bsh +bke +but +bvu +bwP +byk +buv +bvr +bDr +bvr +bGE +bGE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +aaa +aac +aaa +aac +aaa +aaa +cBH +aaa +aaa +aac +aaa +aac +aaa +aaa +aaf +aaa +cKd +cSg +cSM +aaa +cSK +cSK +cVc +aaa +aaa +aaa +aaa +cVc +aaa +aaa +cVc +cSK +cSK +aac +cYh +cYq +cKd +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aam +aaa +aaa +afJ +aac +amU +anP +aoG +aaa +amU +anP +aoG +aaa +amU +anP +aoG +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +axr +axr +axr +axr +aGg +aHo +aIu +axr +axr +axr +axr +aOy +aPQ +aPQ +aPQ +aUj +avM +aOy +aYS +azt +azt +azt +azt +azt +bhi +biM +bkc +blH +blH +bpc +blF +blH +bkc +buu +bga +bwQ +byl +biO +biO +bpt +bEX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aac +cvQ +cvQ +cvQ +cvQ +cvQ +aaa +cBI +aaa +cvQ +cvQ +cvQ +cvQ +cvQ +aac +aaf +aaa +cKd +cSf +cSK +aac +cSK +cSK +aaa +aaa +cNv +aaa +aaa +aac +aaa +aaa +aaa +cSK +cSK +aac +cSK +cSf +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +amU +anP +aoG +aac +amU +anP +aoG +aac +amU +anP +aoG +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +awt +aCX +aGh +aHp +aIv +aJE +aJE +aJE +aNm +aOz +aPR +aRd +aSz +aSA +aSA +aOy +aYT +azt +azt +bds +azt +azt +azt +biN +bkc +bkc +bkc +bkc +bkc +bkc +bkc +bga +bga +bwR +bnx +bzW +bBA +bDs +bEX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +cvR +cwW +cwW +cwW +cwW +cAD +cBJ +cCQ +cDG +cDG +cDG +cDG +cHc +aaa +aaf +aaa +cKd +cSh +cSN +aac +cSK +cSK +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +cSK +cSK +aac +cSg +cSP +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +amU +anP +aoG +aaa +amU +anP +aoG +aaa +amU +anP +aoG +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aaa +awt +ayP +aGi +aHq +aIw +aIw +aIw +aMb +aNn +aOA +aPS +aRe +aSA +aSA +aSA +aOy +aOy +aOy +bbJ +aYO +aYO +bga +bga +bga +bga +biO +bnk +bpd +bqK +bsi +bti +buv +bga +bwR +bnx +bzX +bga +bDt +bDt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +aac +cvS +cvS +cvS +cvS +cvS +aaa +cBJ +aaa +cvS +cvS +cvS +cvS +cvS +aac +aaf +aac +cKd +cKd +cSf +aac +cSK +cSK +cVc +aac +aac +cNs +cWX +cNK +aac +aaa +aaa +cSK +cSK +aac +cSf +cKd +cKd +aac +aaf +aac +cYD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aii +aii +aii +aac +aaa +amU +anP +aoG +aaa +amU +anP +aoG +aaa +amU +anP +aoG +aaa +aac +aaa +auG +axn +axn +axn +axn +axr +axr +axr +aFe +aGj +axr +aIx +aIy +aKz +aKE +aNo +aOy +aPT +aRf +aSB +aSA +aSA +aXl +aYU +bas +bbK +bbK +bbK +bga +bhj +biO +biO +biO +bnl +biO +bqL +bsj +btj +bqX +bqX +axD +bsj +axH +bBB +bDt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +aaa +aaa +aaa +aac +aaa +aaa +aaa +cBJ +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaf +aaa +cOD +cKd +cSO +aac +cSK +cSK +aaa +aaa +aac +arc +aAr +aAs +aac +aaa +aaa +cSK +cSK +aac +cYi +cKd +cOD +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aii +aaa +aac +aaa +aaa +aaa +anQ +aaa +aaa +aaa +anQ +aaa +aaa +aaa +anQ +aaa +aaa +auG +auG +auG +axo +ayG +azB +axn +aBP +ayP +aDO +ayP +aGi +axr +aIy +aJF +aac +aKE +aNo +aOy +aPU +aRg +aSA +aSA +aSA +aSA +aSA +bat +bbL +bdt +bbL +bga +bga +bga +bkf +blL +bnm +bnm +bnm +bsk +btk +bhk +bnm +bwT +byn +axG +bBC +bDu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +aac +cvQ +cvQ +cvQ +cvQ +cvQ +aaa +cBJ +aaa +cvQ +cvQ +cvQ +cvQ +cvQ +aac +aaf +aaa +cKd +cKd +cSf +aac +cSK +cSK +aaa +aaa +aac +cNu +cWY +cNM +aac +aac +cVc +cSK +cSK +cYb +cSf +cKd +cKd +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aii +aac +akd +akZ +akZ +amV +anR +anR +anR +anR +anR +anR +anR +anR +anR +anR +atP +auH +avq +awk +axp +ayH +azC +aAO +aBQ +aCN +aBQ +aBQ +aGk +axr +aIz +aIx +aKz +aKE +aNo +aOy +aPV +aRh +aSA +aSA +aSA +aXm +aSA +bas +bbL +bdu +beE +bgb +bhk +bhk +bkg +blM +bga +bpe +bpe +bpe +bpe +bpe +bpe +bpe +bpe +axI +bBD +bDt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +aaa +cvR +cwW +cwW +cwW +cwW +cAD +cBJ +cCQ +cDG +cDG +cDG +cDG +cHc +aaa +aaf +aaa +cKd +cSg +cSP +aac +cSK +cSK +aaa +cVG +aac +aac +aac +aac +aac +aaa +aaa +cSK +cSK +aac +cSh +cYq +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aii +aaa +aac +aaa +aaa +aaa +anS +aaa +aaa +aaa +anS +aaa +aaa +aaa +anS +aaa +aaa +auG +auG +auG +axq +ayI +azD +aAP +aBR +aCO +aDP +aDP +aGl +axr +axr +awt +axr +aKE +aNo +aOy +aPQ +aPQ +aPQ +aSA +avO +aXn +aYV +aOy +bbM +bdv +beF +bgc +bgc +bgc +bgc +bgc +bgc +bpe +bqM +bpe +bqM +bpe +bqM +bpe +bqM +axI +bBD +bDt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +alY +cvS +cvS +cvS +cvS +cvS +aaa +cBJ +aaa +cvS +cvS +cvS +cvS +cvS +aac +aaf +aaa +cKd +cSf +cSK +aaa +cSK +cSK +aaa +aaa +aaa +aac +aaa +aaa +aaa +cNJ +aaa +cSK +cSK +aac +cSK +cSf +cKd +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aii +ajd +aii +aac +aaa +amU +anT +aoG +aaa +amU +anT +aoG +aaa +amU +anT +aoG +aaa +aac +aaa +auG +axn +axn +axn +axn +aBS +aCP +aDO +ayP +aGm +ayP +ayP +ayP +ayP +aKI +aNo +aOy +aOy +aOy +aOy +aUk +aOy +aOy +aOy +aOy +bbL +bdw +beF +bgc +bhl +biP +bkh +blN +bnn +bpe +bqN +bpe +btl +bpe +bvw +bpe +byo +axI +bBD +bDt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +ajd +aaa +aaa +aaa +aac +aaa +aaa +aaa +cBJ +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaf +aaa +cKd +cSi +cSM +aaa +cSK +cSK +cVc +aaa +aaa +cVc +aaa +aaa +aaa +aaa +cVc +cSK +cSK +aac +cYh +cYr +cKd +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +amU +anT +aoG +aaa +amU +anT +aoG +aaa +amU +anT +aoG +aac +aac +aaa +aaa +axr +ayJ +azE +aAQ +aBT +aCQ +axr +ayP +aGn +axr +aIA +aHr +aKA +aKE +aNp +aJE +aPW +axr +aSC +aUl +avP +aXo +aYW +bau +bbL +bdx +beF +bgc +bhm +bhm +bhm +blO +bno +bpf +bqO +bsl +bsl +buy +bvx +bwU +bwU +axI +bBE +bDu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aii +aac +cvQ +cvQ +cvQ +cvQ +cvQ +aaa +cBJ +aaa +cvQ +cvQ +cvQ +cvQ +cvQ +aac +aaf +aac +cKd +cSf +cSK +aac +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +cSK +aaa +cSK +cSf +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +amU +anT +aoG +aac +amU +anT +aoG +aac +amU +anT +aoG +aaa +aac +aac +auI +axr +ayJ +azF +auI +auI +auI +aDQ +ayP +axr +axr +aDO +axr +axr +aHq +aIw +aMb +aPX +aRi +aSD +aSD +avR +aSD +aSD +bav +bbN +bdy +beG +bgc +bhn +bhm +bki +blP +bnp +bpg +bqP +bsm +btm +buz +btm +bwV +byp +axI +bBE +bDt +aaa +aaa +aaa +aaa +aaa +aaa +bOz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +aaa +aaa +aaa +aaa +afJ +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +cvR +cwW +cwW +cwW +cwW +cAD +cBJ +cCQ +cDG +cDG +cDG +cDG +cHc +aaa +aaf +aaa +cKd +cSh +cSR +aoL +cSK +cSK +cSK +cNt +cNt +cNt +cNt +cNt +cNt +cNt +cSK +cSK +cSK +arU +cYj +cSP +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aii +aac +amU +anT +aoG +aaa +amU +anT +aoG +aaa +amU +anT +aoG +aac +aac +aaa +auI +auI +auI +azG +auI +aBU +aCR +auI +ayP +ayP +ayP +aGm +axr +aKB +ayP +aNq +aKE +aPY +aRj +aSE +aUl +avQ +aUl +aUl +bau +bbL +bbL +beH +bgc +bho +bhm +bkj +blQ +bnq +bpe +bpe +bpe +bpe +bpe +bpe +bpe +bpe +axI +bBE +bga +aaa +aaa +bIp +bKb +bLC +bIp +bLC +bPG +bIp +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +afJ +aae +aae +aac +aaa +aaa +aaa +aad +aad +aaa +aaa +aaa +aaa +aaa +aii +aac +cvS +cvS +cvS +cvS +cvS +aaa +cBJ +aaa +cvS +cvS +cvS +cvS +cvS +aac +aaf +aaa +cKd +cKd +cSQ +cKd +cNt +cNt +cNt +cNt +cWj +cWj +arT +cWj +cWj +cNt +cNt +cNt +cNt +cKd +cSQ +cKd +cKd +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +amU +anU +aoG +aaa +amU +anU +aoG +aaa +amU +anU +aoG +aaa +aii +auI +auI +axs +ayK +azH +avw +avw +ayM +awr +ayP +axr +aHr +aIB +axr +aKC +aLZ +ayP +aKE +aMh +aRj +aSF +aUl +avS +aUl +aYX +aRj +bbL +bbL +beI +bgc +bhp +bhm +bkk +blR +bnr +bph +bqQ +bqR +btn +bgc +bvy +bga +byq +axK +bBE +bga +aaa +aaa +bEY +bKc +bLD +bEY +bLD +bPH +bEY +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aii +aaa +aaa +aac +aaa +aac +aaa +aaa +cBJ +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaa +cKd +cSj +cSS +cKd +cTY +cTY +cTY +cNt +cWj +cWG +cXd +cXt +cWj +cNt +cTY +cTY +cTY +cKd +cYk +cYs +cKd +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aii +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +auI +auI +awl +axt +awq +azI +avw +aBV +avw +awr +ayP +axr +axr +axr +axr +axr +aMc +axr +aKE +aMh +aRj +aSG +aUl +aUl +aUl +aYY +aRj +bbL +bbL +beF +bgd +bhm +bhm +bkl +blS +bnr +bpi +bqR +bqR +bto +bgc +bvz +bga +byq +axJ +bBE +bqZ +bEY +bEY +bEY +bKb +bLC +bEY +bLC +bPG +bEY +aac +aac +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +cBK +aaf +aaf +aaf +aaf +cKd +cKd +cKd +cKd +cKd +cKd +cKd +cSQ +cKd +cTX +cTX +cTX +cKd +aoO +cWF +cXc +cWj +cXA +cKd +cXJ +cTX +cTX +cKd +cSQ +cKd +cKd +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aii +aii +aii +aii +aii +ajd +aii +aii +aii +aii +aii +aii +aii +aii +auI +avr +awm +axu +awq +azJ +aAR +avw +aCS +awr +ayP +axr +aGm +aIC +axr +aIC +ayP +aNr +aKE +aMh +aRj +aSH +aUl +aUl +aXp +aYZ +aRj +bbL +bbL +beJ +bge +bhq +bhq +bkm +blT +bns +bpj +bqS +bqR +btn +bgc +bvy +bga +biO +axM +bBE +bqZ +bEZ +bGJ +bIq +bKd +bLE +bNc +bGJ +bPI +bEY +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aac +aaa +aaa +aac +aaa +aaa +czD +cBL +czD +aaa +aac +aaf +cKd +cKJ +cKZ +cLV +cMP +cKd +cSl +cSU +cLV +cUa +cUa +cVf +cKd +aqB +cWI +cXf +cXu +cXB +cKd +cXL +cXQ +cUa +cLV +cSU +cYu +cKd +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awr +avs +avw +axu +awq +azK +avw +avw +avw +awr +ayP +ayP +aHs +ayP +axr +aFd +ayP +aNr +aKE +aMh +aRj +aSI +aUl +aUl +aUl +aZa +aRj +bbL +bbL +beF +bgc +bhr +biQ +bkn +blU +bnr +bpk +bgc +bgc +bgc +bgc +bgc +bga +byr +axL +bBF +bAh +bFa +bGK +bGK +bKe +bBL +bBL +bOA +bPJ +bqZ +aac +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bWo +bWo +cfn +bWo +bWo +cpb +bWo +cfn +bWo +aaa +aaa +aac +aaa +aaa +aac +aaa +aaa +czD +cBM +czD +aaa +aaa +aaf +cKd +cKG +cKY +cLU +asF +cOE +cSk +cST +cTx +cTZ +cUA +cUA +cVH +cWh +cWH +cXe +cWe +cWE +cVH +cXK +cXK +cXX +cLc +cSU +cYt +cKd +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awr +avt +avw +axv +awq +azK +avw +aBW +aBW +auI +axr +axr +ayP +ayP +axr +aKD +aMd +aIw +aOB +aMh +aRj +aSJ +aUl +aws +aUl +aZb +bau +bbL +bbL +beF +bgc +bhs +bhm +bko +blV +bnr +bpl +bqT +bqT +bqT +bqT +bgc +bwW +bys +axO +bBG +bDv +bFb +bGL +bBL +bKf +bBL +bBL +bBL +bPI +bEY +aac +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bWo +bWo +ckO +clU +cmZ +cnV +cpc +cpQ +cqM +bWo +aaa +bWo +bWo +cfn +cfn +bWo +aac +czD +czD +cBL +czD +czD +aaa +aaf +cKd +cKd +cLb +cLX +cNd +cPA +cSn +cSU +cRT +cLa +cUC +cVh +cKd +cWj +cWg +cXg +cWg +cWj +cKd +cXN +cLa +cXZ +cYe +cYm +cYw +cYB +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +awr +amS +awn +axw +awq +azK +avw +aBX +aCT +auI +aFf +axr +ayP +ayP +aJG +aKE +aMe +aNs +aNs +aPZ +aRk +aSK +aSK +awa +aSK +aZc +baw +bbO +bbL +beF +bgc +bht +bhm +bhm +blW +bnr +bpl +bqU +bqU +bqU +bqU +bgc +bnx +bpq +axN +bqZ +bqZ +bFc +bGM +bBN +bKg +bBN +bBN +bDw +bPI +bEY +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bWo +cjx +cbu +cbu +cna +cnW +cpc +cpc +cqN +bWo +bWo +bWo +cbu +cvT +cwX +cfn +aac +czE +cAE +cBN +cCR +czE +aaa +aaf +cKd +cKL +cLa +cLW +cKY +cOO +cSm +cSV +cTy +cUb +cUB +cVg +cOD +cKd +cWJ +cKd +cWJ +cKd +cOD +cXM +cXR +cXY +cYd +cYl +asI +cYA +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auI +amT +awo +axx +ayL +apQ +aAS +aBY +asc +auI +axr +axr +ayP +aID +aID +aKE +aMf +axr +aCX +aNr +aRj +aSL +aUl +awv +aXq +aZd +bax +bbP +bbP +beK +bgc +bhu +bhm +bhm +blX +bnt +bpm +bqV +bqV +bqV +buA +bvA +bwX +byt +axN +bBH +bBL +bFd +bGN +bIr +bKh +bIr +bBL +bFd +bPI +bEY +aaa +aaa +aac +aaf +aac +arQ +asy +arR +asy +arR +asy +ayR +aaa +cfn +cjy +cbu +cbu +cnb +cnX +cpc +cpc +cbu +bWo +csH +cjy +cbu +cbu +cwY +bWo +bWo +czE +cAF +cBO +cCS +czE +aaa +aaf +cKd +cKP +cLa +cLa +cNf +cPA +cSp +cSX +cRT +cLa +cSU +cLa +cVJ +cWk +cWK +cXh +cXv +cXC +cXG +cLa +cSX +cLc +cLc +cYl +cYy +cYC +aaa +aaf +aac +cYD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awr +avw +avw +avw +avw +apO +avw +aBZ +aBZ +auI +aFg +auI +aDR +axr +axr +aKE +aMg +axr +axr +axr +aRj +aRj +aRj +aRj +aRj +aRj +aRj +bbQ +bbL +beF +bgc +bhv +bhv +bkp +bhv +bnu +bpn +bqW +bqW +bqW +buB +bvB +bwY +byu +axN +bBI +bBL +bBL +bGN +bIr +bBL +bIr +bBL +bBL +bPI +bRn +aaa +aaa +aac +aaf +aac +bYy +bZS +auK +auK +cbn +awu +bYy +aaa +bWo +cjz +cbu +cbu +cnc +cnY +cpd +cpR +cqO +cne +csI +cbu +cbu +bWo +bWo +bWo +czd +czE +cAG +cBP +cCT +czE +aaa +aaf +cKd +cKM +cLc +cLY +cNe +cRN +cSo +cSW +cTz +cUc +cUD +cVi +cVI +cVi +cVi +cVi +cVi +cVi +cXF +cVi +cXS +cKY +cKY +cYn +cYx +cKd +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awr +avw +awp +avw +ayM +apS +aAT +aCa +aCV +aCV +aAT +aGo +aHt +aHt +aHt +aKF +aMh +aNt +aOC +aQa +aAv +aSM +aUm +awx +aXr +aZe +bay +bbK +bbK +beL +bgf +bgf +bgf +bgf +bgf +bgc +bgc +bgc +bgc +bgc +bgc +bgc +bnx +byu +axN +bBJ +bBL +bBL +bGN +bIr +bBL +bIr +bBL +bOA +bPI +bRn +bRn +bRp +bRn +bRn +bWY +arR +bZT +cbn +auK +cbn +cfk +cgu +aaa +cfn +cjA +ckP +clV +cnd +cnZ +cbu +cpS +cqP +bWo +cbu +cbu +cbu +bWo +cwZ +bWo +bWo +czE +cAH +cBQ +czE +czE +bWo +cFr +cKd +cKQ +cLa +cLZ +cNg +cKd +cSr +cSZ +cTy +cUb +cUE +cVj +cVK +cWl +cWM +cWM +cXw +cXD +cXH +cXO +cXT +cWM +cWM +cYo +cYz +cKd +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awr +avx +awq +avw +ayN +apR +avw +azN +aAT +aCV +aFh +aGo +aHt +aIE +aHt +aKG +aKF +aNu +aOD +ayP +aAu +aSM +aUn +aww +aXs +aZf +baz +bbR +bbR +beM +bgg +bhw +biR +bkq +bgf +bnv +bpo +bqX +bqX +bqX +bqX +bqX +bwZ +byu +axN +bBK +bBL +bBL +bGN +bIr +bBL +bIr +bBL +bBL +bPK +bRn +bSp +bTH +bUQ +bRn +aaa +bYy +bZS +auK +auK +cbn +cfl +bYy +aaa +bWo +aAi +bWo +clW +bWo +bWo +bWo +cne +bWo +bWo +csJ +cmb +cbu +bWo +cbu +cye +coa +bWo +cAI +cAK +cbu +cDH +bWo +cFs +cKd +cKd +cLj +cKd +cKd +cKd +cSq +cSY +cTA +cUd +cUd +cKd +cKd +cKd +cWL +cWL +cKd +cKd +cKd +cKd +cKd +cKd +cYf +cKd +cKd +cKd +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aac +aac +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +auI +auI +awr +awr +auI +apU +azO +auI +auI +auI +auI +auI +axr +axr +axr +aKE +aMh +aNu +aOE +ayP +aRn +aSM +aUo +awy +aXt +aZg +baA +bbS +bbL +beN +bgh +bhx +bhx +bkr +bgf +bnw +bpp +bqY +bqY +bqY +bqY +bqY +bqY +byv +axN +bBL +bBL +bBL +bGN +bBL +bBL +bBL +bBL +bBL +bPL +bRn +bSq +bTI +bUR +bRp +aaa +arS +asy +arR +ccO +arR +asy +ayT +aaa +bWo +cjC +ckP +clX +bWo +coa +cbu +cpT +cbu +bWo +bWo +bWo +cbu +cne +cbu +cyf +cze +bWo +cbu +cBR +cbu +cfm +bWo +cFr +bWo +cKS +cbu +cKI +cKd +cRP +cSt +cTb +cTz +cUf +cUG +cKd +cVM +cWj +cWj +cWj +cXx +cXx +cXE +cKd +aaa +cKd +cYg +cYp +cKd +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aac +aaa +aac +aac +aac +aac +aaa +aaa +aaa +aac +ald +ald +aes +ald +aes +ald +ald +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +axr +aQa +ayP +aor +apo +apT +aBQ +amZ +and +axr +afg +aBQ +aBQ +auk +aGq +aKE +aMh +aNx +aor +ayP +ayP +aSM +aSM +aSM +aSM +aSM +aSM +bbT +bbL +beN +bgg +bhy +bhx +bks +bgf +bnx +bpq +bqZ +bqZ +bqZ +bqZ +bqZ +bqZ +bqZ +axN +bBM +bBL +bBL +bGN +bBL +bBL +bBL +bBL +bBL +bBL +bRo +bSr +bTJ +bUS +bRp +aaa +aaa +bZU +bZU +ccP +bZU +bZU +aaa +aaa +bWo +cjD +bWo +clY +bWo +cbu +cbu +cbu +cqQ +cbu +cbu +bWo +cbu +bWo +cxa +cyg +czf +czF +cAJ +cBS +cbu +cbu +cEo +cbu +bWo +cKR +cLk +cMa +cKd +aoJ +cSs +cTa +cTB +cUe +cUF +cKd +cVL +cWm +cWj +cXi +cXx +cXE +cXI +cKd +aaa +cKd +cYf +cKd +cKd +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +ald +adW +aeu +afj +afF +agp +ald +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +axr +ayP +ayP +axz +ayP +azQ +aAU +ayP +ane +agb +atf +aGq +axr +ane +aBQ +ank +anV +aoa +aOG +aOG +aOG +aOG +aOG +aVQ +aOG +aOG +baB +bbU +bdz +beO +bgi +bgi +bgi +bgi +bgi +bny +bpr +bra +bsn +btp +btp +bvC +bxa +btp +axQ +bBN +bDw +bBL +bGN +bBL +bKi +bLF +bLF +bLF +bLF +bRp +bSs +bTK +bUT +bRp +aac +aac +bZU +cbo +bZW +cdY +bZU +aaa +aaa +bWo +cbu +cbu +clZ +ave +cjy +cjy +cbu +cqQ +cbu +csK +bWo +cbu +bWo +cjG +cbu +cne +cbu +cJo +cJr +cJv +cJv +cJv +cJv +cKe +cJv +cLl +cJv +cNr +cRR +cSv +cTd +cTC +cKd +cKd +cKd +cVN +cWo +cWN +cXj +cXx +cXE +cXE +cKd +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aac +aac +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +ald +adz +aet +afi +afE +ago +ald +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +axr +ayP +ayP +axA +ayQ +azR +aAV +aCc +aCX +axr +aPN +aGr +aHu +aHu +aJI +aKJ +anp +aNx +ayP +ayP +ayP +aSO +aSO +aSO +aSO +aSO +aSO +bbV +bdA +beP +bgj +bhz +bhz +bhz +bhz +bnz +bps +bqZ +bso +btq +buC +bvD +bso +byw +axP +bBO +bDx +bFe +bGN +bBL +bqZ +bLG +bNd +bOB +bPM +bRp +bSt +bTL +bUU +bRp +aaa +aaa +bZU +cbp +bZW +cdZ +bZU +aaa +aaa +bWo +cjE +ckQ +bWo +bWo +cbu +cbu +cbu +cbu +cbu +cfm +bWo +cfm +bWo +cxb +cmb +bWo +cbu +cJn +cbu +cbu +bWo +bWo +cne +bWo +bWo +bWo +bWo +cKd +cRQ +cSu +cTc +aaa +aaa +aaa +cKd +cKd +cKd +cKd +cKd +cKd +cKd +cKd +cKd +aaa +aac +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aaf +aac +aac +aaa +aaa +aai +aai +aai +abj +abj +aai +aqo +aqo +aqo +aqo +ald +adX +aex +afk +afG +agq +ald +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aAW +amW +axr +awt +axr +axr +awt +axr +axr +axr +atq +aGs +aHv +aIF +aJJ +aKE +anX +aNx +ayP +ayP +ayP +aSO +aUp +aVR +aXu +aZh +baC +bbL +bbT +beQ +bgk +bgk +bgk +bgk +bgk +bnA +bpt +bqZ +bso +btq +bso +bvE +bso +byx +axN +bqZ +bDy +bFf +bGO +bIs +bqZ +bqZ +bqZ +bqZ +bqZ +bRn +bSu +bTM +bUV +bRn +aaa +bRq +bRq +bRq +ccQ +cea +bRq +aac +aac +bWo +cjF +aIi +cma +bWo +cob +bWo +bWo +bWo +bWo +bWo +bWo +bWo +bWo +bWo +bWo +bWo +bWo +cJp +bWo +bWo +bWo +cEo +cbu +cfn +aaa +aaa +aaa +cNt +cRT +cSx +cTc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aai +aaM +aaW +abi +abt +aai +aqk +aqD +aoQ +apD +akn +adV +aew +ald +ald +ald +ald +aAW +aAW +aAW +aAW +aAW +aCY +alg +aCY +aCY +aAW +aDU +aAW +aaa +aAW +apV +aqK +arv +aCY +aDS +aqO +aGt +aHw +aIG +aJK +aKE +anW +aNx +ayP +ayP +ayP +aSO +aUq +aVS +aXv +aZi +baD +bbR +bdB +beR +bbL +bgk +biS +bkt +bgk +bnB +bpu +brb +bsp +bsp +buD +bvF +bxb +byy +axN +bBP +bDz +bFg +bGP +bIt +bKj +bLH +bNe +bOC +bPN +bRn +bRp +bTN +bUW +bRn +bRq +bRq +bZV +cbq +cbq +ceb +bRq +aIy +aIy +bWo +cbu +cbu +cbu +bWo +cbu +bWo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfn +cJn +cfn +aaa +cfn +ccT +cvT +cfn +aaa +aaa +aaa +cNt +cRS +cSw +cTc +aaa +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +aac +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aac +aaf +aaa +aaa +aaa +aaa +aai +aaO +aaX +abk +abv +adp +abJ +aoR +aoR +arb +aoc +adZ +aez +afm +afK +agt +aha +ahO +aix +aiM +aRr +aRr +aRr +aRr +aRr +ame +als +amY +aCY +aaa +aCY +apX +aqM +aDU +aAW +aDT +aqO +aGs +axr +axr +aGt +aKK +anX +aNx +aOH +aQb +ayP +aSO +aUr +aVT +aXw +aZj +baE +bbW +bdC +beS +bbL +bhA +biT +bku +bgk +bnC +bpv +bqZ +bsq +btq +buE +bvG +bso +byz +axN +bBQ +bDA +bAm +bGQ +bIu +bts +bts +bNf +bts +bts +bRq +bSv +bTO +bUX +bWl +bWZ +bYz +bZW +bZW +bZW +bZW +bZU +aac +aac +cfn +cjG +cbu +cbu +bWo +cbu +bWo +aaa +cqR +cqR +cqR +cqR +cqR +cqR +cqR +cqR +aaa +cfn +cJn +cfn +aac +cDI +cDI +cDI +cDI +cDI +cDI +cDI +cIY +cRV +cSz +cTf +cKK +cKK +cMf +cMr +cMG +cMZ +cNo +cNo +cNo +cNo +cNX +cLJ +aac +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aai +aaN +aaX +abk +abu +adp +abI +apE +apE +acY +adx +adY +aey +afl +afH +ags +agZ +ahN +agZ +agZ +ajC +agZ +agZ +agZ +agZ +amd +amo +amX +aCY +aaa +aCY +apW +aqL +apZ +asd +aIK +ats +aGu +aHx +aIH +aJL +aKL +anY +aNy +aAW +aAW +aAW +aSO +aSO +aSO +aSO +aSO +aSO +bbX +bdC +beT +bgl +bgk +biT +bkv +bgk +bga +bpw +bqZ +bqZ +bqZ +bqZ +bqZ +bqZ +byA +axR +bsv +bDB +bFh +bGR +bIv +bKk +bKk +bDD +bKk +bPO +bRr +bSw +apx +bUY +bSw +apy +bYA +bSw +apz +ccR +cec +bZU +aaa +aaa +cfn +cjH +cbu +cbu +cne +cbu +bWo +aaa +cqR +crR +csL +ctN +cqR +cvU +cxc +cqR +aaa +cfn +cJn +cfn +aaa +cDI +cEp +cFt +cGn +cHd +cHA +cMi +cNz +cRU +cSy +cTe +cLm +cLJ +cMg +cMg +cMH +cNa +cNp +cNp +cNp +cNp +cNY +cLJ +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aai +aak +aak +aak +aai +aaQ +aaZ +abm +abx +adp +abK +apF +acG +aoR +aoc +aea +aeB +aqo +aqo +aqo +aqo +aqo +aqo +aqo +aqo +aqo +akL +aDU +akL +aAW +amq +amX +aAW +aaa +aAW +apY +aqO +aDU +aAW +aDV +aqO +aAW +aHy +aII +aJM +aKM +anZ +aNz +aOI +aOI +aOI +aOI +aUs +aVU +aXx +aOI +baF +bbY +bdD +beU +bgm +bgk +biU +bkw +bgk +bnD +bpw +brc +bsr +bsr +bsr +bsr +bxc +byB +bAj +brg +bDC +bFi +bGS +bIw +bKl +bKl +bNg +bOD +bPP +bRs +bSx +bTQ +bUZ +bSx +bXb +bYB +bZX +bZW +bZW +ced +bZU +aac +aac +cfn +cbu +cbu +cmb +bWo +cbu +bWo +aaa +cqR +crS +csM +ctO +cqR +cvV +cxd +cqR +aaa +cfn +cJn +cfn +aaa +cDI +cEq +cFu +cGo +cHe +cHB +cIj +cJa +cRX +cSA +cTg +cLn +cLK +cMg +cMg +cMI +cNb +cNp +cNp +cNp +cNS +cNZ +cLJ +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aai +aaj +aar +aay +aaH +aaP +aaY +abl +abw +adp +aoR +aci +acF +aoR +aoc +adZ +aeA +aqo +afL +agu +ahb +aoc +aiy +agu +ajD +aqo +akK +alh +alB +amf +amq +amX +aAW +aCY +aAW +aAW +aqN +aAW +aAW +aAW +aqO +aAW +aAW +aAW +aJN +aKL +aMn +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +bbZ +bbT +beV +bgn +bgq +bgq +bgq +bgq +bgq +bpx +brd +bss +btr +buF +brg +brg +brg +bAk +brg +byE +bAp +bGT +bIx +bKm +bLI +byE +bts +bPQ +bRq +bSy +bTR +bUX +bWm +bXc +bUX +bZW +bZW +bZW +cee +bRq +aIy +aIy +bWo +cbu +ckR +cmc +bWo +cbu +bWo +bWo +cqR +crT +csN +ctP +cqR +cvW +cxe +cqR +aaa +cfn +cJn +cfn +aac +cDI +cEr +cFv +cGp +cHf +cHC +cMj +cNA +cRW +cSy +cKN +cLo +cLL +cMg +cMg +cMH +cNa +cNp +cNp +cNp +cNp +cOa +cLJ +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aai +aan +aat +aaA +aaJ +aaS +abb +abo +abz +adp +aoR +apG +apG +acZ +aod +aec +aeC +aqo +afN +agA +ahl +aoc +afN +aiN +ajE +aqo +akN +alj +alD +amh +amq +amX +aDU +aDU +aAW +aqa +aqQ +arx +aAW +aDW +aqO +aAW +aHz +aIJ +aDU +aKL +aMn +aNA +aOJ +aON +aON +aSP +aUt +aVV +aXy +aVX +baG +bca +bbT +beV +bbL +bgq +biV +bkx +blY +bnE +bpx +brd +bst +bts +bts +aoe +bxd +byC +bAl +bBR +bDD +bFj +bxg +bIy +bxg +bxg +bNh +bxg +bPR +bPR +bPS +bTS +bVa +bPR +bXc +bYC +bZY +bZY +bZY +cef +bRq +aac +aac +bWo +cir +bWo +bWo +bWo +coc +cbu +cbu +cqS +crU +csO +ctQ +cqR +cvX +cxf +cqR +aaa +cfn +cJn +cfn +aaa +cDI +cEq +cFw +cGq +cHg +cHD +cIl +cJc +cJQ +cSB +cKO +cKO +cLM +cMh +cMs +cMJ +cNc +cNq +cNq +cNI +cNq +cOb +cLJ +aac +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aai +aal +aas +aaz +aaI +aaR +aba +abn +aby +adp +aoR +aoR +aoR +aoR +ady +aeb +aeC +aqo +afM +agz +ahc +aoc +afM +agz +ahc +aqo +akM +ali +alC +amg +amr +ana +aIK +aIK +app +apZ +aqP +arw +aAW +asC +att +aDU +aDU +aDU +aDU +aKN +aMn +aNA +aOK +aQc +aRo +aSP +aUu +aVW +aXz +aZk +baH +bcb +bdB +beW +bgo +bhB +biW +bky +bkA +bnF +bpx +brd +bsu +bts +bts +bts +bts +bts +bAm +bts +byE +bxg +bGU +bIz +bDF +bDF +byE +bts +bPS +bRt +bSz +bTT +bVb +bPR +bXd +bYD +bRq +bRq +bRq +bRq +bRq +cfn +cfn +bWo +cbu +cfn +aaa +cfn +cod +bWo +bWo +cqR +crV +csP +ctR +cuZ +cvY +cxg +cqR +aaa +cfn +cJn +cfn +aaa +cDI +cEs +cFx +cGn +cHh +cHE +cIm +cNC +cDI +cKs +cDd +cLp +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +cLJ +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aai +aap +aai +aap +aai +adr +adp +abq +adp +adp +aoc +aoc +aoc +aoc +aoc +aee +aeE +aqo +afP +agC +aoW +aqo +afP +aiO +aoW +aqo +akO +alk +alE +aAW +amq +anc +anE +aov +aAW +aqc +aqR +ary +aAW +asD +aDU +aAW +aAW +aAW +aAW +aKL +aMn +aNA +auq +auM +auW +avu +avF +avF +avF +avF +awH +awJ +awL +awM +bbW +awN +awO +awQ +awR +awT +bpx +awV +brg +axC +bts +bts +axE +axF +axS +axV +ayY +aza +bts +azd +bts +bts +azg +bts +bPS +azL +azP +azM +azY +bPR +bXe +bYE +bWo +cbs +ccS +bWo +cfm +cbu +cbu +cbu +cbu +cfn +aac +cfn +cod +bWo +aaa +cqR +cqR +cqR +cqR +cqR +cqR +cqR +cqR +aaa +cfn +cJn +cfn +aac +cDI +cDI +cDI +cDI +cDI +cHF +cIn +cDI +cDI +cKt +cDd +cLq +cKv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aao +aau +aaB +aaK +aaT +abc +abp +abA +abC +abL +acj +acH +ada +adA +aed +aeD +afn +afO +agB +ahm +ahP +aiz +agB +ajF +aqo +aqo +aqo +aqo +aqo +amq +anb +aDc +aDc +aDc +aqb +aDc +aDc +aAW +asD +aIJ +aAW +aHA +aDU +aAW +aKP +aMn +aNA +aOM +aQe +aRq +aSR +aUu +aVX +aVX +aVX +baJ +bca +bbT +beY +bbL +bgq +biY +bkA +bkA +bnH +bpx +brd +brg +btu +bts +bvI +bts +byE +bAm +bts +bts +brg +bGV +bts +bKn +bts +bts +bts +bPS +bRv +azM +azM +bVd +bPR +bXf +bYE +bZZ +cbt +cbu +bWo +bWo +cfn +cfn +cbu +cfn +bWo +aaa +cfn +cod +bWo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfn +cJn +cfn +aaa +aac +aaa +aaa +aac +cDI +cHG +cIo +cJe +cDI +cKu +cDd +cLr +cKv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaq +aav +aaD +aaD +aaU +abe +abr +abB +abD +abM +acl +acJ +adc +adB +aef +aeF +afo +afQ +agD +aho +ahQ +aiA +aiQ +ajH +ako +akQ +alm +alG +aqo +amq +ang +aDc +aox +aFs +aEg +aEg +aHE +aAW +asJ +apX +aAW +aHB +aDU +aJO +aKN +aMn +aNA +aON +aON +aON +aSP +aUw +aVY +aXA +aXA +aNA +bcd +bdF +beZ +bgq +bgq +biZ +bkB +bkA +bnH +bpz +brf +brg +btv +buH +bvJ +bxf +byF +bAo +bts +bDF +bFl +bGW +bts +bts +bts +bNj +bOE +bPR +bRw +bSC +azT +bVe +bPR +bXg +bYF +bWo +cbu +ccT +bWo +aaa +aac +cfn +cbu +cfn +aaa +aaa +cnf +coe +ceg +ceg +ceg +ceg +ceg +ceg +ceg +ceg +ceg +ceg +ceg +czG +cJp +bWo +bWo +bWo +bWo +bWo +bWo +cDI +cHH +cIp +cJf +cDI +cDd +cDd +cLs +cwu +cUI +cVk +cUI +cVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +auQ +auQ +aaC +aaC +auQ +aaC +aaC +auQ +auQ +auQ +ack +acI +adb +abS +abS +abS +abS +abS +anv +ahn +ahn +anv +aiP +ajG +akm +akP +all +alF +aqo +amq +anf +aDc +aow +aFt +aEg +aqS +arz +aAW +asD +aIJ +aAW +aHC +aDU +aAW +aKQ +aMp +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aNA +aXH +bdG +bfa +bgq +bgq +bja +bja +bja +bja +bgq +brg +brg +brg +brg +bvK +bxg +byG +bAp +brg +brg +brg +bGX +bGX +bKo +bKo +bGX +bGX +bPR +bPR +bPR +bPR +bPR +bPR +bXh +bYG +bWo +bWo +bWo +bWo +cfn +cfn +cfn +cir +cfn +cfn +cfn +cng +cof +cpe +cpe +cpe +cpe +cpe +ctS +cpe +cpe +cpe +cpe +cpe +czH +cJq +cBT +cCU +bWo +cmb +cze +cwu +cwu +cHF +cIq +cDI +cwu +cKv +cTh +cKv +cwu +cUH +cUH +cUH +cUH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +arQ +asy +arR +akq +arR +arR +arR +asy +ayR +auQ +acn +acK +ade +abS +aeh +aeG +afp +abS +agF +ahp +ahS +aiC +aiR +ajI +aoc +aoc +aoc +aoc +aqo +amq +ani +aDc +aoy +aEg +aEg +aEg +arB +aAW +asD +aAW +aAW +aAW +aAW +aAW +aKR +aMq +aNC +aNC +aQf +aDU +aDU +aDU +aDU +aDU +aDU +aAW +bce +bdH +bfb +aZs +bhD +aZs +aZs +aZs +aZs +aZs +bcj +aZs +btw +buI +bvL +bxh +byH +bAq +bxh +bxh +bFm +bxh +bIB +bFC +bFC +bNk +bNk +bPU +bNk +bNk +bNk +bVf +bWn +bXi +bYH +caa +caa +caa +caa +cfo +caa +caa +caa +cfo +caa +caa +cnh +cog +cpf +cpf +cpf +cpf +cpf +ctT +cpf +cpf +cpf +cpf +cpf +cng +com +cBU +bWo +bWo +cbu +cbu +cGr +cHi +cHI +cIr +cJg +cJR +cDd +cDd +cLt +cLN +cUH +cUH +cUH +cUH +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +arR +ahB +atn +bYy +avy +avy +avy +axB +ayS +abN +acm +asH +add +abS +aeg +acx +acx +afR +agE +agE +ahR +aiB +adZ +ajH +akr +akQ +alm +alH +aqo +amq +anh +aDc +aEd +aEg +aqd +aqT +arA +aAW +asK +aIK +aGw +atX +aIK +aJP +aKS +aMr +aND +aOO +aQg +aRr +aSS +aUx +aVZ +aXB +aRr +baK +bcf +bdI +bfc +bgr +aZs +aZs +aZs +aZs +aZs +aZs +bcj +aZs +aZs +aZs +aZs +aZs +byI +bAr +bcf +bDG +bFn +bGY +bIC +bGY +bLJ +bLJ +bLJ +bLJ +bLJ +bLJ +azU +bVg +bWo +bWo +bYI +cab +cab +cab +ceg +cab +cab +cab +cab +cab +cab +ceg +cni +coh +cpf +cpU +cpU +crW +crW +ctU +cva +crW +cpU +cpU +cpf +czI +cAN +cBV +cCV +cDJ +cEt +cEt +cGs +cGs +cHJ +cIs +cJh +cDd +cDd +cDd +cLu +cLO +cUH +cUH +cUH +cUH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +arR +ahA +ajA +bYy +auK +auK +auK +axB +ayS +abN +acp +acL +adf +adC +aej +aeI +acx +afT +agE +agE +ahU +ahX +aea +ajK +akm +akP +aln +alI +aqo +amq +amX +aDc +aoH +aEg +aqe +aqU +arD +ase +avd +avd +atE +avd +avd +aJQ +aKT +aKT +aKT +aOP +aQh +aKT +aKT +aKT +aKV +aKV +aKV +aKV +bcg +bdJ +aZs +bci +bci +bci +bci +bci +aZs +bpA +brh +bpA +bpA +bpA +bpA +bpA +byJ +bAs +bpA +bDH +bcj +bGZ +bID +bKp +aZs +aZs +bpA +baM +bci +aZs +aZs +bDH +aZw +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +bWo +cnj +coh +cpf +cpV +cqT +crX +crW +ctV +crW +cvZ +cxh +cyh +cpf +czJ +cAO +cBW +cCW +cDK +cDK +cDK +cGt +cKT +cHK +cIt +cJi +cJi +cKw +cDM +cLv +cLP +cUK +cUK +cUK +cUK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +arR +ahD +atn +aaL +auK +abf +auK +axB +ayS +abN +aco +asH +add +abS +aei +aeH +afq +afS +agG +ahq +ahT +aiD +aiT +ajJ +aoc +aoc +aoc +aoc +aqo +ams +amX +aDc +aDc +aEk +aGA +aDc +arC +avd +asM +aya +aya +atY +avd +aJQ +aKT +aMs +aNE +aOQ +aQi +aRs +aST +aKT +aWa +aXC +aZl +aKV +bch +aZs +bfd +aZo +aZo +aZo +aZo +aZu +aZs +bpB +bri +bri +btx +buJ +buJ +bri +bri +bri +bAv +bDI +bAv +bAv +bIE +bKq +bKq +bKq +bKq +bPV +aZw +aZs +aZs +bDH +aZw +aaa +bYJ +cac +cac +cac +ceh +aaa +aac +aaa +aaa +aac +aac +bWo +bYE +coh +cpf +cpW +cqU +crY +csQ +ctW +cpU +cwa +cxi +cyi +cpf +czK +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cHL +cIu +cDd +cDd +cKx +cDd +cLw +cSC +cUJ +cUJ +cUJ +cUJ +cWO +cXk +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +arS +ahC +akl +aks +asy +asy +alp +asy +ayT +auQ +acq +asH +add +abS +abU +aeJ +acx +afV +agH +agE +ahW +ahX +adZ +ajH +aku +akQ +alm +alK +aqo +amu +amX +aDc +aoP +aEg +aqj +aEg +aFv +avd +asO +aya +atG +aua +avd +aJQ +aKT +aMt +aNE +aOQ +aQj +aRt +aSU +aSZ +aWb +aWb +aWb +aKV +bci +aZs +bfd +aZo +aaa +aaa +aZo +aZu +aZs +bpC +bri +bsw +bty +buK +bvM +bsA +byK +bAt +byQ +bDJ +bFo +bAv +bIF +bKr +bKr +bKr +bOF +bKr +aZw +aZs +aZs +bDH +aZw +aac +bYK +cad +cbv +ccU +bYK +aac +aac +aaa +aaa +cjI +ckS +ceg +cnk +coh +cpf +cpX +cqV +cqV +csR +ctX +cpU +cpU +cpU +cyj +cpf +czK +cwu +cJt +cJt +cJL +cJL +cJY +cJY +cwu +cHM +cIu +cDd +cHp +cKx +cDd +cLu +cSC +cUM +cVm +cVm +cWp +cVn +cSC +aac +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +auQ +auQ +aaE +auQ +auQ +auQ +aaE +auQ +auQ +auQ +ack +acM +adg +abS +aek +aeJ +acx +afU +agH +agE +ahV +aiC +aiR +ajL +akt +akP +alo +alJ +aqo +amt +amX +aDc +aoM +aFA +aqf +aqV +arE +avd +asN +atv +atF +atZ +avd +aJQ +aKT +aMu +aNE +aOR +aQk +aRu +aSV +aKU +aSV +aXD +aNE +aTb +aZu +aZs +bfd +aZo +aaa +aaa +aZw +bma +bnI +bpD +bri +bsx +bsA +bsA +bsA +bxi +brl +brl +bBT +bDK +bFp +bFs +bIG +bKs +bLK +bFs +bFs +bFs +bFs +bSD +aZs +bVh +aZw +aaa +bYL +cae +cbw +ccV +cei +aaa +aac +aac +aac +cjJ +ckT +cmd +cmd +coi +cpf +cpY +cqW +crZ +csS +ctY +cpU +cwb +cxj +cyk +cpf +czK +cwu +cJs +cCY +cCZ +cCZ +cJX +cJX +cwu +cHN +cIu +cND +cJS +cKy +cDd +cLx +cUg +cUL +cVl +cVO +cVO +cVn +cSC +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaq +aax +aaG +aaG +aaG +abh +abs +abs +abE +abO +acs +abO +adi +adD +ael +aeL +afs +abS +agJ +ahs +ahY +aiE +aiV +ajM +aoc +aoc +aoc +aoc +aqo +amw +amX +aDc +aoT +apq +aqm +aqX +aFv +avd +asQ +atA +atF +auc +avd +aJQ +aKT +aMv +aNF +aOS +aQl +aNE +aNE +aUy +aNE +aNE +aNE +aUy +aZu +aZs +bfd +aZo +aaa +aaa +bkC +bmb +bnJ +bpE +bri +bsy +btz +buL +buL +bxj +byL +brl +bBU +bDL +bFp +bHa +bIH +bKt +bLL +bNl +bOG +bPW +bFs +bcy +aZs +bDH +bWp +bWp +bYM +caf +cbx +ccW +bYM +bWp +bWp +chq +chq +cjK +ckU +chq +chq +coj +cpf +cpZ +cqX +crW +crW +ctZ +crW +crW +cxk +cyl +cpf +czK +cwu +cJs +cCZ +cCZ +cCZ +cJZ +cJZ +cwu +cHO +cIv +cFz +cFz +cSC +cSC +cSC +cSC +cUO +cVo +cVQ +cVQ +cVn +cSC +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaq +aaw +aaF +aaF +aaV +abg +aaD +aaD +aaF +aaF +acr +acN +adh +abS +aek +aeK +afr +abS +agI +ahr +ahX +anv +aiU +ajH +akv +akQ +alm +alL +aqo +amp +amX +aDc +aoS +aFA +aql +aqW +aFv +avd +asP +atw +atF +aub +avd +aJQ +aKT +aMw +aNE +aOT +aQm +aRv +aSW +aUz +aSW +aXE +aNE +aTb +aZu +aZs +bfd +aZo +aaa +aaa +bgs +bmc +bnK +bpF +bri +bsz +btA +buM +bvN +bxk +byM +brl +bBV +bDM +bFp +bHb +bII +bKu +bLM +bNm +bOH +bPX +bFs +bcx +aZs +bDH +bWp +asB +bYN +bXq +cby +bXq +cej +cfp +bWp +chr +cis +cjL +ckV +cme +chq +coj +cpf +cpU +cpU +crW +csT +cua +cvb +crW +cpU +cpU +cpf +czK +cwu +cwu +cDa +cDa +cwu +cwu +cwu +cwu +cHP +cIu +asG +cJT +cSC +cTi +cTD +cSC +cUN +cVn +cVP +cWq +cVn +cSC +aac +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +auQ +auQ +aaE +auQ +auQ +auQ +aaC +aaC +auQ +abS +abS +abS +adk +abS +abS +aeN +abS +abS +agL +aiS +ahZ +afI +aje +ajK +akm +akP +alq +alM +aqo +amv +amX +aDc +aoU +apr +aGz +aEg +aFv +avd +avd +aye +atI +avd +avd +aJQ +aKT +aMx +aNE +aOT +aQn +aRw +aSX +aUA +aWb +aWb +aZm +aKV +aZr +aZs +bfd +aZo +aaa +bgs +bgs +bgs +bnL +bgs +bri +bsA +btA +buN +bvO +bxl +byN +brl +brl +brl +bFp +bHc +bIJ +bKv +bLM +bNn +bOI +bPY +bFs +bcj +bcj +bVi +bWp +bXk +bXq +bXq +cbz +bXq +bXq +cfq +bWp +chr +chs +cjL +ckW +chs +chq +coj +cpg +cqa +cqY +cqY +csU +cub +cvc +cqY +cqY +cym +cpg +czK +cwu +cBZ +cDb +cDM +cJO +cFy +cGu +cHk +cHQ +cMl +cDM +cDM +cSD +cTj +cTE +cSD +cUP +cVq +cVR +cWs +cVn +cSC +aac +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +agv +agv +aid +agv +agv +aac +aaa +aaa +aaa +abS +act +act +adj +adF +acx +aeM +aft +abS +agK +aiS +agm +aiF +aiW +ajN +aqo +aqo +aqo +aqo +aqo +amq +anc +aDc +aDc +aDc +aqn +aqY +arF +avd +asR +atB +atH +aud +aCr +aJR +aKU +aMy +aNG +aOU +aQo +aRx +aSY +aKT +aWc +aXF +aZn +aKV +aZs +aZs +bfd +aZo +aaa +bgs +bkD +bmd +bnM +bpG +brj +bsB +btB +buO +buO +bxm +byO +byO +bBW +bDN +bFq +bHd +bIK +bIK +bLN +bNo +bOJ +bPZ +bFs +bSE +aZs +bDH +bWp +bXl +bYO +cag +cby +ccX +cek +cfr +bWp +chs +chs +cjM +ckW +chs +chq +cok +cpg +cqb +cqZ +csa +csV +cuc +cvd +cwc +cxl +cyn +cpg +czK +cwu +cCa +cDc +cDd +cJN +cCg +cKf +cHl +cHR +cMk +cDd +cJU +cSC +cSC +cSC +cSC +cSC +cVp +cVp +cWr +cSC +cSC +aac +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +agw +ahd +aie +aiY +aka +aac +aaa +aaa +aaa +abS +acx +acx +adl +acx +acx +aeQ +acx +afW +agN +aiS +aib +afI +ajg +ajP +aoc +alr +alr +alr +aqo +amq +amX +anF +aoX +aAW +aqq +axX +arG +asf +asT +atC +atQ +auf +ase +aJS +aKT +aKT +aNH +aOV +aQh +aKT +aSZ +aKT +aKT +aKT +aKV +aKV +aZs +aZs +bfd +aZo +aaa +bgs +bkE +bme +bnN +bpH +brk +bsC +btC +buP +buP +buP +buP +buP +bBX +buP +bFr +bHe +bIL +bHe +bLO +bNp +bHe +bQa +bRx +bSF +bLJ +bVj +bWp +bXm +bXq +bXq +cby +bXq +bXq +bXq +bWp +cht +chs +cjL +ckW +chs +chq +coj +cpg +cqc +cra +csb +csW +cud +cve +crb +cxm +cyo +cpg +czK +cwu +cCb +cDd +cDN +cJP +cKa +cKq +cDd +cLz +cMn +cOc +cJV +cMw +cTl +cTG +cUi +cUR +cVs +cVs +cWt +cWQ +cMw +aaa +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +agx +ahe +aie +aiZ +agx +aac +aaa +aaa +aaa +abS +acu +acO +acu +acu +acu +aeO +acu +abS +agM +aht +aia +aiG +ajf +ajO +akw +apf +apf +alN +ami +amy +anj +aRr +aoV +aAW +aqp +axX +arG +asf +asS +asS +atJ +aue +avd +aJQ +aKV +aMz +aNI +aOT +aQp +aNE +aTa +aNE +aWd +aTb +aaa +aZo +bcj +bcj +bfe +bgs +bgs +bgs +bkF +bmf +bnO +bpI +brl +bsD +btD +buQ +bvP +bxn +bsA +bAu +bri +bri +bFs +bFs +bIM +bIM +bFs +bFs +bFs +bFs +bFs +bSG +aZs +bVk +bWp +bXn +bYP +cah +cbA +ccY +bXq +cfs +bWp +chu +cit +cjN +ckW +cmf +chq +col +cpg +cqd +crb +csc +csX +cue +cvf +cwd +cxn +cyp +cpg +czK +cwu +cJu +cDd +cDO +cDd +cKa +cFE +cDd +cLy +cMm +cDd +cJV +cMw +cTk +cTF +cUh +cUQ +cVr +cUQ +cUQ +cWP +cXl +cXy +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +agx +ahf +aie +aja +agx +aac +aaa +aaa +abG +abS +abS +abS +abS +abS +abS +aeS +abS +abS +agP +aiS +aib +aiH +aji +ajR +aoc +akR +akS +alO +auV +amz +anm +anG +aoZ +aAW +aqq +axX +arG +asf +asS +atD +atS +auh +avd +aJQ +aKV +aMA +aNE +aOW +aQq +aNE +aTb +aUB +aWd +aTb +aaa +aZo +aZs +aZs +bfd +bgt +bhE +arW +bkG +bmg +bnP +bpJ +bpK +bsE +bsE +bsE +bsE +bxo +byP +bri +bri +aac +aac +aaa +aac +aaa +aac +aaa +aaa +aaa +aZo +boh +aZs +bVl +bWp +bXo +bXq +cai +cbB +ccZ +bXq +cft +bWp +chu +chu +cjO +ckW +cmg +chq +com +cpg +cpg +crc +csd +csY +cuf +cvg +cwe +cxo +cyq +cpg +czL +cwu +cCd +cDd +cDP +cEz +cKc +cEz +cCp +cLB +cMu +cOj +cOj +cOj +cTn +cTI +cUk +cUT +cVt +cTH +cTH +cWS +cMw +aac +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +agx +ahg +aie +aiZ +agx +aac +aaa +aaa +abG +abP +acB +acP +adm +adG +aem +aeR +afu +afX +agO +ahu +aib +afI +ajh +ajQ +aqo +aqo +aqo +aqo +aqo +aKL +anl +aAW +aoY +aAW +aqr +axX +arG +asf +aya +aya +atR +aug +avd +aJQ +aKV +aMB +aNE +aOX +aQr +aRy +aKT +aKT +aKT +aKT +aZo +aZo +aZs +aZs +bfd +bgu +bhF +bjc +bkH +bmh +bnQ +bpK +bpM +bsF +btE +buR +bvQ +bpL +byQ +bAv +aac +aac +aaa +aaa +aaa +aaa +bLP +bNq +bNq +bNq +bNq +boh +aZs +bVm +bWp +bXp +bXq +caj +cbC +cda +cel +cfu +bWp +chv +chu +cjP +ckW +cmh +chq +com +cph +cpg +cpg +cpg +cpg +cpg +cpg +cwf +cxp +cpg +cpg +czL +cwu +cCe +cDe +cDQ +cDQ +cKb +cKr +cKU +cLA +cMt +cOi +cRY +cSE +cTm +cTH +cUj +cUS +cMw +cVS +cVS +cWR +cMw +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +agx +ahh +aif +ahh +agx +aac +aaa +aaa +abH +abR +acB +acR +adE +adJ +aeo +aeU +afw +afZ +agR +ahv +aic +aer +ajk +ajT +apf +akT +apf +apf +amj +amB +ano +ant +apb +aoc +aqt +axX +arH +avd +asV +aya +aya +aui +avd +aJQ +aKV +aMC +aNE +aNE +aOT +aNE +aTc +aUC +aNE +aTc +aZp +baL +bck +bdK +bfd +bgv +bhG +bjd +bkI +bmg +bnR +bpL +brm +brn +brn +bsG +bvR +bxp +byR +bAw +bAw +bDO +bAw +bAw +bIN +aaa +bLP +bNr +azh +azk +bNq +boh +aZs +bVk +bWp +bXq +bXq +bXq +cbC +cdb +cem +cfv +bWp +chv +ciu +cjP +ckX +cmi +chq +con +cpi +cpi +cpi +cpi +cpi +cug +bWo +cwg +cxq +cyr +bWo +czK +cwu +cCf +cDf +cDd +cEA +cKa +cKA +cDO +cLQ +cMw +cLR +cMw +cMw +cMw +cTK +cUm +cUU +cVv +cVU +cVU +cVU +cMw +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +agx +ahi +aig +ajb +agx +aac +aaa +aaa +abG +abQ +acv +acQ +adn +adH +aen +aeT +afv +afY +agQ +ahu +aib +afI +ajj +ajS +akx +aod +alt +alP +adx +amA +ann +anH +apa +apt +aqs +aqZ +arG +avd +asU +asf +asf +avd +avd +aJT +aKV +aKV +aKV +aKV +aQs +aRz +aKV +aKV +aKV +aKV +aZq +aZs +bcl +bdL +bfd +bgu +bhH +bje +bkJ +bmi +bnS +bpL +brn +brn +brn +brn +brn +bxq +byQ +bAx +bBY +bDP +bFt +bHf +bIO +aaa +bLP +bNs +bOL +bQc +bRz +bSI +aZs +bVn +bWp +bWp +bWp +bWp +cbD +bWp +cen +bWp +bWp +chq +chq +cjQ +ckY +chq +chq +bWo +bWo +bWo +bWo +bWo +bWo +cuh +bWo +cwh +cxr +cys +czg +czM +cwu +cCg +cDg +cDd +cEB +cCg +cKz +cDO +cLC +cMv +cOs +cRZ +cSF +cTo +cTJ +cUl +cUU +cVu +cVT +cWu +cVT +cXm +cXz +aac +aaf +aac +cXz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +agx +ahj +aig +ajc +agx +aac +aaa +aaa +abH +abV +acB +acB +adq +acB +adI +aeW +afx +agc +agQ +ahu +aib +aiH +ajl +ajV +akz +akU +akz +akz +amk +amD +ano +anJ +apc +apA +aqv +ard +arJ +aDd +aEl +aEl +aEl +aHN +aIN +cIz +aKW +aMD +aNJ +aOY +aQt +aOY +aOY +aOY +aWe +aXG +aZr +aZs +bcm +bdM +bfd +bgu +bhI +bjf +bkK +bmj +bnT +bpM +brn +bsG +bsG +buS +bvS +bxr +byQ +bAx +bBZ +bDQ +bDQ +bHg +bIP +bKw +bKw +bNt +bOM +bQd +cJj +bSJ +azW +bVo +bWq +bXr +bYQ +bYQ +cbE +cdc +ceo +cfw +cgv +bYQ +civ +cjR +ckZ +cmj +cnl +cmj +cmj +cqe +cmj +cmj +csZ +cui +cvh +cwi +cxs +cyt +bWo +coa +cwu +cCh +cDh +cDd +cJW +cKa +cKB +cKW +cLS +cMy +cOu +cOt +cSH +cTo +cTM +cUo +cUV +cVx +cVW +cWw +cVW +cXo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +agy +ahk +ahk +ahk +akb +aac +aaa +aaa +abG +abT +acw +acS +ado +adK +adI +aeV +agm +aga +agQ +ahu +aib +aiH +ajl +ajU +aky +aoc +alu +alu +aoc +amC +anq +anI +anI +apu +aqu +ara +arI +asg +asW +asW +asW +asW +aul +aun +aKX +aJV +aJV +aJV +aQu +axX +axX +axX +aDe +aXH +aZs +aZs +bcn +bdN +bfd +bgu +bhJ +bjg +bkI +bmk +bnU +bpN +bro +bsH +btF +buT +bvT +bxr +byS +bAx +bCa +bDR +bDQ +bHh +bIQ +bKx +bLQ +bNu +bON +bQe +bRB +bSK +azV +azZ +aXH +aAb +aAd +aAd +aAe +aAf +aAg +aAh +aAh +aAh +aAh +aAh +cla +cmk +cnm +cmk +cmk +cmk +cmk +cmk +cta +cuj +cvi +cwj +cxt +cyu +cwu +cwu +cwu +cCi +cDc +cDd +cJW +cKa +cKA +cDO +cLR +cMx +cOt +cSa +cSG +cTo +cTL +cUn +cUU +cVw +cVV +cWv +cWT +cXn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abG +adI +adI +adI +aeP +adI +adI +aeX +agm +aga +agm +aiS +aib +afI +ajn +ajX +akB +akW +alw +alR +amm +amF +anr +anr +ape +apH +aqq +arf +arL +aDf +aEm +aAn +aGH +aHO +aIP +cIC +aKY +aME +aME +aME +aQv +auX +aME +aME +aWf +aXI +aZt +aZs +bco +bdO +bfd +bgw +bhK +bjh +bkL +bml +bnV +bpO +brn +bsG +bsG +buS +bvU +bxr +byQ +bAx +bCb +bDS +bDS +bHi +bIR +bKy +bKy +bNv +bOO +bQf +bRC +bSL +bUf +bVq +bWs +bXt +bYS +cak +cbG +cde +ceq +cfy +bYR +bYR +ciw +aAd +aAd +aAd +aAd +aAd +aAd +aAd +aAd +cuk +ctb +cuk +cvj +cwk +cxu +cyv +czh +czN +czh +czh +czh +czh +czh +cCg +cKD +cKX +cLT +cMA +cOB +cSc +cSJ +cTo +cTO +cUq +cUX +cVz +cVX +cWy +cWU +cXo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aaa +aaa +aaa +aih +aaa +aaa +aaa +aaa +aaa +abF +abW +acy +acT +ads +adL +aep +agr +agr +agd +agm +ahw +aij +aos +ajm +ajW +akA +akV +alv +alQ +aml +amE +amE +anK +apd +apC +aqw +are +arK +ash +aEn +aEn +aEn +aEn +aIQ +cIB +aKZ +akX +akX +akX +akX +akX +akX +akX +akX +akX +aZu +aZs +bcp +bdP +bfd +bgu +bhL +bji +bkI +bmm +bnW +bpP +brn +brn +brn +brn +brn +bxs +byQ +bAx +bCc +bDT +bFu +bHj +bIS +aaa +bLP +bNw +bOP +bQg +bRz +bSM +aZs +bVr +bWt +bWt +bWt +bWt +bWt +cdf +cer +cfz +cgw +chw +cix +cjU +cgw +cgw +cnn +coo +coo +cqf +crd +ctc +ctc +ctc +ctc +cwl +cxv +cyw +czh +czO +cAP +cCj +cDi +cDR +cED +cFC +cKC +cDd +cLC +cMz +cOA +cSb +cSI +cTo +cTN +cUp +cUW +cVy +cVT +cWx +cVT +cXp +cXz +aac +aaf +aac +cXz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cRG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aac +aaf +aaa +abd +aac +aac +aac +aaa +aaa +aaa +aaa +abF +abY +abY +acU +adu +adN +aeq +aiX +aiX +agf +agT +ahy +ail +aiI +ajp +ajZ +akC +aoc +alx +alT +amm +amH +ant +ant +aph +aoc +aAn +arf +arX +alU +cHU +cHX +cHX +cHX +cIk +cID +aLa +amO +amO +amO +amO +amO +amO +amO +amO +aCq +aZv +baM +bcq +bdQ +bfd +bgx +bhM +bjj +bkI +bmn +bnX +bpQ +brp +brn +brn +bsG +bvV +bxt +byT +bAy +bAy +bDU +bAy +bAy +bIT +aaa +bLP +bNx +bOQ +bQh +bNq +bSN +aZs +bVs +bWt +bXu +bXA +cal +bWt +cdg +ces +cfA +cfA +cfA +ciy +cjV +clb +cml +cfA +cop +cpj +cqg +cre +ctc +ctd +cul +ctc +cwm +cxw +cyx +czh +czP +czQ +cCk +czQ +cDS +cEE +cFD +cKF +cDd +cLQ +cMw +cLR +cMw +cMw +cMw +cTQ +cUr +cUU +cVv +cVY +cVY +cVY +cMw +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +aaa +aaa +abF +abX +acz +abY +adt +adM +afI +aeY +agm +age +agS +ahx +aik +afI +ajo +ajY +atz +ala +akp +alS +aoc +amG +ans +anL +apg +aoc +aqx +arg +arM +aDh +cHT +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +aFD +amO +akX +aZo +aZo +aZs +aZs +bfd +bgu +bhN +bjk +bkM +bmo +bnY +bpR +bpO +bsI +btG +brp +bvW +bpQ +byQ +bAv +aac +aac +aaa +aaa +aaa +aaa +bLP +bNq +bNq +bNq +bNq +aZs +aZs +bVt +bWt +bXv +bYT +cam +bWt +cdg +ces +cfB +cfB +chx +ciz +cjW +clc +cmm +cno +coq +cpk +cqh +cfA +aAj +cte +cum +cvk +cwn +cxx +cyy +czi +czQ +cAQ +cCl +cDj +cDS +cEE +cFE +cKE +cFI +cFI +cMK +cOC +cSd +cMK +cTp +cTP +cTR +cUY +cMw +cVS +cVS +cVS +cMw +cLQ +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaf +aaa +aaa +abF +aca +acC +abY +adt +adP +afI +afa +afz +agh +aev +ahE +ain +aiJ +ajr +akf +aiJ +aiJ +aiJ +aiJ +aiJ +aot +aot +aot +aot +aot +aqy +ari +arY +alU +cHT +aFD +aGI +aHP +aFD +aGI +aHP +aFD +aGI +aHP +aFD +aGI +aHP +aFD +amO +akX +aaa +aZo +aZs +aZs +bfd +bgy +bhO +bjl +bkN +bmm +bnZ +bpS +bpR +bsJ +bsJ +bsJ +bsJ +bxu +byU +brq +brq +aac +aac +aaa +aac +aaa +aac +aaa +aaa +aaa +aZo +aZs +aZs +boh +bWt +bXw +bYU +can +bWt +cdg +ces +cfC +cfC +chy +ciA +cjX +cld +asL +cnp +cor +cpl +cqh +crf +aAl +ctf +cun +cvl +cwo +cxy +cyz +czj +czR +cAR +cCm +cDk +cDT +cEF +cDM +cGE +cDd +cDd +cMw +cMw +cMw +cMw +cTr +cTS +cUt +cUZ +cVB +cWa +cWa +cWW +cXq +cMw +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaf +aaa +aaa +abF +abZ +acA +abY +adt +adO +afI +aeZ +afy +agg +agU +ahz +aim +aou +ajq +ake +akD +alb +aly +alV +boG +amJ +anu +aog +api +aot +aAn +arh +arY +aDi +cHT +aFD +aGJ +aHQ +aFD +aGJ +aHR +aFD +aGJ +aHR +aFD +aGJ +aHQ +aFD +amO +akX +aaa +aZo +bcj +bcj +bff +bgs +bgs +bgs +bkO +bmp +bnO +bpI +brq +bsK +btH +buU +bvX +bxv +bsR +bAz +brq +brq +bFv +bHk +bFv +bKz +bLR +bLR +bLR +bLR +bKz +aZs +aZs +boh +bWt +bXx +bYV +cao +bWt +cdg +ces +cfD +cfD +chy +ciB +cjY +cgL +cgL +clg +chL +cpm +cqi +crg +aAk +ctg +cuo +cvm +cwp +cxz +cyA +czk +czS +cAS +cCn +cDl +cDU +cEG +cFF +cGD +cDd +cDd +cDd +cDd +cJV +cMw +cTq +cTR +cUs +cTO +cVA +cVZ +cWz +cWV +cMw +cMw +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +abF +acc +acc +abY +adt +adO +afI +afI +afI +agj +agV +ahG +aip +aiK +ajt +akh +akF +alc +alc +alW +amn +amn +anx +aps +aps +apJ +aAn +ark +arY +aDj +cHT +aFD +aGK +aHR +aFD +aJX +aHR +aFD +aNK +aHR +aFD +aRA +aHR +aFD +amO +akX +aZw +aZw +bcr +aZs +bfd +aZo +aaa +bgs +bkP +bmq +boa +bpT +brr +bsL +btI +btI +bvY +bxw +byV +btI +bCd +bDV +bFw +bHl +bIU +bKA +bLS +bNy +bOR +bQi +bKz +bcy +aZs +bVu +bWu +bXy +bYW +cap +cbH +cdh +cet +cfE +cfE +chz +ciC +cjZ +cle +cgL +cnq +chL +cll +cqj +cqj +aAo +cth +cup +cvn +cwq +cxA +cyB +czh +czh +cAT +cCo +czh +czh +cEH +cFG +cGD +cDd +cHY +cMM +cDN +cJV +cMw +cTq +cTR +cUv +cTO +cVC +cUu +cWB +cWB +cUt +cMw +aac +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +abF +acb +acb +abY +adt +adO +afI +afb +afI +agi +agV +ahF +aio +aot +ajs +akg +akE +apl +apl +alW +amn +amn +anw +aoh +aoh +apI +aqC +arj +arZ +aDk +cHT +aFD +aGL +aHS +aFD +aGL +aLb +aFD +aGL +aOZ +aFD +aGL +aTd +aFD +aCq +akX +aZx +baN +bcs +aZs +bfd +aZo +aaa +bgs +bkQ +bmr +bob +bpG +brs +bsM +btJ +btJ +bvZ +bxx +byW +bAA +btJ +bDW +bFx +bHm +bIV +bKB +bLT +bNz +bOS +bQj +bKz +aZs +aZs +boh +bWt +bXz +bYX +bYX +cbI +cdi +ces +cfA +cgx +chA +ciD +cka +clf +cmo +clg +cos +cpn +cqj +crh +aAm +cti +cuq +cvn +cwr +cxB +cyC +czl +czT +cAU +cCp +cDm +cDV +cEI +cFH +cGF +cEz +cEz +cML +cHR +cJU +cMw +cTs +cTR +cUu +cVa +cMw +cWb +cWA +cWA +cXr +cLQ +aaa +aaf +aac +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +abF +ace +acC +abY +adt +adO +afI +afd +afI +afB +agV +ahI +aio +aot +aju +aki +akE +apl +apl +alZ +aps +aps +anz +aoi +avN +aot +aqE +aBl +arY +aDl +cHW +aFE +aGM +aHT +aIS +aJY +aHT +aIS +aNL +aHT +aQw +aNL +aHT +aUD +aIS +aXJ +aZy +aZy +bct +aZs +bfd +aZo +aaa +bgs +bgs +bgs +boc +bgs +brq +bsN +btK +btK +bwa +bxy +byX +bAB +bCe +brq +bFy +bHn +bIW +bKz +bLU +bNA +bOT +bQk +bKz +bcj +bcj +bUa +bWt +aAc +bYY +caq +bWt +cdg +ceu +cfA +cgx +cgx +ciE +ckb +clg +cgx +cgx +cot +cpo +cqj +cri +aAq +ctj +cur +cvn +cws +cvl +cyD +czm +cJm +cAV +cCq +cDn +cJM +cEJ +cFI +cGG +cDQ +cDQ +cMN +cJw +cDM +cMw +cTu +cTS +cUu +cVb +cMw +cWc +cWc +cWc +cWc +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +abF +acd +acD +abY +adt +adQ +afI +afc +afA +agk +agW +ahH +aiq +aot +ajs +akg +akE +apl +apl +alW +amn +amn +any +akX +akX +akX +aAn +aBl +arY +asi +asX +aFF +aGN +aHU +aIT +aJZ +aLc +aMF +aNM +aPa +aIT +aIT +aTe +aUE +aIT +aXK +aZz +baO +bcu +aZs +bfd +aZo +aaa +aaa +bgs +bms +bod +bpF +brq +bsO +btL +buV +bwb +bsR +bsR +bsR +bsR +brq +bFz +bFv +bFv +bKz +bLV +bNB +bOU +bQl +bKz +aZs +aZs +bVv +bWt +bXB +bWt +bWt +bWt +cdg +cev +cfA +cgy +chB +ciF +cjY +clh +cmp +cgL +chL +cll +cqj +crj +aAp +ctk +cus +cvn +cwt +cxC +cyE +czn +czV +cAW +cCr +cDo +cDW +cEK +cFJ +cGH +cHq +cHZ +cIA +cJx +cKg +cMw +cTt +cTS +cUw +cVb +cLC +cUH +cUH +cUH +cUH +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaa +abF +acd +acd +acV +adv +adS +aer +aff +amI +amI +agW +ahH +ais +aou +ajw +ajw +akH +alc +alc +alW +amn +amn +anA +akX +atK +akX +aqF +arm +asa +asj +asY +aFD +aFD +aFD +aFD +aKa +aLd +aMG +aMG +aPb +aQx +aQx +aTf +aUF +aQx +aQx +aQx +aQx +bcv +aZs +bfd +aZo +aaa +aaa +bkC +bmb +boe +bpE +brq +bsP +btM +btM +bwc +bxz +byY +bxz +bCf +brq +bFA +bHo +bIX +bKz +bLW +bNC +bOV +bOV +bKz +aZs +aZs +boh +bWt +bXC +bWt +bUs +cbJ +cdj +cew +cfA +cgz +chC +ciA +ckc +cli +cmq +cgL +chL +cll +cqj +cqj +cqj +cqj +cut +cqj +cwu +cwu +cyF +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cwu +cIA +cJx +cKh +cMw +cMw +cMw +cMw +cMw +cMw +cWd +cWC +cWd +cWC +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaa +abF +acf +acf +abY +adt +adR +afI +afe +afB +agl +agV +ahF +air +aot +ajv +apl +akG +ale +alz +alW +amn +amK +anA +akX +amO +aCq +aAn +arl +akX +asj +asY +aFG +aGO +aHV +aFD +aKb +aLe +aMH +aMG +ato +aQx +aRB +aTg +aUG +aWg +aXL +aZA +aQx +bcw +aZs +bfd +aZo +aaa +aaa +aZw +bmt +bof +bpU +brq +bsQ +bsR +bsR +bsR +bsR +bsR +bsR +bCg +brq +bFv +bFv +bFv +bKz +bLX +bNC +bOW +bOW +bKz +aZs +aZs +bVw +bWv +bXD +bYZ +car +cbK +cdk +cex +cfA +cgA +cgL +ciA +cjY +clj +cmr +cgL +cou +cpp +cqk +crk +cgL +ctl +ciL +cgL +cwv +cxD +cyG +cgL +czW +czW +cfA +aac +chN +chN +chN +chN +chN +cwu +cIA +cJy +cKi +cKi +cKi +cLD +cMb +cMo +cMB +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaa +abF +ach +acE +abY +adt +adU +afI +afh +afD +agn +agX +ahJ +aiu +aot +aot +aot +aot +aot +aot +aot +aot +amM +anC +akX +amO +akX +akX +aro +akX +asl +asY +aFH +aGP +aGP +aIU +aKc +aLf +aMI +aMG +atr +aQx +aRC +aTh +aUH +aWh +aXM +aXM +aQx +bcx +aZs +bfd +aZo +aaa +aaa +aZo +bmu +bog +bpV +brq +bsR +btN +bsR +bwd +bxA +byZ +bsR +bCh +bDX +azb +azb +azb +bKC +bLY +bND +bOX +bOX +bKz +bSD +aZs +bVx +bWw +bXE +bZa +cas +cbL +cdl +cey +cfF +cgB +chD +ciG +ckd +clk +cms +cms +cov +cpq +cql +cms +cms +ctm +cuu +cvo +cww +cgL +cgL +ckj +czX +cAX +cCs +cDp +cDX +cEL +cFK +cFM +chN +cwu +cIK +cFI +cFI +cFI +cLd +cLE +cwu +cMp +cMC +aaf +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaa +abF +acg +acg +acW +adw +adT +afI +afh +afC +afB +agV +ahF +ait +aiL +aiL +aiL +aiL +aiL +alA +aiL +aiL +amL +anB +aoj +aoj +aoq +arn +aAt +asb +ask +asY +aFI +aGQ +aHW +aFF +aKd +aLg +aMJ +aMH +atp +aQx +aRD +aTi +aUI +aQx +aQx +aXM +aQx +bcy +aZs +bfd +aZo +aZo +aZo +aZo +aZu +boh +bpB +brq +brq +brq +brq +brq +brq +brq +brq +brq +brq +bFv +bFv +bFv +bKz +bKz +bNE +bKz +bKz +bKz +aZs +aZs +bVy +bWv +bWv +bZb +cat +cbM +cdm +cez +cfG +cgC +chE +ciH +cke +cll +cgL +cnr +cow +cpr +cgx +crl +csn +crl +cgx +cvp +cwx +cvo +cvo +czo +clq +cAY +cgE +aac +cko +cEM +cFL +cGI +chN +cwu +cIL +cJz +cKj +cwu +cLe +cLF +cwu +cwu +cCg +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aaa +aaa +abF +abF +abF +acX +acX +abF +aev +afh +afC +afB +agV +ahL +aiw +aiw +ajy +ajy +ajy +alf +aiw +aiw +aiw +amP +anD +aok +aok +apL +aok +aok +aok +asm +asZ +aFD +aFD +aFD +aFD +aKe +aLh +aMK +aMH +aPe +aQx +aRD +aTi +aUI +aWi +aXN +aXM +aQx +aZs +aZs +aZs +aZr +aZr +aZr +aZr +aZr +boi +bpW +brt +bpW +bpW +buW +bwe +bpW +bpW +bpW +bpW +bDY +bFC +bFC +bIY +bKD +bLZ +bNF +bOY +bQm +bQm +bQm +bQm +bVz +aZx +bWv +bZc +cas +cbN +cdn +ceA +cfA +cgD +chF +ciI +asE +cll +cgL +chL +cgL +cps +cgx +cgx +cso +cgx +cgx +cvq +cll +cnr +cyH +cyH +czY +cAZ +cCt +cDq +cDX +cEN +cFM +cFM +chN +cwu +cwu +cJA +cwu +cwu +cLf +cLG +cMc +cCg +aac +aac +aac +aac +aaf +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aac +aac +aac +aac +aaa +aev +aev +aev +aev +agV +ahK +aiv +amO +ajx +akj +akI +ajz +amO +ama +akX +amN +apP +apP +apP +apK +apP +apP +apP +asj +asY +aFJ +aGR +aHX +aFF +aKf +aLi +aML +aMG +aPf +aQx +aQx +aTj +aUI +aQx +aQx +aZB +aQx +bcz +bdR +aZs +aZs +aZs +aZs +aZs +aZs +aZs +aZs +bcj +aZs +btO +aZs +bwf +aZs +aZs +aZs +aZs +aZs +aZs +aZs +aZs +bcj +aZs +bNG +aZs +aZs +aZs +aZs +bUg +aZs +baN +bWv +bZd +cau +cbO +cdo +ceB +cfA +cgE +chG +ciJ +cgE +clm +cgE +chL +cox +cpt +cgx +crm +crm +crm +cgx +cvr +cll +chL +cgL +cgL +czZ +cBa +cgE +aac +chN +chN +chN +chN +chN +cCg +cIM +cCZ +cKk +cCg +cLg +cDd +cMd +cCg +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +akX +akX +akX +atg +ajB +akk +akJ +ajz +amO +amc +akX +awU +apP +aom +apk +apM +aqH +arq +apP +asj +asY +aFK +aGP +aGP +aIV +aKg +aLj +aMM +aNN +aPg +aQy +aRE +aTk +aUI +aWj +aXO +aXM +aQx +aZs +aZs +aZs +aZs +bhP +aZs +aZs +aZs +aZs +aZs +bcj +aZs +btP +aZs +bwg +aZs +bza +aZs +aZs +aZs +bFD +bHp +bHp +bKE +bMa +bdH +aZs +aZs +bRD +bSO +aZs +aZs +bWx +bWv +bZe +cav +cbP +cdp +ceC +cfH +cgF +chH +ciK +ckg +cln +cmt +cns +coy +cpu +cqm +cpw +csp +ctn +cuv +ckg +cln +cxE +cgL +cgL +cAa +cBb +cCu +cDp +cDX +cEO +cFN +cFP +chN +cCg +cCg +cJA +cCg +cCg +cLh +cLH +cMe +cMq +cMD +cMQ +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +agY +ahM +agY +amO +ajz +ajz +ajz +amO +amO +amb +akX +awU +apP +aol +apj +apM +aqG +arp +apP +asn +asY +aFD +aFD +aFD +aFD +aKh +aLk +aMN +aNO +aPh +aQx +aRF +aTl +aUJ +aWk +aQx +aZC +aQx +aUM +aUM +aUM +aZG +aZG +bjm +aZG +bmv +aZG +bmv +aZG +aZG +aXH +aXH +aXH +bxB +bxB +bxB +bxB +bxB +bxB +bxB +bxB +bxB +bMb +bNH +bHt +bQn +bPc +bPc +bPc +bPc +bPc +bPc +bZf +bZp +bPc +bXK +bFW +cfA +cgG +chI +ciL +ckh +ciM +cmu +cnt +coz +cpv +cgL +cgL +cgL +cgL +cgL +cvs +cnr +cxF +cgL +cgL +czZ +cBc +cgE +aac +cko +cEP +cFO +cGJ +chN +cCg +cIN +cJB +cKl +cCg +cKV +cKV +cKV +cCg +cME +cMR +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaf +akX +akX +akX +aqz +amO +amO +amO +amO +aqz +akX +akX +awU +apP +aon +apj +apN +apj +arr +apP +asp +atb +aFL +aGS +aHY +aIW +aKi +aLl +aMO +aIW +aIW +aQz +aQx +aQx +aQx +aQx +aQx +aQx +aQx +bcA +baQ +bfg +bgz +bhQ +bba +bkR +bba +boj +bba +bru +aZG +btQ +btQ +btQ +bxB +bzb +bAC +bCi +bDZ +bFE +bHq +bIZ +bKF +bMc +bNI +bHt +bQo +bPc +bSP +bUh +bVA +bWy +bXF +bZg +caw +cbQ +bXK +ceD +cfI +cgH +cgL +ciM +cki +clo +cmv +cnu +coA +cpw +coz +cpu +cpu +cto +cuw +cvt +cwy +cxG +cyH +chK +czY +cBd +cCt +cDq +cDX +cEQ +cFP +cFP +chN +cCg +cIO +cJC +cIO +cCg +aaa +aaa +aaa +aac +aac +cMS +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aaa +aaf +aaa +aac +aaa +aqz +aqz +aqz +aqz +aqz +aqz +aaa +akX +awU +apP +apP +apP +apP +apP +apP +apP +aso +ata +aFM +aGT +aHZ +aIX +aKj +aLm +aMP +aNP +aPi +aQA +aQx +aTm +aUK +aWl +aXP +aUM +baP +bcB +baQ +bfg +bgz +bhR +bba +bba +bhS +bba +bba +brv +aZG +brM +brM +brM +bxB +bzc +bAD +bAD +bEa +bFF +bFF +bFF +bKG +bMd +bNJ +bOZ +bQp +bRE +bSQ +bUi +bVB +bWz +bXG +bZh +cax +cbR +bXK +bFW +cfA +cgI +chJ +ciN +ckj +clp +cmw +ciN +cgL +cgL +cgL +crn +crn +crn +cux +cvu +cnv +cxH +cyH +cow +cAb +cgL +cgE +aac +chN +chN +chN +chN +chN +cwu +cIO +cJD +cIO +cwu +aaf +aaf +aaf +aac +aaa +cMT +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akX +amR +ayh +ayh +apm +akX +aqI +ars +akX +aDj +atd +aFL +aGU +aIa +aIY +aKk +aLn +aIY +aIY +aPj +aQB +aFL +aTn +aTn +aTn +aTn +aUM +baQ +baQ +baQ +bfg +bgz +bhR +bba +bgA +bmw +bok +bba +brw +aZG +brM +brM +brM +bxB +bzd +bAE +bCj +bEb +bFG +bHr +bJa +bKH +bMe +bNK +bPa +bPa +bRF +bSR +bUj +bVC +bWA +bXH +bZi +cay +cbS +bXK +bFW +cfA +cgJ +cgL +ciO +ckk +clq +cmx +cnv +coB +coB +coB +cro +coB +coB +coB +cro +clo +cgK +cyH +cyH +czY +cBe +cCv +cDr +cDY +cER +cFQ +cFS +chN +aac +cIP +cJE +cKm +aac +aaa +aaa +aaf +aac +aaa +cMU +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +akX +akX +akX +amO +awU +akX +amO +amO +akX +cHm +atc +aFL +aGV +aIb +aIZ +aIY +aIY +aIY +aIY +aPj +aQC +aFL +aTo +aTn +aWm +aTn +aZD +baQ +baQ +bdS +bfg +bba +bba +bba +bba +bhU +bba +bba +brx +aZG +brM +brM +bwh +bxB +bze +bAE +bCk +bAE +bFH +bAE +bJb +bKI +bMf +bNL +bKN +bQq +bPc +bSS +bUk +bVD +bWB +bXI +bZj +bQt +cbT +bXK +bFW +cfA +cgK +chK +ciP +ckl +clr +cmy +cnw +coC +cpx +coC +cnw +coC +ctp +coC +cnw +coC +cxI +coC +coC +cAc +cBf +cgE +aac +cko +cES +cFR +cGK +chN +aac +aaa +cJF +aaa +aac +aaa +aaa +aaf +aac +aaa +cMT +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +aaa +aaa +aaa +aqz +amO +awU +akX +akX +art +akX +asr +ate +aFN +aGW +aIa +aIY +aIY +aIY +aIY +aNQ +aPk +aQD +aFL +aTp +aUL +aWn +aXQ +aUM +baR +baQ +bdT +bfg +bba +bhS +bjn +bkS +bba +bba +bba +bba +bjm +brM +brM +brM +bxB +bzf +bAF +bCl +bAF +bFI +bHs +bJc +bxB +bMg +bNM +bPb +bQr +bPc +bST +bST +bVD +bWC +bXJ +bZk +bQu +cbU +bXK +bFW +cfA +cgL +chL +ciQ +ckm +cls +cmx +cnx +coD +cpy +cqn +crp +csq +ctq +cgL +cvv +cwz +cxJ +cyI +cyH +cyH +cBg +cCw +cDr +cDZ +cET +cFS +cFS +chN +aac +aaa +aaa +aaa +aac +aaa +aaa +aaf +aac +aac +cMS +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaf +aac +aaa +aaa +aqz +amO +awU +aCq +amO +amO +akX +asq +akX +aFL +atT +aAX +aIY +aIY +aLo +aIY +aIY +aPj +aQE +aFL +aTq +aUM +aWo +aUM +aUM +baS +bcC +bdT +bfg +bgA +bhT +bjo +bba +bba +bhS +bba +bba +bmv +brM +brM +bwi +bxB +bxB +bAG +bCm +bEc +bxB +bxB +bxB +bxB +bMh +bNN +bPc +bPc +bPc +bPc +bPc +bPc +bPc +bXK +bZl +bPc +bPc +bXK +bFW +cfA +cfA +chM +ciR +ckn +clt +cmz +ciR +ckn +clt +ckn +ciR +ckn +clt +ckn +ciR +ckn +clt +cyJ +cfA +cfA +cBh +cfA +aac +chN +chN +chN +chN +chN +aac +aaa +aaa +aaa +aac +aaa +aaa +aaf +aac +aaa +cMT +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaf +aac +aaa +aaa +akX +aop +awU +akX +amQ +amO +akX +awU +aEz +aFL +atV +aIa +aIY +aKl +aIY +aIY +aIY +aPl +aQF +aRG +aTr +aUN +aWp +aXR +aUM +baT +bcD +bdU +bfh +bba +bhU +bjp +bba +bgA +bol +bok +bba +bjm +brM +brM +bwj +bxC +bzg +bzj +bzj +bzj +bFJ +bHt +bJd +bKJ +bMi +bNM +bPd +bQs +bRG +bSU +bUl +bPd +bWD +bXL +bZm +caz +cbV +bXK +bFW +bWv +aac +aac +ciS +aac +clu +aac +ciS +aac +clu +aac +ciS +aac +clu +aac +ciS +aac +clu +aac +aac +cfA +cBi +cfA +aac +aaa +aaa +aac +aaa +aaa +aac +aaa +aaa +aaa +aac +aaa +aaa +aaf +aac +aaa +cMU +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +akX +aoo +awU +akX +aqJ +aqJ +akX +awU +aEA +aFL +atU +aIa +aIY +aIY +aIY +aIY +aIY +aur +auN +aZE +aZE +aZE +aWq +aXS +aZE +baU +bcE +bdV +baU +baU +baU +bjq +bba +bba +bhU +bba +bry +bsS +brM +brM +bwj +bxD +bzh +bAH +bCn +bEd +bEd +bHu +bEd +bKK +bMj +bNM +bPe +bQt +bQt +bQt +bQt +bVE +bQt +bXM +bZn +caA +cbW +bXK +bFW +bWv +aac +chN +ciT +cko +ciT +chN +ciT +cko +ciT +chN +ciT +cko +ciT +chN +ciT +cko +ciT +chN +aac +cfA +cBh +cfA +aaa +aaa +aaa +aac +aaa +aac +aac +aaa +aaa +aaa +aac +aaa +aaa +aaf +aac +aaa +cMT +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +akX +amx +awU +akX +amO +aru +akX +aDt +akX +aFL +atU +aIa +aIY +aIY +aLp +aIY +aIY +aur +aQE +aFL +aaa +ave +aWr +aXT +aZF +baV +bcF +bdW +bcF +bgB +bgB +bgB +bkT +bgB +bcF +baY +brz +aZG +brM +brM +bwj +bxD +bzh +bzj +bCo +bEe +bEe +bHv +bzi +bKL +bMk +bNO +bPe +bQu +bRH +bSV +bQu +bPd +bWE +bXN +bZo +caB +cbX +bXK +bFW +bWv +aac +chN +ciU +ckp +clv +chN +cny +coE +cpz +chN +crq +csr +ctr +chN +cvw +cwA +cxK +chN +aac +aaa +aaa +aac +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +cMS +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aqz +amO +awU +akX +amO +azj +akX +awU +atK +aFL +atW +auj +aum +aum +auo +aum +aum +auJ +aQH +aFL +aaa +ave +aWs +aXU +aZG +baW +bba +bdX +bfi +bgC +bgC +bjr +bkU +bgC +bgC +bba +brA +aZG +btR +brM +bwj +bxD +bzh +bzj +bCp +bEf +bFK +bHw +bHw +bzj +bMl +bNP +bPd +bQv +bQt +bQt +bUm +bPc +bPc +bXO +bZp +bPc +bPc +cdq +bFW +bWv +aac +chN +ciV +ciW +ciW +chN +cnz +coF +cnA +chN +crr +css +cts +chN +cvx +cwB +cvy +chN +aac +aaa +aaa +aac +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +cMT +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aac +aac +aqz +azj +awU +akX +aCq +akX +akX +awU +atK +aFL +aHb +aIe +aJb +aJb +aJb +aJb +aNR +aPp +aQI +aFL +aaa +ave +aWt +aXV +aZG +aZG +bcG +aZG +aZG +bgD +bhV +bhR +bba +bba +bom +bpX +bba +aZG +brM +buX +bwk +bxE +bzi +bzi +bCq +bEg +bFL +bHx +bJe +bzj +bMl +bNQ +bPc +bQw +bRI +bRI +bPc +bPc +bWF +bXM +bZq +caC +cbY +cdq +bFW +bWv +aac +chN +ciW +ckq +ciW +chN +cnA +coG +cnA +chN +crs +cst +cts +chN +cvy +cwC +cvy +chN +aac +aac +aac +aac +aac +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aac +aaf +aac +aaa +cMU +aaa +aac +aaf +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aac +aac +akX +atK +amR +ayh +ayh +ayh +ayh +aDu +aEB +aFP +aFR +aIf +aJc +aKm +aKm +aJc +aKm +aKm +aQJ +aRI +aaa +ave +aWu +aXV +aZH +baX +bba +bdY +aZG +bgE +bba +bba +bkV +bba +bgC +bhR +brB +aZG +brM +brM +bwj +bxF +bzj +bzj +bCr +bEh +bzj +bzj +bJf +bzj +bMl +bNR +bPd +bQx +bRJ +bRJ +bUn +bPc +bWG +bXM +bZr +bQt +cbZ +cdq +bFW +bWv +aac +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +chN +aac +aaa +czp +czp +cDs +czp +czp +czp +czp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +cMT +aaa +aac +aaf +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aac +aaa +akX +akX +akX +aqz +aqz +aqz +aqz +akX +aEC +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aRJ +aaa +ave +aWv +aXW +aZI +aZI +bcH +bdZ +bfj +bgF +bhW +bjs +bba +bba +bgC +bhR +brC +aZG +brM +brM +bwj +bxC +bzj +bzj +bCs +bEi +bFM +bHy +bHt +bzj +bMl +bNR +bPc +bQy +bRK +bRJ +bUo +bPc +bWH +bXM +bQt +bQt +cca +cdq +bFW +bWv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +czp +czp +cCx +cDt +cEa +cEU +cFT +czp +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aac +cMS +aac +aac +aaf +aac +aac +aaa +aac +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aED +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aRJ +aaa +ave +aWw +aXX +aZJ +baY +bba +bea +aZG +bgG +bhX +bba +bkW +bba +bon +bba +brD +aZG +brM +brM +bwl +bxG +bzk +bzk +bzk +bxG +bxG +bxG +bHt +bKM +bMl +bNR +bPc +bQy +bRL +bSW +bUp +bPc +bWI +bXP +bQt +bQt +ccb +cdq +bFW +bWv +bWv +bWv +ciX +ciX +ciX +bWv +bWv +ciX +ciX +ciX +bWv +bWv +ciX +ciX +ciX +bWv +bWv +bWv +czp +czp +cBj +cCy +cDu +cBm +cBj +cFU +czp +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +cMT +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEE +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aRJ +aaa +ave +aWx +aXV +aZG +baZ +bba +beb +aZL +aZL +aZL +bjt +aZL +bmx +aZL +bpY +aZL +aZL +btS +brM +brM +bxG +bzl +axT +axT +ayZ +azc +bzk +bJg +bKN +bMm +bNS +bPc +bQy +bRL +bSX +bUq +bPc +bWJ +bQt +bQt +bQt +ccc +cdq +ceE +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +coH +cpA +cpA +cpA +cpA +cpA +cuy +bUs +bWv +bUs +cuA +czp +cAd +cBk +cCz +cBj +cEb +cBj +cBj +czp +czp +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +cMU +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aii +cPa +cPa +cPa +cPa +cPY +cPa +cPa +cPa +cPa +cPY +cPa +cPa +cPa +cPa +cPY +cPa +cPa +cPa +cPa +aaa +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aED +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aRJ +aaa +ave +aWw +aXY +aZK +bba +bcI +bec +aZL +bgH +bhY +bhY +bhY +bhY +boo +bpZ +aZL +bsT +brM +brM +brM +bxG +bzm +bAJ +bCu +bEk +bFO +bHz +bJh +bKO +bMn +bzj +bPd +bQz +bRM +bSY +bUr +bPc +bWK +bXQ +bZs +aty +ccd +cdr +ceF +bWQ +cgM +chO +cgM +cgM +cgM +cgM +cnB +coI +bWv +cqo +bWv +bWv +ctt +cuz +cvz +cpA +cxL +cyK +czp +cAe +cBj +cCz +cDv +cBj +cBj +cFV +cGL +czp +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +cMV +cMQ +aac +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aac +aaf +cOy +cPb +cPm +cPB +cPP +cPZ +cPP +cPP +cPP +cPP +cQB +cPP +cPP +cPP +cPP +cQQ +cPP +cPP +cPP +cRn +cPV +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aaa +aED +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aFQ +aRJ +aaa +ave +aWw +aXZ +aZL +aZL +aZL +aZL +aZL +aZL +bhZ +bju +bhY +bhY +bhY +bhY +aZL +bsT +brM +buY +brM +bxG +bzn +bAK +axW +bEl +bFP +bHA +bJi +bKP +bMl +bNT +bPc +bPc +bRI +bRI +bPc +bPc +bPc +bXR +bHt +bHt +bHt +cds +bHt +bHt +cgN +chP +ciY +ckr +clw +chW +cnC +coI +bWv +bUs +crt +cbN +bWv +bWv +bWv +cwD +cxM +cyL +czq +cAf +cBl +cCA +cDw +cBj +cEV +cBj +cEX +czp +aaa +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aac +cMW +cNh +cNw +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aac +aaf +cOy +cPc +cPk +cPC +cPl +cOd +cPl +cPl +cPl +cPl +cOd +cPl +cPl +cPl +cPl +cOd +cPl +cPl +cRe +cRo +cPV +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aac +aac +aaa +aac +aaf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aEF +aFR +aFR +aFR +aJd +aKm +aKm +aMQ +aFN +aFN +aFN +aRK +ave +ave +aWy +aYa +aZL +bbb +bbb +bed +bfk +aZL +bia +bjv +bkX +bmy +bhY +bhY +brF +bsT +brM +bqj +brM +bxG +bxG +bxG +bxG +bxG +bxG +bxG +bJj +bKP +bMl +bzj +bPf +bzj +bzj +bzj +bzj +bzj +bWL +bXS +bHt +caE +cce +bHt +cce +cfK +cgN +chQ +chW +cks +clx +cmA +cnC +coI +bWv +bUs +cru +cbN +ctu +cuA +bWv +cwE +cxN +cyM +czr +cAg +cAg +cAg +cDx +cBj +cEW +cFW +cGM +czp +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +cME +cNh +cNE +aaa +aaa +aaa +aac +aaa +aaa +aaa +aac +aaf +aii +cPd +cPn +cPD +aaa +cOd +aaa +aaa +aaa +aaa +cOd +cNx +aaa +aaa +aaa +cOd +aaa +aaa +cRf +cRp +cPV +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +aaa +aaa +aac +aaa +aaa +aaa +aaa +aac +aac +aaa +aac +aaa +aaa +aaa +aFL +aJe +aKn +aLr +aMR +aFL +aEJ +auO +aDD +aLs +ave +aWz +aYb +aZM +bbc +bbc +bbc +bfl +bgI +bib +bjw +bkY +bmz +bop +bhY +brG +bsT +brM +bqj +brM +bxH +bzo +bAL +bAL +bAL +bzp +bHB +bJk +bKP +bMl +bzj +bxF +bzj +bzj +bSZ +bzj +bzj +bzj +bNR +bHt +caF +ccf +bHt +ceG +cfL +cgN +chR +chW +chW +cly +cmB +cnC +coJ +bzv +bzv +bzv +bzv +bzv +cuB +cvA +cvA +cxO +cyN +czp +cAh +cBm +cBj +cDy +cEc +cEX +cFX +cFX +czp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aac +cMW +cNh +cNN +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +cPo +cPD +aaa +cOd +aaa +aaa +cQh +cQh +cQh +cQh +cQh +cQh +cQh +cQC +aac +aac +cRg +cRp +cRy +aii +aac +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aac +aaa +aaa +aFL +aJf +aKo +aKo +aMS +aFL +aEJ +aQL +aRM +aTt +ave +aWw +aYc +aZN +bbd +bcJ +bee +bfm +aZN +bic +bjx +bkZ +bmA +bhY +bhY +brG +bsT +brM +bqj +brM +bxH +bzp +bzp +bzp +bzp +bFQ +bHC +bJl +bKQ +bMo +bJq +bJq +bJq +bRN +bHD +bHD +bzj +bzj +bNR +bHt +caG +bKP +bHt +caI +cfM +cgN +chS +ciZ +ckt +cgO +cmC +cnD +cgM +cgM +chO +cgM +cgM +ctv +cuC +bTj +cwF +cxP +cyO +czp +cAi +cBn +aqA +cDz +cBj +cEY +cFX +cGN +czp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aac +cME +cNO +cNN +cOd +cOd +cOd +cOd +cOd +aaa +aaa +aac +cPe +cPe +cPE +cPe +cPe +cQh +cQh +cQh +cQh +cQh +cQE +cQh +cQh +cQh +cQh +aaa +aaa +cRg +cRp +cPV +aii +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aac +aac +ave +aFL +aFL +aFL +aFL +aFL +aFL +ave +aQM +aQM +aTu +ave +aWw +aMW +aZL +aZL +bcK +bcL +bcL +aZL +bid +bjy +bla +bmB +bhY +bhY +brG +bsT +brM +bqj +bwm +bxH +bzq +bAL +bAL +bAL +bFR +bHD +bJm +bKR +bMp +bNU +bPg +bQA +bKU +bTa +bHD +bVF +bzj +bXT +bHt +caH +ccg +bHt +ceH +cfN +cgN +cgN +cgN +cgN +cgN +cmD +cnE +coK +cpB +cqp +crv +cgN +cnC +coI +bWv +bWv +bWv +bWv +czp +czp +czp +czp +czp +czp +czp +cFY +czp +czp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aac +aaa +cME +cNT +cOe +cOk +cOv +cOF +cOd +aaa +aaa +aac +cPe +cPp +cPF +cPQ +cQa +cQi +cQo +cQv +cQy +cQt +cQt +cQt +cQy +cQM +cQh +cQh +cQY +cQY +cRq +cQY +cQY +cQY +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aac +aac +abd +aaf +aaa +aii +ajd +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +ave +aIg +aJg +avY +avY +avY +avY +ave +ave +ave +aTv +aUQ +aWA +aYd +aZO +bbe +bcL +bcL +bcL +aZL +bie +bjz +blb +blb +blb +bqa +aZL +bsU +brM +buZ +bwn +bxI +bzr +bAM +bAM +bAM +bFS +bHE +bJn +bKS +bKU +bKU +bPh +bKU +bKU +bTb +bHD +bVG +bzj +bJk +bZt +caI +bKP +cdt +caI +bKP +cgO +chT +cja +cku +cgN +cJl +chW +chW +chW +cqq +crw +csu +cnC +cuD +cvB +cvB +cxQ +bWv +czs +cAj +bUs +cCC +bWv +cEd +cEZ +cEZ +cGO +bWv +aac +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +cNx +cNx +cNx +cNx +cNx +cOl +cOl +cOG +cOd +cOS +cOS +cOd +cPe +cPq +cPG +cPG +cQb +cQj +cQp +cQt +cQw +cQw +cQF +cQw +cQw +cQw +cQm +cQh +cQZ +cRh +cRr +cRz +cRH +cQY +aaa +aaf +aac +aad +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +aaa +aaa +aaf +aac +aii +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aii +aac +aac +aaa +aaa +aaa +aaa +aaa +aaf +avk +aFS +avk +avY +avY +avY +aLs +avY +aHe +ave +aQN +ave +aTw +ave +aWB +aMW +aZL +aZL +aZL +beg +bfn +aZL +bif +bhY +bhY +bmC +boq +bqb +aZL +bsT +brM +brM +bwo +bxH +bzp +bAL +bAL +bAL +bFT +bHF +bJo +bKT +bKU +bKU +bKU +bPi +bRO +bTc +bHD +bPb +bzj +bXU +bZu +caJ +cch +cdu +caJ +cfO +cgP +chU +cjb +ckv +clz +cmF +cnF +coL +chW +cqr +crx +csv +ctw +cuE +cvC +cwG +cxR +cyP +czt +bUs +bUs +bUs +bWv +bWv +cFa +cFZ +cGP +bWv +bWv +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +cNx +cNF +cNP +cNU +cOf +cOm +cOw +cOH +cOP +cOw +cOw +cOW +cPf +cPr +cPH +cPR +cQc +cQk +cQq +cQw +cQw +cQC +cQC +cQI +cQL +cQN +cQR +cQh +cRa +cRi +cRs +cRA +cRI +cRM +aaa +aaf +aac +aad +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aii +aaa +anM +aoz +apv +aaa +anM +aoz +apv +aaa +anM +aoz +apv +aaa +aii +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aEG +avY +aEG +avY +avY +avY +aAC +avY +ave +ave +ave +ave +ave +ave +aWC +aYe +aZP +bbf +aZL +aZL +aZL +aZL +aZL +aZL +blc +aZL +aZL +aZL +aZL +aZL +btQ +btQ +btQ +bxH +bzs +bAN +bAN +bAN +bFU +bHG +bJp +bKU +bKU +bNV +bNV +bKU +bKR +bTd +bHD +bVH +bKN +bXV +bPa +caK +cci +bEd +ceI +cfP +cgQ +chV +cjc +ckw +cgN +cmG +cmB +coM +cpC +cqs +cry +cgN +cgN +bWv +bWv +cwH +cxS +cyQ +czu +cAk +cyR +cwM +cDA +cyR +cFb +cwM +cGQ +bUs +cyP +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +aaa +aaa +cNx +cNG +cNQ +cNV +cOg +cOn +cNV +cOI +cOQ +cOT +cOV +cOX +cPg +cPs +cPI +cPS +cQc +cQl +cQr +cQw +cQz +cQC +cQG +cQJ +cQF +cQO +cQS +cQW +cRb +cRj +cRt +cRB +cRJ +cRM +aaa +aaf +aac +aad +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +aam +aaa +aaf +aac +aii +aac +anM +aoA +apv +aaa +anM +aoA +apv +aaa +anM +aoA +apv +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +avk +avk +avk +avY +aJh +ave +avY +avY +ave +aDD +avY +ave +aIi +ave +aWD +aYf +aYk +bbg +bcM +aYk +bfo +bfq +bfq +bjB +bld +bmD +bfq +bqc +brH +brI +brM +brM +brM +bxH +bzt +bzp +axY +bzp +bFT +bHH +bJq +bJq +bJq +bJq +bJq +bJq +bRP +bTe +bJw +bVI +bWM +bWM +bWM +caL +ccj +bVI +ceJ +cfQ +cgN +cgN +cgN +cgN +cgN +cmH +cnG +coN +cpD +cqt +crz +csw +ctx +cuF +bWv +cwI +cwM +cyR +cyR +cAl +cyR +cwM +cwM +cyR +cFc +cGa +caQ +cHr +cIa +cIQ +cJG +aaa +aaa +aac +aac +aaf +aac +aaa +aaa +aaa +cNx +cNH +cNR +cNW +cOh +cOo +cOx +cOJ +cOR +cOU +cOx +cOY +cPh +cPt +cPJ +cPT +cQd +cQh +cQs +cQw +cQw +cQC +cQC +cQK +cQw +cQP +cQT +cQX +cRc +cRk +cRu +cRC +cRK +cRM +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaf +aaf +akc +aaa +aii +aaa +anM +aoA +apv +aac +anM +aoA +apv +aac +anM +aoA +apv +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +avk +aEJ +avY +ave +aLt +avY +aBH +avY +avY +ave +avY +ave +aRS +aYg +aZQ +bbh +bcN +beh +bfp +bgJ +big +bjC +ble +ble +ble +bqd +bih +bsV +brM +brM +brM +bxH +bxH +bxH +bxH +bxH +bFV +bHH +bJr +bKV +bMq +bNW +bNW +bQB +bRQ +bTf +bJw +bVJ +bWN +bXW +bZv +caM +cck +bVI +ceK +cfR +cgN +chW +chX +chW +clA +chW +cmB +coO +cpE +cqu +crw +cgN +cty +cuG +cvD +cwJ +cxT +bWQ +czv +cAm +bTj +cCD +bWQ +cEe +cFd +cGb +cGR +cGQ +ciX +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +aaa +aaa +cNx +cNx +cNx +cNx +cNx +cOp +cOy +cOK +cOd +cOS +cOS +cOd +cPe +cPu +cPG +cPG +cQb +cQm +cQt +cQt +cQw +cQw +cQF +cQw +cQw +cQw +cQj +cQh +cRd +cRl +cRv +cRD +cRL +cQY +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aaa +aaa +aaa +aac +aac +anM +aoA +apv +aaa +anM +aoA +apv +aaa +anM +aoA +apv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDy +aDy +aDy +aDy +aDy +aDy +ave +avY +ave +ave +ave +ave +aLs +aQL +aWE +aYh +aYl +bbi +bcO +aYk +bfq +bgK +bih +bih +bih +bmE +bih +bih +bih +bsV +brM +brM +brM +bxJ +bxL +bAO +ayb +bxL +bFW +bHH +bJs +bKW +bKU +bNX +bPi +bQC +bRR +bTg +bJw +bVK +bWO +bXX +bZw +bWN +ccl +bVI +ceK +cfR +cgN +chX +chW +chW +clA +chW +cmB +coP +cpF +cqv +crA +cgN +ctz +cuH +bWv +cwK +cwM +cyS +cyR +cAn +cyR +cyR +cwM +cyR +cwM +cGc +cGS +cHs +ciX +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aaa +aaa +aaa +aac +aaa +aaa +aac +cOd +cOq +cOz +cOL +cOd +aaa +aaa +aac +cPe +cPv +cPK +cPU +cQe +cQn +cQu +cQx +cQA +cQt +cQt +cQt +cQA +cQM +cQh +cQh +cQY +cQY +cRw +cRE +cQY +cQY +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aii +aii +aii +aac +aaa +anM +aoA +apv +aaa +anM +aoA +apv +aaa +anM +aoA +apv +aaa +aac +aaa +aaa +aaa +aaa +ayi +aBz +aBz +aBz +aBz +aFT +aHc +aIh +aJi +aDy +aIg +avY +ave +aDD +avY +aRN +aHd +aUR +aWF +aYi +aYk +bbj +bcP +aYk +bfr +bgK +bih +bjD +blf +bih +bih +bqe +brI +brI +brM +brM +brM +brM +bzu +bAO +axZ +bxL +bFX +bHH +bJt +bKX +bMr +bNY +bKU +bQD +bKR +bTh +bJw +bVL +bWN +bXY +bWN +caN +ccm +bVI +ceL +cfS +cgN +chY +chX +ckx +clB +chW +cmB +coP +coP +coP +coP +cgN +bWv +bWv +bWv +cwH +cvE +cyT +cyR +cAo +cwM +cwM +cDB +cyR +cwM +cxV +cvE +cHt +bWv +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aac +aaa +aaa +aac +cOd +cOd +cOy +cOd +cOd +aaa +aaa +aac +cPe +cPe +cPL +cPe +cPe +cQh +cQh +cQh +cQh +cQh +cQH +cQh +cQh +cQh +cQh +aaa +aaa +cRf +cPM +cRF +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aii +aaa +aac +aaa +aaa +aaa +aoB +aaa +aaa +aaa +aoB +aaa +aaa +aaa +aoB +aaa +aaa +aac +aaa +aaa +ayi +ayi +ayi +aBA +aCt +aDv +aBz +aFU +avY +aEO +avY +aDy +aAE +aMT +aHd +aHd +aHd +aRO +avY +aTx +aWG +aYj +aYk +bbj +bcQ +aYk +bfq +bgK +bih +bjE +blg +bih +bih +bqe +brI +brM +brM +brM +brM +bwu +bxL +bAP +ayd +bxL +bFW +bHH +bJu +bJu +bMs +bNZ +bKU +bQD +bKR +bTi +bJw +bVM +bWP +bXZ +bZx +caO +ccn +bVI +ceM +cfR +cgN +chX +cjd +chW +clA +chW +cmB +coP +cpF +cqv +crA +cgN +ctA +cuI +cvC +cwL +cxU +bWv +bWv +ceM +cvE +cwM +cyR +cyR +cwM +cwM +cGT +bWv +bWv +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aac +aaa +aaa +aac +aac +aaf +aaf +aaf +aaf +aaf +aaf +aac +aaa +cPw +cPM +cPV +cOd +aaa +aaa +cQh +cQh +cQh +cQh +cQh +cQh +cQh +cQC +aac +aac +cRg +cPM +cRy +aii +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aii +aac +akY +alX +alX +anN +aoC +aoC +aoC +aoC +aoC +aoC +aoC +aoC +aoC +aoC +aoC +aoC +avT +awW +ayj +azl +ayj +aBB +aCu +aDw +aEH +aFV +aHd +aHd +aJj +aDy +aLu +aJk +ave +ave +ave +ave +ave +aUS +aWH +aYk +aYk +bbk +bcR +bei +bfq +bgK +bih +bih +bih +bih +bih +bqf +brJ +brM +brM +brM +bwp +bxK +bxL +bAQ +ayc +bxL +bFW +bHH +bJv +bKY +bJv +bOa +bPj +bQE +bRS +bJw +bJw +bVI +bVI +bVI +bVI +caP +bVI +bVI +cex +cfR +cgN +chW +cje +chW +clA +cmI +cnH +coQ +cpG +cqw +cjd +cgN +ctB +cfR +cvE +cwM +cxV +bWv +czw +ceM +cxU +cCE +bWv +crt +bUs +cGd +cGU +bWv +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aii +cPi +cPx +cPM +cPV +cOd +aaa +aaa +aaa +aaa +cOd +cNx +aaa +aaa +aaa +cOd +aaa +aaa +cRf +cPM +cPV +aii +aac +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aii +aaa +aac +aaa +aaa +aaa +aoD +aaa +aaa +aaa +aoD +aaa +aaa +aaa +aoD +aaa +aaa +aac +aaa +aaa +ayi +ayi +ayi +aBC +aCv +aDx +aEI +aFW +avY +avY +aJk +aDy +aLv +aJk +ave +aPr +avY +ave +aaa +aUT +aWI +aYk +aZR +bbl +bcS +bej +bfs +bgL +bii +bjF +blh +blh +blh +bqd +brK +brM +brM +bva +bwq +bxL +bxL +bxL +bxL +bxL +bFW +bHH +bJw +bJw +bJw +bJw +bJw +bQF +bRT +bJw +bUs +bVN +bWQ +bWQ +bWQ +caQ +bWQ +bWQ +ceN +cfT +cgM +chO +cjf +cgM +cgM +cgM +cgM +cgM +cgM +cgM +cjf +cgM +bWQ +cfT +caQ +bzL +bzL +bzL +bTj +cAp +cBo +bWv +bWv +bWo +cFe +bWo +bWo +bWo +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +cOy +cPj +cPy +cPN +cPW +cOd +cPa +cPa +cPa +cPa +cOd +cPa +cPa +cPa +cPa +cOd +cPa +cPa +cRm +cPM +cRy +aii +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aii +ajd +aii +alY +aaa +anM +aoE +apv +aaa +anM +aoE +apv +aaa +anM +aoE +apv +aaa +aac +aaa +aaa +aac +aac +ayi +aBz +aBz +aBz +aBz +avY +aHe +aIi +aJk +aDy +aHe +aJk +aup +avY +avY +ave +ave +aUS +aWH +aYk +aZS +bbm +bcT +bei +bft +bfq +bfq +bfq +bli +bmF +bfq +bqg +brI +brM +btT +bvb +bwr +bxM +bzv +bAR +bzv +bzv +bFY +bHI +bzv +bKZ +bzv +bxM +bPk +bQG +bRU +bxM +bzv +bHI +bzv +bzv +bzv +caR +bzv +bzv +ceO +cfU +cgR +chZ +bzv +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cfJ +cuJ +cvF +cwN +cxW +cxW +cxW +cAq +cBp +bDb +aaa +cfn +cbu +cfn +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +cOy +cPk +cPk +cPO +cPX +cQf +cPX +cPX +cPX +cPX +cQD +cPX +cPX +cPX +cPX +cQU +cPX +cPX +cPX +cRx +cRy +aii +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aac +aac +aaa +aac +aac +anM +aoE +apv +aaa +anM +aoE +apv +aaa +anM +aoE +apv +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aDy +aEJ +avY +avY +aAC +aJk +aDy +ave +aJk +ave +ave +ave +ave +aQL +aUU +aWJ +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +aYl +bqh +aYl +aYl +btU +bvc +bws +bxN +bxN +bxN +bxN +bxN +bxN +bHJ +bJx +bLa +bxN +bxN +bPl +bQH +bRV +bTj +bUt +bVO +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +cgS +cia +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bWR +bDb +bDb +bDb +cAr +cBp +csG +aaa +cfn +cFe +cfn +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aii +cPl +cPl +cPl +cPl +cQg +cPl +cPl +cPl +cPl +cQg +cPl +cPl +cPl +cPl +cQg +cPl +cPl +cPl +cPl +aaa +aii +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaf +aaf +aaf +aaa +aii +aaa +anM +aoE +apv +aac +anM +aoE +apv +aac +anM +aoE +apv +aaa +aac +aaa +aac +aac +ave +ave +ave +ave +ave +avY +avY +ave +aIj +aJk +aDy +aJi +aJk +ave +aPs +avY +ave +aTx +aUV +aWK +aYm +aYm +aYm +aYm +aYm +aYm +aYm +bij +aYm +aYm +bmG +bor +bqi +brL +brL +btV +bvd +bwt +brM +bzw +bAS +ayf +bEm +bFZ +bHK +bJy +bLb +bMt +bOb +bPm +bQI +bRW +bRW +bRW +bRW +bWR +bYa +bYa +bYa +bWR +cdv +ceP +cfV +cgT +cib +cjg +cdB +clC +bYa +bYa +cdB +clC +bYa +bYa +cdB +clC +bYa +bYa +bWR +aaa +aaa +csG +cAr +cBp +csG +aaa +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 +aac +aac +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aac +aaa +aaa +aaf +aaa +aii +aac +anM +aoE +apv +aaa +anM +aoE +apv +aaa +anM +aoE +apv +aac +aac +aac +ave +ave +ave +aAw +aBD +aCw +ave +ave +ave +ave +aBH +aJl +aDy +aHe +aJk +aBH +avY +avY +ave +aTx +aUW +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +bos +bqj +brM +brM +btW +bve +brM +brM +bzx +bAT +ayg +bEn +bAT +bEn +bJz +bLc +bMu +bOb +bPn +bQJ +bRW +bTk +bUu +bVP +bWR +bYa +bYa +bYa +cco +cdw +ceQ +cfW +cgU +cib +cjh +cdB +clD +cmJ +bYa +cdB +clD +cqx +bYa +cdB +clD +cmJ +bYa +bWR +aaa +aaa +csG +cAr +cBp +csG +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +aaa +aac +aaf +aaa +aii +aaa +anM +aoF +apv +aaa +anM +aoF +apv +aaa +anM +aoF +apv +aaa +aii +aaa +ave +ayk +azm +aAx +aAx +aym +aDz +avY +avY +aHf +avY +aJk +ave +ave +aJk +ave +ave +ave +aRP +aTy +aUX +aWL +aYn +aZT +bbn +bcU +bek +bfu +bgM +bik +bcU +blj +aUZ +bot +bqj +brN +brN +brM +bve +brM +brM +bzw +bAU +ayg +bEo +bGa +bEo +bJA +bLc +bMv +bOb +bPo +bQK +bRW +bTl +bUv +bVQ +bWR +bYa +bYa +bYa +bYa +cdx +ceR +cfX +cgV +cib +cji +cdB +clD +bYa +bYa +cdB +clD +bYa +bYa +cdB +clD +bYa +bYa +bWR +aaa +aaa +csG +cAr +cBp +csG +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +afJ +afJ +aac +aaf +aaa +aii +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +atl +aaa +aii +ave +ave +ayl +aym +aym +azn +aCx +aAz +aBF +aBF +aBF +aHd +aJm +aKp +aLw +aJm +aHd +aPt +aHd +aRQ +aTz +aUY +aWM +aYo +aZU +aZU +bcU +bcU +bfu +bcU +bik +bcU +blj +aUZ +bou +bqk +aUZ +aUZ +btX +bve +brM +bxO +bzy +bAV +ayO +bEp +bGb +bHL +bJB +bLd +bMw +bOb +bOh +bQL +bRW +bTm +bUw +bVR +bWR +bYb +bYa +bYa +bYa +cdy +ceS +cfW +cgU +cic +cjj +cdB +clE +cmK +cnI +cdB +cpH +cqy +crB +cdB +ctC +cuK +cvG +bWR +aac +aac +bDb +cAr +cBp +bDb +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +ajd +aii +aii +ave +awX +aym +aym +aym +aym +aym +aDA +aEK +aFX +ave +avY +avY +aKq +avY +avY +aLs +aPu +aAC +aRR +aTA +aUZ +aUZ +aYp +aZV +bbo +bcV +bcU +bfv +bfv +bfv +bfv +bfv +bfv +bov +bql +brO +aUZ +brM +bve +brM +bxO +bzy +bAV +ayD +bEq +bGc +bHM +bJC +bLe +bMw +bOb +bOh +bQM +bRX +bTn +bUx +bVS +bWR +bYa +bYa +bYa +ccp +cdz +ceT +cfW +cgW +cid +cjk +ceW +clF +cmL +cnJ +coR +clF +cmL +crC +coR +clF +cmL +cvH +bWR +aaa +aaa +csG +cAr +cBp +csG +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aac +aac +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aad +aac +aad +aad +aad +aac +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaf +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aac +aad +aac +aaa +aaa +aaa +aac +abd +ave +awY +aym +azn +aym +aym +aym +aDA +avY +avY +aHg +avY +avY +ave +ave +avY +ave +ave +ave +aRS +aTA +aUZ +aWN +aYq +aZW +aZW +bcW +bel +bfw +bfw +bfw +bfw +bfw +bfw +bow +bqm +brP +aUZ +brM +bve +brM +bxP +bxP +bxP +ayV +bEr +bGd +bHN +bxP +bxP +bxP +bxP +bPp +bQL +bRW +bTo +bUy +bVT +bWR +bYa +bYa +bYa +cco +cdA +ceU +cfW +cgU +cib +cjl +cky +cfW +cfW +clH +coS +cfW +cfW +clH +csx +cfW +cfW +clH +cwO +aaa +aaa +csG +cAr +cBq +csG +aaa +aaa +csG +csG +csG +csG +csG +aac +aac +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +afJ +aaa +aaa +aaa +aaa +aac +abd +ave +awZ +aym +aym +aAy +aBE +aCy +aDA +aEL +avY +ave +aIk +avY +ave +aLx +avY +ave +aPv +avY +aRS +aTA +aUZ +aWO +aYr +aZX +aZX +bcU +bcU +bfx +bcU +bil +bcU +blk +bmH +box +bfv +brQ +bsW +brM +bve +bwu +bxP +bzz +bAW +ayU +bEs +asA +bHO +bJD +bLf +bMx +bHS +bOh +bQL +bRW +bTp +bUz +bVU +bWR +bYa +bYa +bYa +bWR +cdv +ceV +cfY +cgX +cie +cjm +ckz +clG +cmM +cnK +cmM +clG +cmM +cnK +cmM +clG +cmM +cvI +cwP +cxX +cxX +czx +cAs +cBr +csG +aaa +aaa +csG +cGe +cGV +cGe +csG +aaa +aac +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +aac +aac +aac +aac +aac +aac +aaa +aaa +aaf +aad +aac +aaa +aaa +aaa +aaa +ave +ave +ave +ave +ave +aAz +aBF +aBF +aDB +ave +ave +ave +avY +aAC +ave +avY +avY +aBH +avY +avY +aRS +aTA +aUZ +aWP +aYs +aZY +bbp +bcU +bem +bfx +bcU +bil +bcU +bcU +bmI +box +bfv +bmI +aUZ +brM +bve +bwv +bxP +bzA +bAX +ayX +bEt +bGf +bHP +bHP +bAY +bMy +bHS +bOh +bQN +bRW +bRW +bRW +bRW +bWR +bWR +bWR +bWR +bWR +cdB +cdB +cfZ +cgY +cib +cfW +aof +clH +cfW +cfW +coT +clH +cfW +cfW +csy +clH +cfW +cfW +cwO +aaa +aaa +csG +cAt +cBp +csG +aaa +aaa +csG +cGf +cGW +cHu +csG +aaa +aam +aac +aac +aac +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +afJ +afJ +afJ +aaa +aaa +aam +afJ +afJ +afJ +aac +aaf +aad +aac +aac +aac +aac +aac +avf +avU +avY +avU +avY +aAA +ave +aCz +avY +avY +aEO +avY +avY +avY +ave +ave +aBG +ave +ave +ave +aRT +aTA +aVa +aVa +aVa +aVa +aVa +aVa +aVa +bfy +bgN +bim +bcU +bcU +bcU +boy +bqn +bcU +bsW +brM +bve +brM +bxP +bzB +bAY +ayW +bEu +bGg +bHP +bHP +bAY +bMz +bHS +bPq +bQL +bRY +bTq +bUA +bVV +bWS +bYc +bZy +caS +ccq +ccq +cdB +cga +cgZ +cif +cjn +ceW +clI +cmN +cnL +coR +cpI +cmN +cnL +coR +ctD +cmN +cnL +bWR +aac +aac +bDb +cAt +cBp +bDb +aaa +aaa +bDb +bDb +crP +bDb +bDb +aaa +aaa +aaa +aaa +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aac +aad +abd +aac +atL +atL +atL +atL +atL +atL +atL +aAA +avZ +avY +avY +aEM +aFY +aHh +avY +avY +ave +aLy +avY +avY +aBH +auP +auY +avv +avG +awz +awE +awG +awI +awK +aVa +aUZ +aUZ +aUZ +awP +brS +awS +bfv +bfv +axy +aUZ +brM +bve +brM +bxP +bxP +axU +bAY +bEu +bGg +bHP +aze +azf +bHS +bHS +azi +bQL +bRY +azS +azX +aAa +bWS +bYc +bZz +caT +ccr +ccr +cdB +cgb +cgY +cib +cjo +cdB +clJ +cmO +cnM +cdB +cpJ +cqz +crD +cdB +ctE +cuL +cvJ +bWR +aaa +aaa +csG +cAt +cBp +csG +aaa +aaa +bDb +bTG +bTG +cyc +bDb +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaf +aac +aad +aac +aac +atL +aus +avg +avV +axa +ayn +atL +aAA +ave +avY +avY +aEN +aFZ +aHi +avY +avY +ave +aLz +avY +aLs +aBH +avY +aRV +aTC +aVc +aWR +aYu +baa +bbr +bcY +aVa +bfA +bgO +aUZ +bjH +bcU +bmK +bfv +bfv +brS +bsW +brM +bve +brM +bxR +bzC +bBa +bAY +bEw +bGi +bEw +bEw +bEw +bMB +bOc +bPs +bQP +bSa +bTs +bUC +bVX +bWS +bYd +bZA +caU +ccs +ccs +cdB +cgc +cgY +cig +cjp +cdB +bYa +bYa +clD +cdB +bYa +bYa +clD +cdB +bYa +bYa +clD +bWR +aaa +aaa +csG +cAt +cBp +csG +aaa +aaa +bDb +cGg +cza +bTG +bDb +bDb +bDb +csG +csG +csG +aaf +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +arN +aaa +aac +atL +aut +avh +avW +avi +ayo +atL +aAA +ave +aCA +avY +aEO +avY +avY +avY +avY +ave +aLA +aMU +aMU +aMU +aMU +aRW +aTD +aVa +aVa +aVa +aTG +bbs +aVa +aVa +bfB +bgP +bin +bcU +blm +bmL +bfv +bfv +bmI +aUZ +brM +bve +brM +bxS +bzD +bBb +bAY +bAY +bGj +bAY +bAY +bAY +bAY +bOd +bPt +bQQ +bSb +bTt +bUD +bVY +bWS +bYc +bZB +caV +ccs +ccs +cdB +cgd +cgY +cib +cjq +cdB +bYa +cmJ +clD +cdB +bYa +cqx +clD +cdB +bYa +cmJ +clD +bWR +aaa +aaa +csG +cAt +cBp +cCF +aaa +aaa +bDb +cGh +bTG +bTG +bTG +cGW +cGW +cKn +bTG +cLi +aaf +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aac +afJ +aaa +atL +auu +avi +avi +avi +ayp +azo +aAB +ave +ave +ave +ave +aBH +ave +aBG +ave +ave +aLB +aMV +aOc +aPx +aQP +aRX +aTE +aVa +aWS +aYv +bab +bbt +aWW +aVa +bfC +bgQ +aUZ +bjI +bln +bmM +bfv +bfv +brT +aUZ +brM +bve +brM +bxS +bzC +bBc +bCT +asz +bGk +bHR +bJF +bLh +atx +bOc +bPu +bQL +bSc +bTu +bUE +bVZ +bWS +bYc +bZC +caW +bZz +cdC +cdB +cge +cgY +cib +cjr +cdB +bYa +bYa +cnN +cdB +bYa +bYa +cnN +cdB +bYa +bYa +cnN +bWR +aaa +aaa +csG +cAt +cBp +csG +aaa +aaa +bDb +cyc +bTG +cHv +bDb +cIR +cGg +csG +csG +csG +aaf +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +afJ +aaa +atL +auv +avj +avX +axb +ayq +atL +avY +ave +avY +avY +avY +avY +avY +avY +aAC +avY +aLB +aMW +aFY +aBH +aHe +aRY +aTF +aVa +aWT +aYw +bac +bbu +aWW +aVa +aSf +aSf +aSf +aSf +aSf +aSf +boz +boz +aSf +aSf +btS +bve +brM +bxS +bxP +bxP +bxP +bxP +bxP +bHS +bJG +bLi +bHS +bHS +bOh +bQL +bSc +bSc +bSc +bSc +bWS +bWS +bZD +caX +bWS +bWS +ceW +cgf +cha +cih +cdB +cdB +cdB +cdB +cdB +cdB +cdB +cdB +bWR +bWR +bWR +bWR +bWR +bWR +bDb +bDb +bDb +cAu +cBs +bDb +bDb +bDb +bDb +bDb +crP +bDb +bDb +bDb +bDb +csG +aaa +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +afJ +aac +atL +atL +atL +atL +atL +atL +atL +aAC +avZ +avY +ave +ave +ave +aHj +aHj +aHj +aKr +aLB +aMX +aHj +aHj +aHj +aRZ +aTG +aVa +aWU +aYx +bad +bbv +aWW +aVa +bfD +aSg +bio +bjJ +blo +aSg +aXb +bqo +brU +aSf +btZ +bve +brM +bxT +bzE +bBd +bCU +bEy +bGl +bHT +bJH +bLj +bMD +bOe +bPv +bQR +bLj +bLj +bLj +bLj +bWT +bYe +bPv +caY +ccu +cdD +ceX +cgg +chb +cii +cjs +ckB +clK +cmP +cnO +coU +cpK +cqA +ckM +cmR +ctF +cuM +cmR +ckM +cxY +bTG +bDb +cAt +cBt +cCG +cDC +cEf +cFf +cGi +cCG +cHw +cEf +cIS +cJH +aac +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +abd +aac +aac +aac +aac +ave +avY +avY +avY +avY +avY +ave +avY +ave +aEP +aGa +aHj +aIl +aJn +aHj +aLC +aMY +aOd +aPy +aHj +aSa +aTH +aVa +aWV +aYy +bae +aWW +aWW +aWX +bfE +bgR +bfE +bjK +blp +bjK +aXb +bqp +aSg +bsX +brM +bve +brM +bxS +bzF +bBe +bCV +bCV +bGm +bHU +bJI +bCV +bME +bOf +bPw +bQS +bSd +bSd +bUF +bWa +bWU +bYf +bZE +caZ +ccv +cdE +ceY +ccv +chc +cij +cjt +ckC +ckD +ckD +cnP +coV +cpL +cqB +crE +csz +cmR +cmR +cmR +ckM +chm +cyU +cwT +cAv +cBu +bTG +cgq +bDb +bWW +bTG +bTG +bTG +bDb +aac +aac +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aac +aac +afJ +afJ +afJ +ave +avZ +ave +ave +ave +ave +ave +avY +ave +aEQ +aGb +aHj +aIm +aJo +aJo +aLD +aMZ +aOe +aOe +aHj +aSb +aTI +aVd +aWW +aWW +baf +aWW +aVa +aVa +bfF +bgS +bfF +bjL +blq +bjL +aXb +bqp +brV +bsX +brM +bve +brM +bxU +bzE +bBf +bCW +bEz +bGn +bHV +bJJ +bLk +bMF +bOg +bPx +bQT +bLk +bTv +bUG +bWb +bWV +bYg +bYg +bYg +bYg +bYg +ceZ +bYg +bYg +cik +cjs +ckD +ckC +ckD +ckD +ckC +cpM +cqC +crF +cmR +cmR +cuN +cvK +ckM +bEH +bRi +czy +cAt +bGw +bDb +bDb +bDb +bDb +bDb +bDb +bTG +bDb +bDb +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +abd +abd +aac +aaa +aad +ave +awb +awb +axd +azp +avY +aBG +avY +ave +ave +ave +aHj +aIn +aJo +aJo +aLE +aNa +aOf +aPz +aHj +aRZ +aTG +aVa +aWX +aYz +bag +aYz +aVa +beo +aSg +beo +aXb +aXb +aXb +aXb +aXb +bqp +aXb +bsX +brM +bve +brM +bxV +bxX +bxX +bxX +bxX +bxX +bHW +bHW +bHW +bMG +bOh +bPy +bPy +bPy +bTw +bUH +bPz +bPz +bYh +bZF +cba +ccw +cdF +cfa +cgh +cgh +cgh +cju +ckE +clL +ckC +ckC +ckD +ckC +cqD +crG +csA +cmR +cuO +cmR +ckM +cxZ +cyV +bDb +cAt +cBv +cCH +cDD +cEg +cFg +cGj +bDb +bTG +cyc +bDb +aac +aac +aac +aac +aac +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aac +aac +aac +aaa +aaa +aad +avk +awb +axc +ayr +azq +avY +ave +avY +avY +avY +avY +aHj +aHj +aHj +aKs +aLF +aJo +aOg +aPA +aHj +aSc +aTJ +aSg +aWY +aSg +bah +aSg +aSf +bep +aSg +beo +aXb +aXb +aXb +aXb +aXb +bqp +aXb +bsX +brM +bve +brM +bxS +bzG +bBg +bCX +bEA +bGo +bHX +bJK +bHW +bMH +bOh +bPy +bQU +bSe +bTx +bUI +bWc +bPz +bYi +bZG +cbb +bZG +bYi +bYi +aac +aac +aac +cju +ckF +clM +cmQ +cnQ +coW +cpN +cqE +ckM +cmR +cmR +cuP +cmR +ckM +cxZ +cyW +bDb +cAw +cBw +cCI +ctJ +ctJ +cFh +cGk +bDb +bTG +cIb +csG +aaa +aaa +aaa +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaf +aaf +aaf +aaa +aaa +aaa +ave +awb +awb +awb +awb +avY +ave +ave +ave +ave +avY +aHj +aIo +aJp +aKt +aLG +aJo +aOh +aPz +aHj +aSd +aTK +aVe +aWZ +aYA +bai +bbw +bcZ +beq +bfG +bgT +bfG +bjM +blr +bmN +boA +bqp +brV +bsX +brM +bve +brM +bxS +bzH +bBh +bBj +bEB +bGp +bHY +bJL +bLl +bMI +bOh +bPy +bQV +bSf +bTy +bUJ +bWd +bPz +bYj +bZH +bZH +bZH +cdG +bYs +cgi +cgi +cgi +bYs +ckG +ckG +cmR +ckG +coX +ckC +cqF +ckM +ckM +ckM +cuQ +ckM +ckM +ckM +ckM +ckM +cAx +cBx +bDb +bDb +bDb +cFi +cGk +bDb +bTG +cgq +csG +aaa +aaa +aaa +aaa +aaa +aaf +aac +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aac +aac +aac +aaf +aaa +aaa +aac +ave +awc +axd +awb +axd +avY +ave +avY +aDC +ave +aAC +aHj +aIp +aJq +aJn +aLH +aJo +aOe +aOe +aHj +aSe +aTL +aVf +aXa +aYB +baj +bbx +aVf +ber +bfH +bgU +bfH +bjN +bls +bjN +boB +bqq +aSg +bsX +brM +bvg +brM +bxW +bzG +bBg +bBj +bEC +bGq +bHZ +bJM +bLm +bMJ +bOi +bPz +bQW +bSg +bTz +bUJ +bWe +bPz +bYk +bZH +bZH +bZH +cdH +cJk +chd +chd +chd +cJk +ckH +clN +cmS +clP +coX +ckD +cqG +crH +crH +ctG +cuR +ctG +cwQ +cya +cyX +ckM +cAy +cBx +bDb +aaa +bDb +cAx +cGl +bDb +bTG +chk +bDb +aac +aac +aac +aac +aac +aaf +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +afJ +afJ +aac +aaf +aaa +aac +atm +ave +awd +axe +ays +azr +aAD +ave +aCB +aDD +ave +avY +aHj +aIq +aJr +aKu +aLI +aNb +aOi +aPB +aHj +aSf +aSf +aVg +aXb +aXb +bak +bby +aSg +bes +aSg +aSg +aSg +bjO +aSg +bmO +boC +bqr +brW +aSf +btQ +bvh +btQ +bxX +bxX +bBi +bCY +bED +bGr +bIa +bJN +bLn +bMK +bOj +bPz +bQX +bSh +bTA +bUK +bWf +bPz +bYl +bZH +bZH +ccx +cdI +cJk +cgk +chd +cil +cJk +ckI +clO +cmT +cnR +coX +ckD +cqG +crI +crI +ctG +cuS +ctG +cwQ +cya +cyX +ckM +cAz +cBx +csG +aaa +csG +cFi +cGk +bTG +bTG +bDb +bDb +aaa +aaa +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aac +ave +awb +awb +awb +awb +avY +aBH +avY +avY +ave +avY +aHj +aHj +aHj +aHj +aHj +aHj +aHj +aHj +aHj +aSg +aTM +aSg +aXb +aXb +bak +bby +aSf +aSf +aSf +aSf +aSf +aSf +aSf +aSf +boD +bqs +aSf +aSf +bua +bvi +bww +bxX +bzI +bBj +bCZ +bEE +bBj +bIb +bBj +bLl +bML +bOk +bPz +bQY +bSi +bTB +bUL +bWg +bPz +bYm +bZH +bZH +ccy +cdJ +bYs +cgl +che +cgl +bYs +ckH +clP +cmR +cmR +coX +cpO +cqH +crJ +csB +ctH +cuT +cvL +cwR +cwR +cyY +czz +cAA +cBy +csG +aaa +csG +cFi +bGw +bDb +bDb +bDb +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aii +aii +aii +aii +aii +aii +aii +aii +aii +ajd +aii +aii +aii +aii +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aaa +ave +awe +awb +ayt +awb +aAE +ave +aCD +aAD +ave +avY +avY +avY +avY +avY +avY +avY +aOj +avY +auR +aSg +aTN +aSg +aSg +aSg +bal +bby +bda +bet +bfI +bgV +bev +bjP +blt +bmP +boE +bqt +brX +bsY +bub +bvj +bwx +bxX +bzJ +bBj +bDa +bEF +bGs +bIc +bJO +bHW +bMM +bOl +bPz +bQZ +bSj +bTC +bUM +bWh +bPz +bYn +bZH +cbc +ccz +cdK +bYs +cgm +chf +cim +bYs +ckJ +clQ +cmU +cnS +coY +cpP +cqI +crK +csC +ctI +cuU +cvM +cwS +cyb +cyb +czA +cAB +cBz +bDb +bDb +bDb +cFi +bGw +cGX +bTG +bDb +bDb +aac +aac +aac +aac +aac +aaf +aii +aaa +aac +aaa +alY +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aac +aaa +ave +ave +ave +ave +ave +ave +ave +ave +ave +ave +aGc +aHi +aEO +aEO +aEO +avY +aAC +avY +avY +ave +aSh +aSf +aVh +aXc +aYC +bah +bby +bdb +bet +bfJ +bgW +bev +bjQ +bha +bha +boF +bqu +brY +bsZ +buc +bvk +bwy +bxX +bxX +bxX +bxX +bxX +bxX +bxX +bJP +bxX +bMN +bOm +bPz +bPz +bSk +bSk +bSk +bSk +bSk +bYo +bZH +cbd +bZH +cdL +bYs +cgl +chg +cgl +bYs +cju +cjs +cju +cju +cjs +cju +cjs +crL +csD +cju +cju +cju +ckM +ckM +ckM +ckM +bDb +cBA +bDb +cgq +cEh +cFi +bGw +cGY +bTG +cIc +bDb +aaa +aaa +aaa +aaa +aaa +aaf +aii +aaa +cMX +cNi +cNy +aaa +cMX +cNi +cNy +aaa +cMX +cNi +cNy +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +aaa +aaa +aac +abd +abd +abd +aac +aac +aaa +aaa +aaa +ave +ave +ave +avk +avk +avk +ave +aHe +aAE +aJi +ave +aSi +aTO +aVi +aVi +aYD +bam +bbz +bdc +bet +bfK +bgX +bip +bjR +blu +bjR +cIH +bqv +brZ +bta +bud +bvl +bwz +bxY +bzK +bBk +bBk +bBk +bGt +bId +bJQ +bxX +bMO +bOn +bPA +bRa +bJR +bTD +bTD +bTD +bJR +bYp +bZI +cbd +bZH +bZH +cfb +cgn +chh +cin +bYi +ckK +ckD +cmV +cnT +cnT +cnT +cqJ +crM +csE +cju +ckC +cvN +ckM +cyc +bDb +bWW +bDb +cBB +cCJ +bTG +bTG +cFj +aoI +bTG +bTG +cId +csG +aaa +aaa +aaa +aaa +aaa +aaf +ajd +aac +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aac +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aac +aac +aac +aac +aac +aac +aHk +aaa +aac +aac +ave +ave +ave +ave +ave +aSj +aSf +aSf +aSf +aSf +ban +bby +bdd +bet +bfL +bgY +biq +bjS +blv +cIF +cIG +boH +bsa +boH +bue +bvm +bjS +bxZ +bzL +bzL +bzL +bEG +bGu +bIe +bxX +bxX +bMP +bOo +bPB +bRb +bJR +bTD +bTD +bTD +bJR +bYq +bZJ +cbd +ccA +cdM +bZH +cgo +chi +cio +bYi +ckD +clR +ckD +cnT +cnT +cnT +coX +crN +ckC +ckC +ckC +cvO +ckM +bTG +bDb +bDb +bDb +cBC +ctJ +ctJ +cEi +cFk +bGw +cGZ +bTG +bTG +csG +aaa +aaa +aaa +aaa +aaa +aaf +aac +aaa +cMX +cNj +cNy +aac +cMX +cNj +cNy +aac +cMX +cNj +cNy +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aCE +akc +abd +aac +aHl +aaa +aaa +aac +aIy +aac +aaa +aIy +aaa +aaa +aaa +aVj +aXd +aYE +bah +bbA +aSf +bet +bfM +bgW +bev +bjT +blw +bmR +boI +boI +bsb +btb +buf +bha +bjT +bya +bev +aaa +bDb +bEH +bGv +bIf +bJR +bLo +bMQ +bOp +bPC +bRc +bSl +bTD +bUN +bTD +bJR +bYr +bZK +cbd +ccB +cdN +bZH +cgp +chj +cip +bYi +ckL +ckD +cmW +cnT +coZ +cnT +cqK +crO +csF +cju +cuV +cvO +ckM +bTG +cyZ +ctM +bDb +cBD +cCK +cDE +bzL +bzL +cGm +bDb +ctM +cIe +bDb +aac +aac +aac +aac +aac +aaf +aac +aac +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +afJ +afJ +afJ +afJ +aac +aaf +aaa +aaa +aHk +aaa +aaa +aaa +aIy +aaa +aaa +aHk +aaa +aaa +aaa +aVj +aXe +aYF +bao +bbB +bde +bet +bfN +bgZ +beu +bha +blw +bmS +boJ +bqw +boI +boI +bug +bha +bha +byb +bev +aac +bDb +bEI +bGw +bIg +bJR +bLp +bMR +bOq +bPD +bRd +bSl +bTD +bUO +bWi +bJR +bYs +bYs +cbe +ccC +bYs +bYs +bYs +bYs +bYs +bYs +ckM +ckM +ckM +ckM +ckM +ckM +ckM +cnT +ckM +ckM +ckM +ckM +ckM +bTG +cza +bTG +cAC +cBD +bGw +bDb +bDb +cFl +bTG +bDb +cHx +cHx +cHx +cHx +cKo +aaa +aaa +aaa +aaf +aac +aaa +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aaa +cMX +cNj +cNy +aaa +aac +aii +aii +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +afJ +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aam +aaa +aHk +aaa +aaa +aaa +aHk +aaa +aaa +aHk +aaa +aaa +aaa +aVj +aXd +aYE +aSg +bbC +bdf +bet +beu +beu +bet +bha +blw +bmT +boK +boK +boK +btc +buh +bha +bha +bet +bet +aaa +bDb +bEJ +bGw +bIg +bJR +bLq +bMR +bOq +bPC +bRe +bSl +bTD +bTD +bTD +bJR +bYt +bDb +cbf +ccD +cdO +bDb +cgq +chk +bTG +bTG +ckN +bWW +cju +cnU +cpa +cpa +cnT +cnT +cju +bTG +bWW +cvP +bDb +bWW +bWW +czB +bDb +cBD +cCL +bDb +bTG +bTG +bTG +cHa +cHx +cIf +cIT +cJI +cKo +cKo +cKo +aaa +aaf +aac +aaa +aaa +cNk +aaa +aaa +aaa +cNk +aaa +aaa +aaa +cOM +aaa +aaa +aaa +aac +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aac +aaf +aaa +aaa +aac +aaa +aaa +aaa +aHk +aaa +aaa +aHk +aaa +aaa +aaa +aVj +aXf +aYF +aSg +aSg +bdf +bet +bfO +bha +bir +bha +blw +bha +boL +boL +boL +boL +bha +bha +bha +bet +aac +aac +bDb +bEI +bGw +bIg +bJR +bLr +bMR +bOr +bPE +bRb +bJR +bTD +bTD +bTD +bJR +bYu +bZL +cbg +ccE +cdP +bZL +bRg +bRg +bRg +bRg +bRg +clS +cmX +cmX +cmX +cmX +cmX +cmX +cmX +ctJ +ctJ +ctJ +cwT +cwT +cwT +cwT +cwT +cBE +cCM +cDF +cEj +cFm +cEj +cEj +cHy +cIg +cIU +cJJ +cKp +cKH +cKp +cLI +cLI +cLI +cMF +cMY +cMY +cMY +cMY +cMY +cMY +cMY +cOr +cLI +cON +cLI +cLI +cLI +cOZ +aac +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aCE +aaf +aaf +aaf +aaa +aaa +aaa +aVj +aVj +aVj +aVj +aVj +aVj +beu +bfO +bha +bha +bha +blx +bjR +bjR +bqx +bha +bha +bha +bha +bwA +bet +aac +aaa +aac +aaf +bGw +bIg +bJR +bLs +bMS +bOs +bPC +bRf +bSm +bTD +bTD +bTD +bJR +bYv +bZM +cbh +ccF +cdQ +bzL +cgr +bEG +bEG +cjv +bEG +clT +cmY +cmY +cmY +cmY +cqL +cmY +cmY +cmY +cuW +cmY +cmY +cqL +cmY +cuW +cmY +cBF +cCN +bDb +cEk +cFn +bDb +bDb +cHz +cIh +cIV +cJK +cKo +cKo +cKo +aaa +aaf +aac +aaa +aaa +cNl +aaa +aaa +aaa +cNl +aaa +aaa +aaa +cOM +aaa +aaa +aaa +aac +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aPC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +beu +bfO +bha +bha +bha +bha +bha +bha +bha +bha +bha +bha +bha +bwB +bet +aaa +aaa +aac +aaf +bGw +bIg +bJR +bJR +bMT +bOt +bJR +bJR +bJR +bJR +bJR +bJR +bJR +bYv +bZN +cbi +ccG +cdR +bYi +bYi +bDb +bDb +bTG +bDb +bDb +bDb +bDb +bDb +bTG +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bTG +bDb +bDb +bDb +bDb +bDb +bDb +cFo +bDb +cHb +cHx +cHx +cHx +cHx +cKo +aaa +aaa +aaa +aaf +aac +aaa +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aaa +aac +aii +aii +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +bev +bev +bhb +bev +bjU +bev +bev +bev +bev +bev +bjV +bev +bvn +bev +bet +aaa +aaa +aac +aaf +bGw +bIh +bJS +cIJ +bMU +cJd +bPF +bRg +bRg +bRg +bRg +bRg +bRg +bYw +bZN +cbj +ccH +cdS +cfc +bYi +chl +bTG +bTG +bDb +aaa +aaa +aac +bDb +bTG +bTG +crP +bTG +ctK +cuX +bDb +cwU +cyd +bTG +bDb +bEH +ctL +cCO +bDb +cEl +cFp +bTG +bTG +bTG +bTG +cIW +bDb +aac +aac +aac +aac +aaf +aac +aac +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +bev +bhc +bev +bhc +bev +aaa +aac +aaa +bev +bhc +bev +bhc +bev +aaa +aaa +aaa +aac +aaf +bGx +bIi +bIi +cII +cIZ +cJb +bIi +bzL +bzL +bTE +bzL +bzL +bzL +bYx +bZO +cbk +ccI +cdT +cfd +bYi +chm +bTG +cjw +bDb +aaa +aaa +aac +bDb +bDb +bDb +bDb +bTG +ctL +cuY +bDb +cwV +bTG +bTG +czC +bTG +bTG +bTG +bDb +cEm +bTG +bTG +bTG +bTG +bTG +cIX +bDb +aaa +aaa +aaa +aaa +aaf +aac +aaa +cMX +cNm +cNy +aac +cMX +cNm +cNy +aac +cMX +cNm +cNy +aaa +aii +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +bev +bhc +bev +bhc +bev +aac +aac +aac +bev +bhc +bev +bhc +bev +aaa +aaa +aaa +aac +aaf +aac +bIj +bJT +bOw +bMW +bLv +bIj +bRh +bSn +bTF +bSn +bWj +bWW +bYi +bZP +cbl +ccJ +cdU +cfe +bYi +bDb +bDb +bDb +bDb +aaa +aaa +aac +aaa +aac +bDb +crQ +bTG +ctM +bTG +bTG +bTG +bTG +czb +bDb +bTG +bTG +cCP +bDb +cEn +bTG +bTG +bTG +bTG +bTG +cEn +bDb +aac +aac +aac +aac +aaf +aac +aac +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aaa +cMX +cNm +cNy +aac +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bev +bhb +bis +bjV +bev +aaa +aaa +aaa +bev +bjV +bis +bvn +bev +aaa +aaa +aaa +aac +aaf +aaa +bIj +bJU +bLw +bMW +bOx +bIj +bRi +bRi +bTG +bRi +bRi +bWX +bYi +bZG +bZG +bZG +bYi +cff +bYi +aac +aaa +aac +aHk +aaa +aaa +aac +aaa +aac +bDb +bDb +csG +csG +csG +bDb +bDb +bDb +bEI +bDb +bDb +bDb +bDb +bDb +bDb +cFq +bTG +bTG +bTG +cFq +bDb +bDb +aaa +aaa +aaa +aaa +aaf +ajd +aaa +cMX +cNn +cNy +aaa +cMX +cNn +cNy +aaa +cMX +cNn +cNy +aaa +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bjW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aac +bIj +bJV +bLx +bMX +bOy +bIj +bRj +bSo +bTG +bUP +bWk +bDb +bDb +aac +aac +aac +aac +aaa +aac +aac +aaa +aaa +aac +aaa +aaa +aac +aaa +aaa +aaf +aac +aaa +aaa +aaa +aac +aac +bDb +czc +bDb +aaa +aaa +aaa +aaa +bDb +bDb +cEn +cEn +cEn +bDb +bDb +aaa +aaa +aaa +aaa +aaa +aaf +aii +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +aac +aaa +ajd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +bIj +bJW +bJW +bMY +bJW +bIj +bDb +bDb +bDb +bDb +bDb +bDb +aac +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aac +aaa +aaa +aac +aaa +aaa +aaf +aac +aaa +aaa +aaa +aaa +aac +bDb +bEI +bDb +aac +aac +aac +aaa +aac +bDb +csG +csG +csG +bDb +aac +aaa +aaa +aaa +aaa +aac +aaf +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aii +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bLy +bMZ +bLy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aac +aCE +aaa +aaa +aaa +aaa +aac +aaa +aaf +aaf +aaf +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bLy +bMY +bLy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaf +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIk +bJX +bLz +bNa +bLz +bJX +bRk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaf +aaf +aaf +aaf +aCE +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIl +bJY +bLA +bLA +bLB +bLA +bIl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aac +aac +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIm +bJZ +bLB +bLA +bLB +bLA +apw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +atm +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIl +bJY +bLA +bLA +bLB +bLA +bIl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +afJ +afJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +bIn +bJX +bLz +bNb +bLz +bJX +bRm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +bZR +cfg +bZR +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +ccK +bZR +cfh +bZR +ccK +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +bZR +bZR +cdV +cfg +cgs +bZR +bZR +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +bZQ +bZQ +ccL +cdW +cdW +cdW +chn +bZQ +bZQ +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +bZR +cbm +ccM +cdW +cfi +cdW +cho +ciq +bZR +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +bZQ +bZQ +ccN +cdW +cdW +cdW +chp +bZQ +bZQ +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +bZR +bZR +cdX +cfj +cgt +bZR +bZR +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +ccK +bZR +bZQ +bZR +ccK +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +bZR +bZQ +bZR +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aam +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} From da48b9e8bc819c232c4705a2911df01f3b889bf5 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 25 Dec 2016 18:29:53 -0800 Subject: [PATCH 46/55] Delete tgstation.2.1.3.dmm --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 137716 --------------- 1 file changed, 137716 deletions(-) delete mode 100644 _maps/map_files/TgStation2/tgstation.2.1.3.dmm diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm deleted file mode 100644 index e9a9bff..0000000 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ /dev/null @@ -1,137716 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aad" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aae" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aag" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aah" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aai" = ( -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aak" = ( -/obj/machinery/door/poddoor{ - id = "executionspacevent" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aal" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aam" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/open/space, -/area/space) -"aan" = ( -/obj/machinery/flasher{ - id = "executionflasher"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aao" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/processing) -"aap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/processing) -"aar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/security/transfer) -"aas" = ( -/obj/machinery/sparker{ - id = "executionsparker"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aat" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/chair, -/turf/open/floor/engine, -/area/security/transfer) -"aau" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aax" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aay" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northwest"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/processing) -"aaD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaE" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aaF" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaH" = ( -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - heat_proof = 1; - name = "Prisoner Transfer Chamber"; - req_access_txt = "2" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaL" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"aaM" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 10000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaN" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaO" = ( -/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaP" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/razor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaR" = ( -/obj/machinery/button/flasher{ - id = "executionflasher"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "executionspacevent"; - name = "vent to space"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaS" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/weapon/tank/internals/anesthetic, -/obj/item/weapon/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaV" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northeast"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaW" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaX" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaY" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aba" = ( -/obj/machinery/button/ignition{ - id = "executionsparker"; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abd" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"abe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abf" = ( -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"abg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abi" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/transfer) -"abk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/door/window/northleft{ - dir = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abq" = ( -/obj/machinery/door/airlock/security{ - name = "Prisoner Transfer"; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abw" = ( -/obj/structure/table, -/obj/item/device/electropack, -/obj/item/clothing/head/helmet, -/obj/item/device/assembly/signaler, -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Transfer Center APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aby" = ( -/obj/structure/closet/secure_closet/injection, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abz" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abF" = ( -/turf/closed/wall/r_wall, -/area/security/lockers) -"abG" = ( -/turf/closed/wall/r_wall, -/area/security/hos) -"abH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/hos) -"abI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abK" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Brig Interrogation" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/processing) -"abO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/carpet, -/area/security/hos) -"abQ" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"abT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/carpet, -/area/security/hos) -"abU" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"abV" = ( -/obj/machinery/computer/card/minor/hos, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abW" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/lockers) -"abX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/plasteel, -/area/security/lockers) -"abY" = ( -/turf/open/floor/plasteel, -/area/security/lockers) -"abZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Cappers! Fairly unremarkable really."; - name = "\improper Officer Cappers" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aca" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Camilla! He constantly seeks validation."; - name = "\improper Officer Camilla" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acb" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acd" = ( -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ace" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acg" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ach" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aci" = ( -/obj/structure/table, -/obj/item/weapon/lighter, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"ack" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"acl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acm" = ( -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Prison Shuttle Dock APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aco" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acp" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acr" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"act" = ( -/obj/structure/closet/ammunitionlocker, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acu" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acw" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/deputy, -/obj/item/weapon/storage/box/seccarts, -/turf/open/floor/carpet, -/area/security/hos) -"acx" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"acy" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acz" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acA" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acB" = ( -/turf/open/floor/carpet, -/area/security/hos) -"acC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acD" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acE" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acF" = ( -/obj/structure/table, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acG" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"acI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acP" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/recharger, -/turf/open/floor/carpet, -/area/security/hos) -"acQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/adamantine, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acR" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/security/hos) -"acS" = ( -/obj/structure/closet/secure_closet/hos, -/turf/open/floor/carpet, -/area/security/hos) -"acT" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Brig Locker Room West"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/lockers) -"acY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"ada" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"add" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"ade" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"adi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adj" = ( -/obj/structure/closet/ammunitionlocker, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/security/hos) -"adn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/security/hos) -"ado" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adp" = ( -/turf/closed/wall, -/area/security/transfer) -"adq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/transfer) -"ads" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Security Locker Room APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adw" = ( -/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/open/floor/plasteel, -/area/security/lockers) -"adx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/brig) -"ady" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"adz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"adA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adE" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/red, -/obj/item/weapon/stamp/hos, -/turf/open/floor/carpet, -/area/security/hos) -"adF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Brig Riot Equipment"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -24 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"adI" = ( -/turf/closed/wall, -/area/security/hos) -"adJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adK" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/carpet, -/area/security/hos) -"adL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adM" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adO" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"adP" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adQ" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adR" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/metal{ - amount = 20 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/security/lockers) -"adT" = ( -/obj/structure/table, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/machinery/camera{ - c_tag = "Brig Locker Room East"; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adU" = ( -/obj/machinery/vending/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/isolation) -"adW" = ( -/obj/machinery/vending/medical{ - pixel_x = -2; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitered" - }, -/area/security/isolation) -"adX" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitered" - }, -/area/security/isolation) -"adY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"adZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aea" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aed" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aef" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor Northwest"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"aeg" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/storage/box/flashbangs, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeh" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/teargas, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aei" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/camera/motion{ - c_tag = "Armory"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aej" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aek" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"ael" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aem" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/hos) -"aen" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/turf/open/floor/carpet, -/area/security/hos) -"aeo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/hos) -"aep" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aer" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/main) -"aes" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"aet" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"aeu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"aev" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aew" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Brig Medbay"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/isolation) -"aex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"aey" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aez" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aeG" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/chemimp, -/obj/item/weapon/storage/box/trackimp, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeK" = ( -/obj/machinery/button/door{ - id = "riotequipment"; - name = "Riot Equipment Shutters"; - pixel_x = 24; - pixel_y = 32; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeN" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/hos) -"aeQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"aeS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aeT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aeU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeV" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeW" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/main) -"afa" = ( -/obj/machinery/computer/security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"afb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afc" = ( -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afd" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afe" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"aff" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"afh" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afi" = ( -/obj/structure/bed, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"afj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fpmaint) -"afm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afp" = ( -/obj/structure/rack, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; - name = "\improper Officer Lock n Lode" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afs" = ( -/obj/structure/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aft" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Armory APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afv" = ( -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"afw" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"afx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"afy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"afz" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afA" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afB" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afC" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afD" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"afF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afG" = ( -/obj/machinery/camera{ - c_tag = "Brig Medbay"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afI" = ( -/turf/closed/wall, -/area/security/main) -"afJ" = ( -/obj/structure/grille, -/turf/open/space, -/area/space) -"afK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 6" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afO" = ( -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Secure Cell 2"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afR" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afS" = ( -/obj/machinery/door/window/brigdoor{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afT" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afU" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/ecase, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afV" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/shotgun, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afW" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "2" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aga" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"agc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"age" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/main) -"agf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"agh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Security Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"agi" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agj" = ( -/obj/machinery/door/airlock{ - name = "Showers"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agl" = ( -/obj/machinery/camera{ - c_tag = "Brig Showers"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agm" = ( -/turf/open/floor/plasteel, -/area/security/main) -"agn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"ago" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitered" - }, -/area/security/isolation) -"agp" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitered" - }, -/area/security/isolation) -"agq" = ( -/obj/structure/table, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitered" - }, -/area/security/isolation) -"agr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"ags" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"agt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Medbay APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"agu" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agv" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agw" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall14"; - dir = 2 - }, -/area/shuttle/pod_3) -"agx" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/pod_3) -"agz" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agA" = ( -/obj/machinery/flasher{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"agC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell2"; - name = "Secure Cell 2"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"agE" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"agJ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agK" = ( -/obj/vehicle/secway, -/obj/item/key/security, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agL" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/weapon/gun/energy/laser/practice, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"agM" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/main) -"agP" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Security Office West"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/open/floor/plasteel, -/area/security/main) -"agR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/camera{ - c_tag = "Security Office East"; - dir = 8; - network = list("SS13") - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"agT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aha" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahc" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahd" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc4" - }, -/area/shuttle/pod_3) -"ahe" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahf" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahg" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahi" = ( -/obj/structure/chair, -/obj/item/weapon/storage/pod{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahj" = ( -/obj/structure/chair, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahk" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aho" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahp" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aht" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahx" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"ahy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahA" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahB" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -31; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahC" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall1"; - dir = 2 - }, -/area/shuttle/labor) -"ahD" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"ahF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahG" = ( -/obj/structure/rack, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahR" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahS" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/button/door{ - id = "armorylockdown"; - name = "Brig Control Lockdown"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahV" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahW" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Brig Control APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahX" = ( -/turf/closed/wall, -/area/security/warden) -"ahY" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahZ" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/item/device/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/main) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aib" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aid" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - dwidth = 2; - height = 9; - id = "pod3"; - name = "escape pod 3"; - width = 5 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aie" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aif" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Brig Escape Shuttle"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aig" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aih" = ( -/obj/docking_port/stationary/random{ - dir = 4; - dwidth = 2; - height = 9; - id = "asteroid_pod3"; - width = 5 - }, -/turf/open/space, -/area/space) -"aii" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aij" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aik" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window/westleft{ - name = "Security Delivery"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/main) -"ail" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aim" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ain" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/main) -"aio" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aip" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiq" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"air" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ais" = ( -/obj/structure/table, -/obj/item/baseball, -/obj/item/baseball, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ait" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiv" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiy" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 5" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiz" = ( -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Secure Cell 1"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"aiA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aiB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aiC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aiE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aiL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiM" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiN" = ( -/obj/machinery/flasher{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell1"; - name = "Secure Cell 1"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Brig APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) -"aiR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aiY" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc1" - }, -/area/shuttle/pod_3) -"aiZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aja" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ajb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "brigshuttleflash"; - name = "Flash Control"; - pixel_x = -4; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 0; - pixel_y = -31 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod3"; - shuttleId = "pod3" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajd" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajn" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"ajp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"ajs" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aju" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Courtroom North"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajv" = ( -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/courtroom) -"ajx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice{ - pixel_y = 4 - }, -/obj/item/weapon/dice/d8{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajy" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajA" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ajB" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d20, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ajD" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/brig) -"ajG" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajI" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajL" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajM" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ajZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aka" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall13"; - dir = 2 - }, -/area/shuttle/pod_3) -"akb" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/pod_3) -"akc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"akd" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"ake" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akg" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aki" = ( -/obj/structure/table/wood, -/obj/item/weapon/gavelblock, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akj" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d12, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akk" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"akm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"akn" = ( -/turf/closed/wall, -/area/security/isolation) -"ako" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 4"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akq" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall7"; - dir = 2 - }, -/area/shuttle/labor) -"akr" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 3"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"aks" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall11"; - dir = 2 - }, -/area/shuttle/labor) -"akt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aku" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akv" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 1"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akw" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Evidence"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aky" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akC" = ( -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akE" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"akG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akI" = ( -/obj/structure/table/wood/poker, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akJ" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d10, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akL" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akM" = ( -/obj/structure/chair/comfy/brown, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/cheesie, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/weapon/mop, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akO" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/ian, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akP" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akS" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akX" = ( -/turf/closed/wall, -/area/maintenance/fsmaint) -"akY" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"akZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"ala" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Front Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/crew_quarters/courtroom) -"alc" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ald" = ( -/turf/closed/wall/r_wall, -/area/security/isolation) -"ale" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alf" = ( -/obj/item/weapon/dice/d4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"alg" = ( -/obj/structure/grille, -/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ali" = ( -/obj/item/stack/teeth/lizard{ - amount = 3 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"all" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aln" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alo" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alp" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "perma prison shuttle"; - port_angle = 90; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"alq" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alr" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/rack, -/obj/item/clothing/head/bowler, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/computer/security, -/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/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aly" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/crew_quarters/courtroom) -"alz" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 8; - name = "Courtroom APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alB" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alD" = ( -/obj/item/trash/can, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alE" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigars, -/obj/item/weapon/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alF" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 4"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alG" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 4" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alH" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 3" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alI" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 3"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alJ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alK" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 1" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alM" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alN" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"alP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alQ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/camera{ - c_tag = "Brig Lobby Desk"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/flasher{ - id = "lobbyflash"; - pixel_y = -4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "lobbylockdown"; - name = "Lobby Lockdown"; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"alV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"alY" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/space) -"alZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ama" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amb" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/weapon/gun/magic/staff, -/obj/item/weapon/gun/magic/wand, -/obj/item/weapon/sord, -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amc" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/clothing/suit/armor/riot/knight, -/obj/item/clothing/head/helmet/knight, -/obj/item/clothing/head/wizard/fake, -/obj/item/clothing/suit/wizrobe/fake, -/obj/item/clothing/head/helmet/roman, -/obj/item/clothing/shoes/roman, -/obj/item/clothing/under/roman, -/obj/item/clothing/suit/space/pirate, -/obj/item/clothing/under/kilt, -/obj/item/clothing/under/pirate, -/obj/item/clothing/under/gladiator, -/obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amd" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ame" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amg" = ( -/obj/structure/grille, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ami" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"amj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aml" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"amm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"amn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ams" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amt" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amw" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amx" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amz" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Brig Lobby" - }, -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amF" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amH" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"amJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"amN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amO" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amS" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amU" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"amV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"amW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amY" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amZ" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ana" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anb" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"and" = ( -/obj/structure/table, -/obj/item/weapon/stamp, -/obj/item/weapon/poster/legit, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ane" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ang" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anh" = ( -/obj/structure/rack, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ani" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ano" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anp" = ( -/obj/machinery/atmospherics/pipe/manifold, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ans" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ant" = ( -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anv" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"anw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"any" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Courtroom"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anA" = ( -/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"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anE" = ( -/obj/structure/table, -/obj/item/clothing/glasses/monocle, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anF" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/pill/morphine, -/obj/item/weapon/reagent_containers/pill/morphine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anG" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"anN" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"anO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anP" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anQ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anS" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aob" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aoc" = ( -/turf/closed/wall, -/area/security/brig) -"aod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"aoe" = ( -/obj/machinery/camera{ - c_tag = "Cargo North"; - dir = 4; - network = list("perma") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"aof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology North"; - dir = 8; - network = list("perma") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"aog" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoi" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aok" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aol" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aom" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aon" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aoo" = ( -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aop" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aoq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aor" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aos" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/main) -"aot" = ( -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aou" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aov" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/matches, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aow" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 1; - color = "red"; - dir = 1 - }, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aox" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/bag/tray{ - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoy" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/photo_album, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoA" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoC" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoD" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoE" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoG" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"aoH" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"aoJ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Port Engineering Hallway" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"aoK" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northwest"; - dir = 5; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoL" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northeast"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoN" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southwest"; - dir = 4; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoO" = ( -/obj/item/weapon/crowbar, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aoP" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoQ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoR" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoS" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoT" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Detective's Office"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoU" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aoX" = ( -/obj/structure/rack, -/obj/item/weapon/storage/backpack/satchel/sec, -/obj/item/weapon/storage/backpack/security, -/obj/item/weapon/storage/backpack/dufflebag/sec, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aoZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apb" = ( -/obj/machinery/vending/snack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apd" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apf" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"apg" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"aph" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"api" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apl" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apm" = ( -/obj/structure/closet/cardboard, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apn" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"apo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"app" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Detective" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"apr" = ( -/obj/machinery/button/door{ - id = "detshutters"; - name = "Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aps" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apt" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/brig) -"apu" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apv" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"apw" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/outpost) -"apx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apy" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"apC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apD" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apF" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Security Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apM" = ( -/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" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Security Electrical Maintenance APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apP" = ( -/turf/closed/wall, -/area/maintenance/secelectrical) -"apQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"apU" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apW" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/adamantine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apX" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apY" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqa" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "4" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/wirecutters, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqe" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqf" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqi" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aqj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqk" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aql" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqm" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqo" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqu" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqx" = ( -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqA" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"aqB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aqC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aqE" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Northeast" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqG" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqH" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqJ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqL" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqM" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqN" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6; - icon_state = "tracks"; - tag = "icon-tracks (SOUTHWEST)" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqR" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqU" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqY" = ( -/obj/machinery/door/airlock/security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ara" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arb" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"arc" = ( -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/space) -"ard" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ari" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ark" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arl" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arq" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arr" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"ars" = ( -/obj/structure/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"art" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aru" = ( -/obj/structure/closet/cardboard, -/obj/item/clothing/suit/jacket/miljacket, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"arv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arw" = ( -/obj/structure/table, -/obj/item/stack/ducttape, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/gold, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c50, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ary" = ( -/obj/structure/table/wood, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arz" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arA" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arB" = ( -/obj/machinery/camera{ - c_tag = "Detective's Office Backroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"arD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway North"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arN" = ( -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"arO" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod1" - }, -/turf/open/space, -/area/space) -"arP" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod2" - }, -/turf/open/space, -/area/space) -"arQ" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/labor) -"arR" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"arS" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/labor) -"arT" = ( -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/engine/port_engineering) -"arU" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southeast"; - dir = 9; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"arV" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/weapon/crowbar, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Red Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = 22; - pixel_y = -10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"arW" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel, -/area/bridge) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asb" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asc" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"asd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/lawoffice) -"asf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawshutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"asg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ash" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ask" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Dormitory APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aso" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ass" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_1) -"ast" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"asu" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_1) -"asv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_2) -"asw" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_2) -"asx" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_2) -"asy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/labor) -"asz" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"asA" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/stack/cable_coil, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"asB" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"asC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asE" = ( -/obj/structure/closet/crate, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asF" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plating, -/area/engine/port_engineering) -"asG" = ( -/obj/structure/table, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/engineering) -"asH" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"asI" = ( -/obj/structure/table, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"asJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asL" = ( -/obj/structure/sign/atmosplaque{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asM" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/lawoffice) -"asN" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/paicard, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asO" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/orange, -/obj/item/clothing/glasses/gglasses, -/turf/open/floor/wood, -/area/lawoffice) -"asP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/lawoffice) -"asQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asR" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor/carpet, -/area/lawoffice) -"asS" = ( -/turf/open/floor/carpet, -/area/lawoffice) -"asT" = ( -/obj/structure/rack, -/obj/item/weapon/storage/briefcase, -/obj/item/weapon/storage/briefcase, -/turf/open/floor/carpet, -/area/lawoffice) -"asU" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"asV" = ( -/obj/machinery/button/door{ - id = "lawshutters"; - name = "Privacy Shutters"; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"asZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"ata" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ate" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Pool APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"atf" = ( -/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/open/floor/plating, -/area/maintenance/fpmaint2) -"atg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ath" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_1) -"ati" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod1"; - shuttleId = "pod1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_2) -"atk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod2"; - shuttleId = "pod2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atl" = ( -/obj/item/stack/rods, -/turf/open/space, -/area/space) -"atm" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"atn" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ato" = ( -/obj/structure/closet/masks, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atp" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"atr" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"ats" = ( -/obj/effect/decal/cleanable/oil, -/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" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"att" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atu" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atx" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/item/weapon/storage/firstaid/surgery, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"aty" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/morphine, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/storage/firstaid/surgery{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"atz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"atA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atL" = ( -/turf/closed/wall, -/area/maintenance/commiespy) -"atM" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"atN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"atQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/turf/open/floor/carpet, -/area/lawoffice) -"atT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atU" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atV" = ( -/obj/machinery/camera{ - c_tag = "Pool North" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atW" = ( -/obj/structure/closet, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atX" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Law Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/lawoffice) -"atY" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue, -/obj/item/weapon/pen/red, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atZ" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/device/taperecorder, -/turf/open/floor/wood, -/area/lawoffice) -"aua" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/lawoffice) -"aub" = ( -/obj/structure/closet/crate, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/wood, -/area/lawoffice) -"auc" = ( -/obj/structure/closet, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/under/griffin, -/obj/item/clothing/head/griffin, -/obj/item/clothing/shoes/griffin, -/obj/item/clothing/suit/toggle/owlwings/griffinwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/pig, -/obj/item/clothing/head/chicken, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/wood, -/area/lawoffice) -"aud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet, -/area/lawoffice) -"aue" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/law, -/obj/item/weapon/pen/blue, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"auf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/med_data, -/turf/open/floor/carpet, -/area/lawoffice) -"aug" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/lawoffice) -"auh" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/lawoffice) -"aui" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/lawoffice) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (WEST)"; - icon_state = "yellowcornersiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"auk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aul" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aum" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"auo" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aup" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auq" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/open/floor/engine, -/area/gateway) -"aur" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aus" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1351; - name = "Science intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "Supply intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1355; - name = "Medical intercom"; - pixel_x = -27; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"aut" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1353; - name = "Command intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Stronk Russian APC"; - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/soviet, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auw" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aux" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_1) -"auy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod1"; - name = "escape pod 1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"auz" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_1) -"auA" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_2) -"auB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod2"; - name = "escape pod 2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"auC" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_2) -"auD" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/arrival) -"auE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) -"auF" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/arrival) -"auG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auH" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auI" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"auJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"auK" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"auL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Garden APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"auM" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/engine, -/area/gateway) -"auN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"auO" = ( -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auQ" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"auR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_access_txt = list(27,12) - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"auW" = ( -/obj/machinery/gateway, -/turf/open/floor/engine, -/area/gateway) -"auX" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway South"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"auY" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"ava" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avb" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avc" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avd" = ( -/turf/closed/wall, -/area/lawoffice) -"ave" = ( -/turf/closed/wall, -/area/maintenance/fsmaint2) -"avf" = ( -/obj/structure/falsewall, -/turf/open/floor/plating/airless, -/area/maintenance/fsmaint2) -"avg" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1447; - name = "AI Private intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/storage/photo_album, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avi" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/syndie, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avl" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"avm" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avn" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avo" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avp" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"avr" = ( -/obj/machinery/vending/boozeomat{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avs" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avt" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avu" = ( -/obj/machinery/door/window/southright{ - name = "Gateway Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"avv" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avw" = ( -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avx" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/diamond, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avG" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel Office APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/sleeper{ - dir = 4; - icon_state = "sleeper-open" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avL" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/camera{ - c_tag = "Arrivals Infirmary"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avM" = ( -/obj/structure/table/glass, -/obj/item/weapon/cultivator, -/obj/item/weapon/hatchet, -/obj/item/weapon/crowbar, -/obj/item/device/plant_analyzer, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avN" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"avO" = ( -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avP" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avS" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avT" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"avU" = ( -/obj/machinery/door/airlock/external{ - name = "Airlock"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avV" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1357; - name = "Engineering intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avW" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/clothing/tie/stethoscope, -/obj/item/device/camera, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer{ - desc = "These possibly cant be even letters, blyat!"; - name = "Russian computer" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avY" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avZ" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"awa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awb" = ( -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awc" = ( -/obj/item/trash/candy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awe" = ( -/obj/structure/rack, -/obj/item/weapon/gun/projectile/shotgun/toy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 1"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awg" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/arrival) -"awk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"awl" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awn" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awp" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awq" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aws" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"awu" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"awv" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aww" = ( -/obj/effect/landmark/start{ - name = "Mime" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"awx" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/white, -/area/mime) -"awy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/office) -"awA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awB" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/hallway/secondary/entry) -"awC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awE" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"awG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"awI" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"awK" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awP" = ( -/obj/machinery/door/window/northright{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"awQ" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"awS" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/library) -"awT" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/storage/tools) -"awU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"awV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"awW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"awX" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"awY" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"awZ" = ( -/obj/item/weapon/garrote, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"axa" = ( -/obj/machinery/vending/sustenance, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axb" = ( -/obj/machinery/computer/crew, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axc" = ( -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axd" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axe" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axf" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axg" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"axh" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axi" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axj" = ( -/turf/closed/wall/shuttle{ - blocks_air = 6; - dir = 1; - icon_state = "swall13" - }, -/area/shuttle/arrival) -"axk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/arrival) -"axl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"axm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"axo" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axr" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2) -"axs" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axt" = ( -/obj/structure/table/wood, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/rag, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axw" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/bandana/red, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axx" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"axz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axA" = ( -/obj/item/weapon/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axB" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"axC" = ( -/obj/item/weapon/storage/box, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"axD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"axJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axK" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/quartermaster/storage) -"axR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axT" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"axU" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/button/door{ - dir = 2; - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/assembly/robotics) -"axV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axW" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"axX" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axY" = ( -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"axZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency) -"aya" = ( -/turf/open/floor/wood, -/area/lawoffice) -"ayb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency) -"ayc" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency) -"ayd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency) -"aye" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"ayf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ayi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayk" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayl" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aym" = ( -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayn" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayo" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayq" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayr" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"ays" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayv" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayB" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"ayD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayE" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayG" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayL" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayM" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayN" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayP" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayR" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/labor) -"ayS" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"ayT" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/labor) -"ayU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ayZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"aza" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"azc" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/medical) -"azd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aze" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"azf" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"azg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"azi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"azj" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"azk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"azl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"azm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fsmaint2) -"azn" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fsmaint2) -"azo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"azp" = ( -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azq" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"azr" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azt" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azv" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azw" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azx" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark{ - name = "JoinLate" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azA" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azB" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Port Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Fore Port Solar Control"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azD" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azE" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - tag = "icon-manifold (WEST)"; - icon_state = "manifold"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azH" = ( -/obj/item/trash/sosjerky, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azL" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"azM" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azN" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azP" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azQ" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azS" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"azT" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"azU" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azV" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"aAb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAc" = ( -/mob/living/simple_animal/bot/cleanbot{ - desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; - name = "\improper Dumpy"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aAd" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Maint Bar Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"aAj" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "caution" - }, -/area/engine/break_room) -"aAk" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/engine/break_room) -"aAl" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/engine/break_room) -"aAm" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"aAn" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aAo" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aAp" = ( -/obj/machinery/camera{ - c_tag = "Engineering Checkpoint"; - dir = 8; - network = list("perma") - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"aAq" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aAr" = ( -/obj/machinery/the_singularitygen, -/turf/open/floor/plating/airless, -/area/space) -"aAs" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/space) -"aAt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aAu" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAw" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAx" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAy" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aAA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAC" = ( -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aAD" = ( -/obj/structure/table, -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAF" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAH" = ( -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod Hallway"; - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAK" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAL" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aAM" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aAN" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAO" = ( -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"aAP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAR" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAS" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAU" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/under/rank/bartender, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAW" = ( -/turf/closed/wall, -/area/maintenance/fpmaint) -"aAX" = ( -/obj/machinery/poolcontroller, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"aBz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aBA" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBC" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/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 = 32 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBD" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBE" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aBG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBH" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBJ" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aBK" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBL" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aBN" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBP" = ( -/obj/machinery/camera{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHEAST)"; - icon_state = "intact"; - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBS" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBU" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBV" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBW" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBX" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/tile/wood{ - amount = 25 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBY" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBZ" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCc" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aCr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/lawoffice) -"aCt" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCv" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCw" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/fsmaint2) -"aCx" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aCy" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"aCz" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCB" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCD" = ( -/obj/structure/closet, -/obj/item/ammo_box/foambox, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCE" = ( -/obj/structure/lattice, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aCF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCG" = ( -/obj/structure/closet/wardrobe/blue, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCH" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCI" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCL" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCQ" = ( -/obj/structure/bed, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCR" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCT" = ( -/obj/structure/table/wood/poker, -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCV" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDc" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aDd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aDe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aDh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDv" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Starboard Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDx" = ( -/obj/machinery/camera{ - c_tag = "Fore Starboard Solars"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint2) -"aDz" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDD" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aDG" = ( -/obj/structure/closet/wardrobe/pink, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDH" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDJ" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDK" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDP" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDQ" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aDR" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDT" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDU" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDW" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aEd" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEg" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEk" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEl" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aEm" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEA" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aEC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aED" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEE" = ( -/obj/structure/grille, -/obj/effect/landmark{ - name = "Syndicate Breach Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aEI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aEJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEK" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEM" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEN" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/weapon/coin/gold, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEQ" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aER" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aES" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"aET" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEU" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEV" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEW" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aEY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHWEST)"; - icon_state = "intact"; - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFe" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North Maintenance APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFf" = ( -/obj/machinery/monkey_recycler, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFg" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFh" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFs" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/bodybags, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFt" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFA" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFD" = ( -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFG" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFH" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFI" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFJ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFL" = ( -/turf/closed/wall, -/area/crew_quarters/pool) -"aFM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFQ" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"aFR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFS" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFX" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFY" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFZ" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGa" = ( -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGb" = ( -/obj/structure/closet, -/obj/item/weapon/coin/iron, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGc" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fpmaint2) -"aGm" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGo" = ( -/obj/structure/mineral_door/wood, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aGq" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGr" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGs" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGt" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aGw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aGH" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aGI" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aGM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/crew_quarters/sleep) -"aGN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/crew_quarters/sleep) -"aGO" = ( -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGQ" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHb" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHc" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHe" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHf" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHh" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHi" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHj" = ( -/turf/closed/wall, -/area/maintenance/electrical) -"aHk" = ( -/turf/closed/wall, -/area/space) -"aHl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space) -"aHm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHs" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHt" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHu" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aHw" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aHx" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHy" = ( -/obj/structure/chair/withwheels/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aHz" = ( -/obj/structure/closet/crate, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHA" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHB" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHC" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHE" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aHN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aHO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aHP" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHS" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aHV" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHW" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/toy/carpplushie, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aHZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding"; - icon_state = "yellowcornersiding" - }, -/area/crew_quarters/pool) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aIg" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIh" = ( -/obj/structure/table, -/obj/item/weapon/shard, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/shard{ - icon_state = "small" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIi" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIj" = ( -/obj/machinery/button/door{ - id = "maint3"; - name = "Blast Door Control C"; - pixel_x = 0; - pixel_y = 24; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIk" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIl" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIm" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10; - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIn" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIo" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIp" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/maintenance/electrical) -"aIq" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/maintenance/electrical) -"aIr" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aIs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIx" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space) -"aIy" = ( -/turf/open/floor/plating/airless, -/area/space) -"aIz" = ( -/obj/item/weapon/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/space) -"aIA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIB" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIC" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aID" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIF" = ( -/obj/machinery/button/door{ - id = "hobodorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIH" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aII" = ( -/obj/machinery/button/door{ - id = "hobodorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/fpmaint) -"aIJ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIN" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aIP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aIU" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIV" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aIX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIY" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aIZ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/poolfilter{ - pixel_y = 11 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aJb" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Holodeck" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJf" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJh" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJn" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJo" = ( -/turf/open/floor/plating, -/area/maintenance/electrical) -"aJp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aJt" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/arrival) -"aJu" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aJv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/arrival) -"aJx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJA" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJB" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJC" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/circuitboard/computer/operating, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJD" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/chair, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJF" = ( -/obj/item/weapon/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/space, -/area/space) -"aJG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJI" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm1"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aJK" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/item/weapon/bedsheet/brown, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aJL" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/weapon/bedsheet/orange, -/turf/open/floor/plasteel, -/area/maintenance/fpmaint) -"aJM" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/fpmaint) -"aJN" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm2"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJX" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aJY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aKa" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKb" = ( -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Dormitory North" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aKi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aKj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aKk" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/toy/poolnoodle/blue, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKl" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aKn" = ( -/obj/machinery/computer/holodeck, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKo" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aKs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKu" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKx" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/weapon/surgical_drapes, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKz" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"aKA" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKF" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKK" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKQ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKV" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"aKW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLb" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLe" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLf" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLg" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLh" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLi" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aLm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aLn" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/ladder, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLo" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/drain, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLp" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/Lboard, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLr" = ( -/obj/structure/table, -/obj/item/weapon/paper{ - desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aLs" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLt" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLu" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLw" = ( -/obj/machinery/button/door{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_x = -28; - pixel_y = 4; - req_access_txt = "0" - }, -/obj/machinery/button/door{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -28; - pixel_y = -6; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLx" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLy" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLz" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLI" = ( -/obj/structure/table, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aLL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-West"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLP" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLQ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-East"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLY" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLZ" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMa" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/bag/trash, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aMc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMs" = ( -/obj/structure/closet/crate/rcd, -/obj/machinery/camera/motion{ - c_tag = "EVA Motion Sensor"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/hand_labeler, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/item/clothing/head/welding, -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Storage APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMw" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/device/radio/off, -/obj/item/device/assembly/timer, -/obj/structure/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMx" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMy" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMz" = ( -/obj/item/device/aicard, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMB" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMC" = ( -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aME" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aMF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMG" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMI" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/violin, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMJ" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMK" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aML" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aMP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNb" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNc" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNd" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNi" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNj" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNk" = ( -/obj/structure/table/glass, -/obj/item/weapon/hemostat, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNl" = ( -/obj/structure/table/glass, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aNy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aNz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNA" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"aNC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aND" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNE" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNG" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/assembly/signaler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNH" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aNI" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aNK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aNQ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/clothing/under/shorts/red, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aNR" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOg" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOh" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOi" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aOl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOm" = ( -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aOn" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOo" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOp" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aOs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aOu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aOv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aOw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOy" = ( -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOD" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOH" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/patriot, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aOK" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/open/floor/engine, -/area/gateway) -"aOM" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/open/floor/engine, -/area/gateway) -"aON" = ( -/turf/open/floor/engine, -/area/gateway) -"aOO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOY" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aOZ" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aPa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 2 - }, -/area/crew_quarters/sleep) -"aPb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPe" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPf" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/toilet) -"aPi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPr" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPs" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPv" = ( -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPx" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPy" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aPA" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPB" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/space) -"aPD" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPE" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPF" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/security/checkpoint2) -"aPG" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPI" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint2) -"aPJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aPK" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPQ" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPT" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPV" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPY" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/primary) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQb" = ( -/obj/structure/bed/dogbed, -/obj/item/weapon/reagent_containers/food/drinks/flask/det{ - desc = "A Space Veteran's only friend."; - name = "space veteran's flask" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQc" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aQe" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/open/floor/engine, -/area/gateway) -"aQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/gateway) -"aQg" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aQh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aQi" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQj" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aQv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQw" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aQx" = ( -/turf/closed/wall, -/area/crew_quarters/toilet) -"aQy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aQA" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/table/glass, -/obj/item/clothing/under/shorts/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQD" = ( -/obj/machinery/camera{ - c_tag = "Pool South"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQH" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQI" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/bruise_pack, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/crew_quarters/pool) -"aQJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aQL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQN" = ( -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aQS" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/security/checkpoint2) -"aQT" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQW" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQX" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint2) -"aQY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRe" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRf" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRj" = ( -/turf/closed/wall, -/area/storage/primary) -"aRk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/primary) -"aRn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRo" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/turf/open/floor/engine, -/area/gateway) -"aRq" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"aRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aRs" = ( -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRv" = ( -/obj/item/weapon/pen{ - desc = "Writes upside down!"; - name = "astronaut pen" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRx" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRy" = ( -/obj/machinery/camera{ - c_tag = "EVA East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aRA" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aRB" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRD" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRI" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aRM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRO" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aRP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRT" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/weapon/lighter, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 8; - pixel_y = 9; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSf" = ( -/turf/closed/wall, -/area/chapel/main) -"aSg" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSh" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/chapel/main) -"aSi" = ( -/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 = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/chapel/main) -"aSj" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/turf/open/floor/plating, -/area/chapel/main) -"aSm" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSo" = ( -/turf/closed/wall, -/area/security/checkpoint2) -"aSp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSq" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSA" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSB" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSC" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSE" = ( -/obj/structure/table, -/obj/item/weapon/wirecutters, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSF" = ( -/obj/structure/table, -/obj/item/device/t_scanner, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSG" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSH" = ( -/obj/structure/table, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/item/device/multitool, -/obj/item/device/multitool{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSL" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSM" = ( -/turf/closed/wall, -/area/mime) -"aSO" = ( -/turf/closed/wall, -/area/clown) -"aSP" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSS" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aST" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSU" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aTa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Command EVA"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aTc" = ( -/obj/machinery/door/airlock/command{ - name = "Command EVA"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aTg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTj" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTm" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTn" = ( -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTo" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage" - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aTr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j1s"; - sortType = 18 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTu" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTw" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/chapel/main) -"aTF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aTH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTM" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTN" = ( -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/main) -"aTP" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aTS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTT" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Green Arrivals"; - name = "Nothing To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTU" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTV" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTW" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTX" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTZ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aUa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aUb" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aUj" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/plants{ - lootcount = 10; - name = "10plant_spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUk" = ( -/obj/machinery/door/airlock{ - name = "Garden"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUl" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aUm" = ( -/obj/machinery/camera{ - c_tag = "Mime Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/mime, -/turf/open/floor/plasteel/black, -/area/mime) -"aUn" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aUo" = ( -/obj/item/weapon/bedsheet/mime, -/obj/structure/bed, -/turf/open/floor/plasteel/black, -/area/mime) -"aUp" = ( -/obj/machinery/camera{ - c_tag = "Clown Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/clown, -/turf/open/floor/plasteel/green, -/area/clown) -"aUq" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aUr" = ( -/obj/item/weapon/bedsheet/clown, -/obj/structure/bed, -/turf/open/floor/plasteel/green, -/area/clown) -"aUs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUt" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUu" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/gateway) -"aUw" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper/pamphlet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUA" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUD" = ( -/obj/machinery/camera{ - c_tag = "Dormitory South"; - c_tag_order = 999; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aUF" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUK" = ( -/obj/structure/dresser, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUM" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUS" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUZ" = ( -/turf/closed/wall, -/area/library) -"aVa" = ( -/turf/closed/wall, -/area/chapel/office) -"aVc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aVd" = ( -/obj/structure/falsewall, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aVe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVg" = ( -/obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVh" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVi" = ( -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"aVk" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals No-Declare Lane"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aVl" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aVn" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Green Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = -22; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVo" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVq" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aVr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aVs" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals Declare Lane"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"aVQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mime Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/mime) -"aVR" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVS" = ( -/obj/effect/landmark/start{ - name = "Clown" - }, -/turf/open/floor/plasteel/green, -/area/clown) -"aVT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVX" = ( -/turf/open/floor/plasteel, -/area/gateway) -"aVY" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aWa" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWb" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWc" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/storage/eva) -"aWe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWh" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWi" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWk" = ( -/obj/structure/toilet{ - tag = "icon-toilet00 (WEST)"; - icon_state = "toilet00"; - dir = 8 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWl" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/weapon/lipstick/random, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWm" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWn" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWr" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aWJ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - sortType = 17 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/library) -"aWM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"aWN" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/library) -"aWO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/wood, -/area/library) -"aWP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/library) -"aWR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"aWS" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWU" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWV" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWW" = ( -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWX" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aWY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXb" = ( -/turf/open/floor/carpet, -/area/chapel/main) -"aXc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aXd" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aXe" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXf" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, -/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXg" = ( -/obj/effect/landmark{ - name = "Marauder Entry" - }, -/turf/open/space, -/area/space) -"aXh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXm" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXn" = ( -/obj/item/weapon/reagent_containers/spray/plantbgone, -/obj/item/weapon/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXo" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXq" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/obj/item/weapon/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXr" = ( -/obj/structure/window, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/black, -/area/mime) -"aXs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aXt" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/frame/computer{ - anchored = 1; - desc = "What, you can't see the screen?"; - name = "Mime's Computer" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"aXu" = ( -/obj/structure/reagent_dispensers/honk_cooler, -/turf/open/floor/plasteel/green, -/area/clown) -"aXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aXw" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/obj/item/weapon/bikehorn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aXx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Clown Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/clown) -"aXy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aXz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aXA" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel, -/area/gateway) -"aXB" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aXC" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aXK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aXL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXM" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXO" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXP" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXQ" = ( -/obj/structure/closet, -/obj/item/weapon/dnainjector/smilemut, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXR" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXU" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Bar APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXY" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/bar) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aYa" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYj" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hydroponics) -"aYk" = ( -/turf/closed/wall, -/area/hydroponics) -"aYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hydroponics) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYn" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/library) -"aYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library) -"aYp" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/camera{ - c_tag = "Library North"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/library) -"aYu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aYv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYw" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYx" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/office) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYD" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYE" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aYF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aYG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYJ" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aYN" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aYO" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYQ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Lounge"; - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYS" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYT" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYU" = ( -/obj/structure/table/glass, -/obj/item/weapon/hatchet, -/obj/item/weapon/cultivator, -/obj/item/weapon/crowbar, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYV" = ( -/obj/item/weapon/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/device/plant_analyzer, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYW" = ( -/obj/structure/table, -/obj/item/weapon/wrench, -/obj/item/device/analyzer, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYY" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZb" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/storage/primary) -"aZc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/storage/primary) -"aZd" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZe" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/mime) -"aZg" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/mime) -"aZh" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aZj" = ( -/obj/structure/statue/bananium/clown, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"aZk" = ( -/obj/machinery/button/door{ - dir = 2; - id = "gateway_shutters"; - name = "Gateway Access Button"; - pixel_x = 0; - pixel_y = -27; - req_access_txt = "47" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aZl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZm" = ( -/obj/machinery/camera{ - c_tag = "EVA South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZn" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aZp" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZs" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZt" = ( -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 40; - tag = "icon-direction_sec (NORTH)" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = 32; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 24; - tag = "icon-direction_evac (EAST)" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZu" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZv" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZw" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aZx" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"aZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/primary/central) -"aZz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"aZA" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZB" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZD" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aZF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aZG" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aZH" = ( -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/gun/projectile/revolver/doublebarrel, -/obj/structure/table/wood, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZJ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZK" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/bar) -"aZL" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZO" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/kitchen) -"aZP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/hydroponics) -"aZQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"aZR" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZS" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/paper/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/library) -"aZU" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aZV" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"aZW" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"aZX" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"aZY" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/library) -"baa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bab" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bac" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bad" = ( -/obj/structure/table/wood, -/obj/item/weapon/nullrod, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bae" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"baf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"bah" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bai" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bal" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"ban" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bao" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bap" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"baq" = ( -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bar" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bas" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bat" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bau" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"baw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"bax" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bay" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/mime) -"baz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/freezer{ - desc = "..."; - name = "Mime Office"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"baA" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/mime) -"baB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"baC" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/clown) -"baD" = ( -/obj/machinery/door/airlock/clown{ - name = "Clown Office"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"baE" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/clown) -"baF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baG" = ( -/obj/machinery/door/airlock/research{ - name = "Gateway Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/gateway) -"baJ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baL" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"baM" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"baN" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/lipstick, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baQ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baR" = ( -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baS" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Theatre Stage"; - dir = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baX" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baZ" = ( -/obj/machinery/camera{ - c_tag = "Bar Storage" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bba" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bbb" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbe" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/kitchen) -"bbf" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hydroponics) -"bbg" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbi" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbj" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbk" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbm" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/weapon/watertank, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbn" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/library) -"bbo" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bbp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/library) -"bbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbD" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bbE" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbF" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbH" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbL" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - name = "Port Hall APC"; - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcd" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bce" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-West"; - dir = 2 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bch" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bci" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bcj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bck" = ( -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"bcl" = ( -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"bcm" = ( -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"bcn" = ( -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"bco" = ( -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"bcp" = ( -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"bcq" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L13"; - name = "floor" - }, -/area/hallway/primary/central) -"bcr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bct" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bcv" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcw" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-East"; - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcz" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcA" = ( -/obj/structure/piano, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcG" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcI" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcL" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcM" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/wrench, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/wirecutters, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcT" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcU" = ( -/turf/open/floor/wood, -/area/library) -"bcV" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library) -"bcW" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bcY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bcZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"bda" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdb" = ( -/obj/machinery/light, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdc" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdd" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bde" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdf" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdg" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdk" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint South" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdn" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bdo" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdp" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdq" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdr" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bds" = ( -/turf/open/floor/goonplaque, -/area/hallway/secondary/entry) -"bdt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdK" = ( -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"bdL" = ( -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"bdM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"bdN" = ( -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"bdO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"bdP" = ( -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"bdQ" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L14" - }, -/area/hallway/primary/central) -"bdR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdU" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdX" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdY" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bea" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"beb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bec" = ( -/obj/machinery/vending/coffee, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bed" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bef" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics) -"bei" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"bej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bek" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/library) -"bel" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bem" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/library) -"beo" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bep" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"beq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"ber" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bes" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bet" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"beu" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bev" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bew" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bex" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0; - verted = -1 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bey" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Red Arrivals"; - name = "Items to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bez" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0; - verted = -1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"beA" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"beB" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beC" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beD" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beI" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 3"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beJ" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beK" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beP" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beY" = ( -/obj/structure/sign/directions/security{ - dir = 4; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_sec (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfd" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfe" = ( -/obj/machinery/light, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bff" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfi" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bfj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bfk" = ( -/obj/structure/closet/chefcloset, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfn" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfo" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfp" = ( -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfq" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/camera{ - c_tag = "Hydroponics North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bft" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfu" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/turf/open/floor/wood, -/area/library) -"bfv" = ( -/turf/open/floor/carpet, -/area/library) -"bfw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/library) -"bfx" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/turf/open/floor/wood, -/area/library) -"bfy" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bfA" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfB" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/device/camera, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfC" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfD" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bfE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfI" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Escape Arm Holding Area"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/hallway/secondary/exit) -"bfJ" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfK" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/exit) -"bfO" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bfP" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bfQ" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"bfR" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"bfS" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bfV" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bfW" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bga" = ( -/turf/closed/wall, -/area/maintenance/port) -"bgb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bgc" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"bgd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bge" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bgf" = ( -/turf/closed/wall, -/area/storage/art) -"bgg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/art) -"bgh" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/art) -"bgj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bgk" = ( -/turf/closed/wall, -/area/storage/emergency2) -"bgl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgm" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgq" = ( -/turf/closed/wall, -/area/storage/tools) -"bgr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bgt" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bgu" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgv" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgw" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgx" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgy" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgz" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgD" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgE" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgH" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bgI" = ( -/obj/machinery/door/airlock{ - name = "Kitchen cold room"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hydroponics) -"bgK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bgL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hydroponics) -"bgM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bgN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"bgO" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgP" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgQ" = ( -/obj/structure/cult/tome, -/obj/item/clothing/under/suit_jacket/red, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgR" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgS" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgV" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/hallway/secondary/exit) -"bgW" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgZ" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/exit) -"bha" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bhb" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhc" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhd" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhj" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bhk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bhl" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bho" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhp" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhs" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bht" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhv" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"bhx" = ( -/turf/open/floor/plasteel, -/area/storage/art) -"bhy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bhz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bhA" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bhB" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bhD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/turf/open/floor/plasteel, -/area/bridge) -"bhF" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/bridge) -"bhG" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/bridge) -"bhH" = ( -/obj/machinery/computer/monitor{ - name = "bridge power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/bridge) -"bhI" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bhJ" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bhK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bhL" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/bridge) -"bhM" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "green" - }, -/area/bridge) -"bhN" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/bridge) -"bhO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/wrench, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/bridge) -"bhP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhR" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhS" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhU" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhV" = ( -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhX" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhY" = ( -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bhZ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bia" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bib" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bic" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 2 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bid" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bie" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bif" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"big" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bih" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bij" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"bik" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bil" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bim" = ( -/obj/machinery/camera{ - c_tag = "Library South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/library) -"bin" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bio" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bip" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"biq" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bir" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bis" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bit" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"biu" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"biA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biD" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway Central"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"biI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biK" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biL" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biN" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biO" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"biP" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biQ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biR" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"biS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency2) -"biT" = ( -/turf/open/floor/plating, -/area/storage/emergency2) -"biU" = ( -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency2) -"biV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 24 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biY" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bja" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tools) -"bjc" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjd" = ( -/obj/structure/chair{ - dir = 1; - name = "Engineering Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bje" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjf" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/bridge) -"bjg" = ( -/obj/structure/chair{ - dir = 1; - name = "Command Station" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/keycard_auth{ - pixel_x = 29; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjh" = ( -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/bridge) -"bji" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/bridge) -"bjj" = ( -/obj/structure/chair{ - dir = 1; - name = "Crew Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/bridge) -"bjl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/bridge) -"bjm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Diner" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bjn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjr" = ( -/obj/item/stack/spacecash/c10{ - amount = 10 - }, -/obj/item/stack/spacecash/c100{ - amount = 5 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjs" = ( -/mob/living/carbon/monkey{ - name = "Pun Pun"; - real_name = "Pun Pun"; - unique_name = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjt" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bju" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjv" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjA" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bjB" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bjC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bjD" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bjH" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"bjI" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/library) -"bjJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjK" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjP" = ( -/obj/machinery/vending/cola, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bjQ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjU" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/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 = 32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjV" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 9; - height = 11; - id = "emergency_home"; - name = "emergency evac bay"; - width = 22 - }, -/turf/open/space, -/area/space) -"bjX" = ( -/turf/closed/wall/r_wall, -/area/rec_room) -"bjY" = ( -/turf/closed/wall, -/area/rec_room) -"bjZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/rec_room) -"bka" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bkb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkc" = ( -/turf/closed/wall, -/area/security/vacantoffice) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bke" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bkf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkh" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bki" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkj" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkk" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkm" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bko" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkp" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkq" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/turf/open/floor/plasteel, -/area/storage/art) -"bkr" = ( -/obj/structure/table, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bks" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bkt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency2) -"bku" = ( -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkv" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkw" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bky" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkA" = ( -/turf/open/floor/plasteel, -/area/storage/tools) -"bkB" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkC" = ( -/turf/closed/wall, -/area/bridge) -"bkD" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/bridge) -"bkE" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/bridge) -"bkF" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/bridge) -"bkG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/bridge) -"bkH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkI" = ( -/turf/open/floor/plasteel, -/area/bridge) -"bkJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/bridge) -"bkL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/bridge) -"bkM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/bridge) -"bkO" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/bridge) -"bkP" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/bridge) -"bkQ" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/bridge) -"bkR" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Bar West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkS" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkT" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkU" = ( -/obj/item/clothing/head/that{ - throwforce = 1; - throwing = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkV" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkW" = ( -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 8; - network = list("SS13") - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkX" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkY" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkZ" = ( -/obj/structure/table, -/obj/item/weapon/kitchen/rollingpin, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bla" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/chef_recipes, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/crew_quarters/kitchen) -"bld" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/hydroponics) -"ble" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"blf" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/hydroponics) -"blg" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"blh" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bli" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"blj" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/open/floor/wood, -/area/library) -"blk" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/library) -"blm" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/wood, -/area/library) -"bln" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/library) -"blo" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"blp" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"blq" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blr" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bls" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blt" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"blu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bly" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Recreation Room APC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"blz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/carpet, -/area/rec_room) -"blA" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/rec_room) -"blB" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/hallway/secondary/entry) -"blC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blE" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/hallway/secondary/entry) -"blF" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) -"blG" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blH" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blI" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blJ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blN" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/requests_console{ - department = "Locker Room"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blR" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blS" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blT" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blU" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blY" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bma" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmb" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bmc" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmd" = ( -/obj/machinery/camera{ - c_tag = "Bridge West"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/bridge) -"bme" = ( -/obj/structure/chair{ - dir = 1; - name = "Security Station" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/bridge) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bmi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bml" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmn" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/bridge) -"bmq" = ( -/obj/structure/chair{ - dir = 1; - name = "Logistics Station" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmr" = ( -/obj/machinery/camera{ - c_tag = "Bridge East"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/bridge) -"bms" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmu" = ( -/obj/machinery/camera{ - c_tag = "Bridge East Entrance"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmv" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bmw" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bmx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/weapon/reagent_containers/food/snacks/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar"; - name = "Bar Shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmy" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmz" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmA" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmC" = ( -/obj/machinery/processor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmE" = ( -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"bmH" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper, -/turf/open/floor/wood, -/area/library) -"bmI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bmK" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"bmL" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/library) -"bmM" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/library) -"bmN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bmO" = ( -/obj/machinery/camera{ - c_tag = "Chapel South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bmP" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bmR" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmS" = ( -/obj/machinery/door/window/northright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmT" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmU" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmV" = ( -/turf/open/floor/carpet, -/area/rec_room) -"bmW" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/rec_room) -"bmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmZ" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/rec_room) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bnb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnd" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bne" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bnf" = ( -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bng" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bni" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnj" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnk" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bnl" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnn" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnq" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bns" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Art Storage"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bny" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bnA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bnC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bnD" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port) -"bnE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"bnJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bnL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bnN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/bridge) -"bnQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnR" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnS" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnT" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnV" = ( -/obj/machinery/turretid{ - control_area = "AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Center"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnX" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnY" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Bridge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/bridge) -"boa" = ( -/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; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bob" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"boc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"boe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bof" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bog" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bok" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bol" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bom" = ( -/obj/item/weapon/lighter, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bon" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boo" = ( -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bop" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"boq" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bor" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 16 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bov" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bow" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"box" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"boy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/library) -"boz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"boC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"boF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"boH" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boI" = ( -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boK" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boL" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boN" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/wood, -/area/rec_room) -"boP" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/rec_room) -"boQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/bikehorn/airhorn, -/turf/open/floor/wood, -/area/rec_room) -"boR" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boS" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boT" = ( -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"boU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"boW" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"boZ" = ( -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"bpe" = ( -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpg" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bph" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpk" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/crew_quarters/locker) -"bpl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/crew_quarters/locker) -"bpn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpo" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Locker Room Maintenance APC"; - pixel_x = -27; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tools) -"bpz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/storage/tools) -"bpA" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpC" = ( -/obj/machinery/camera{ - c_tag = "Bridge West Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpD" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/hallway/primary/central) -"bpE" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bpF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bpG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpI" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bpK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_closed"; - locked = 0; - name = "AI Upload Access"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bpO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpP" = ( -/obj/machinery/ai_status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bpT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpU" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/hallway/primary/central) -"bpV" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Central Hall APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpX" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bpY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bpZ" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/button/door{ - id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqd" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqe" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bqf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/hydroponics) -"bqi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/library) -"bqn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/library) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqw" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "Scaley."; - name = "Robusts-Many-Faces" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bqx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqy" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/rec_room) -"bqz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/rec_room) -"bqA" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder/empty, -/turf/open/floor/wood, -/area/rec_room) -"bqB" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bqC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bqD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bqF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqH" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bqJ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqM" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqO" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqQ" = ( -/obj/structure/table, -/obj/item/weapon/razor, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqR" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqS" = ( -/obj/structure/closet, -/obj/item/clothing/under/suit_jacket/female{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/under/suit_jacket/really_black{ - pixel_x = -2; - pixel_y = 0 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqT" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bqW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqZ" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"brb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"brc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brg" = ( -/turf/closed/wall, -/area/quartermaster/office) -"brh" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bri" = ( -/turf/closed/wall/r_wall, -/area/bridge/meeting_room) -"brj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/bridge/meeting_room) -"brk" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = null; - req_access_txt = "19" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"brl" = ( -/turf/closed/wall, -/area/bridge/meeting_room) -"brm" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brn" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bro" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brp" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brq" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brr" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bru" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brv" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brw" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brx" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bry" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brz" = ( -/obj/machinery/camera{ - c_tag = "Bar South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brA" = ( -/obj/structure/noticeboard{ - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brB" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brC" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brE" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"brF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brH" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"brJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brM" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brO" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/library) -"brP" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/library) -"brQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"brS" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"brT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/library) -"brU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brV" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"brW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Escape shuttle Hallway"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"brY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"brZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsa" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsb" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsc" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bsd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bse" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bsf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bsg" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsh" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsi" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/crew_quarters/locker/locker_toilet) -"bsl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bso" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/stock_parts/cell{ - maxcharge = 2000 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsr" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bss" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/office) -"bst" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsu" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsv" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/office) -"bsw" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsx" = ( -/obj/machinery/button/door{ - id = "heads_meeting"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsy" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsz" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Conference Room"; - dir = 2 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsA" = ( -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsB" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsF" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/reset, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsH" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsI" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsN" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsP" = ( -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsQ" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsR" = ( -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsS" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bsT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsU" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsW" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/library) -"bsX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"bsY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bta" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btb" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "A Lizard Wizard!"; - name = "Merlin" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btc" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btd" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bte" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-l"; - icon_state = "stairs-l" - }, -/area/hallway/secondary/entry) -"btf" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"bth" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-stairs-r"; - icon_state = "stairs-r" - }, -/area/hallway/secondary/entry) -"bti" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Vacant Office APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/vacantoffice) -"btj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"btk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"btl" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btn" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bto" = ( -/obj/machinery/washing_machine, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btq" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btr" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"bts" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"btu" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"btv" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 5 - }, -/area/quartermaster/office) -"btw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btx" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bty" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btA" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btD" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btE" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btF" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btG" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/freeform, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload East"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btK" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btL" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btM" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btN" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btP" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 28; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 36; - tag = "icon-direction_sec (NORTH)" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btQ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btR" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btU" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btZ" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"buc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bud" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bue" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buf" = ( -/obj/structure/window, -/obj/structure/flora/ausbushes, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bug" = ( -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buh" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bui" = ( -/obj/structure/window, -/obj/machinery/vending/cola, -/turf/open/floor/carpet, -/area/rec_room) -"buj" = ( -/obj/structure/window, -/obj/machinery/vending/snack, -/turf/open/floor/carpet, -/area/rec_room) -"buk" = ( -/obj/structure/window, -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/carpet, -/area/rec_room) -"bul" = ( -/obj/structure/window, -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/rec_room) -"bum" = ( -/obj/structure/window, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/rec_room) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bup" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bur" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bus" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"but" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"buv" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"buy" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"buB" = ( -/obj/machinery/camera{ - c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"buC" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buD" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"buH" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"buI" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"buK" = ( -/obj/item/weapon/hand_labeler, -/obj/item/device/assembly/timer, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buL" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buM" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buN" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buO" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buQ" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"buS" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai_upload) -"buT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"buU" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"buV" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"buW" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"buX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bva" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bve" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvn" = ( -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bvo" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/turf/open/floor/carpet, -/area/rec_room) -"bvp" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/rec_room) -"bvq" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/rec_room) -"bvr" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"bvu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bvw" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvx" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvy" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port) -"bvz" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/item/clothing/suit/ianshirt, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker) -"bvB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bvC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvE" = ( -/obj/structure/closet/crate, -/obj/machinery/doorButtons, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvF" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvG" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvI" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bvJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bvM" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvN" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvO" = ( -/obj/item/weapon/folder/blue, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvQ" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/core/full/asimov, -/obj/item/weapon/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/corp, -/obj/item/weapon/aiModule/core/full/paladin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/aiModule/core/full/robocop, -/obj/item/weapon/aiModule/core/full/custom, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvR" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvS" = ( -/obj/machinery/computer/upload/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvT" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Upload APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvU" = ( -/obj/machinery/computer/upload/borg, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvW" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/oxygen, -/obj/item/weapon/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/weapon/aiModule/reset/purge, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/antimov, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/aiModule/supplied/protectStation, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwd" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/item/weapon/storage/lockbox/medal{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bwf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwg" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/science{ - dir = 4; - icon_state = "direction_sci"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_sci (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwi" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwj" = ( -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwl" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/hallway/primary/starboard) -"bwo" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwq" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bws" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwv" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bww" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/exit) -"bwx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwy" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bwA" = ( -/obj/machinery/camera{ - c_tag = "Escape Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwC" = ( -/obj/structure/easel, -/turf/open/floor/carpet, -/area/rec_room) -"bwD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwG" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/rec_room) -"bwH" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwI" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Recreation Room"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwK" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bwL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwM" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwN" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwO" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage"; - verted = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwU" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwV" = ( -/obj/machinery/camera{ - c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Locker Room APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bwX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bxa" = ( -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxb" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxc" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxd" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bxf" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bxg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxj" = ( -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxn" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxr" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxs" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxv" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxw" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxx" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxy" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxA" = ( -/obj/structure/table/wood, -/obj/item/weapon/pinpointer, -/obj/item/weapon/disk/nuclear, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxB" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bxC" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/medbay) -"bxD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bxE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxF" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxG" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bxH" = ( -/turf/closed/wall, -/area/medical/morgue) -"bxI" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bxJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxL" = ( -/turf/closed/wall, -/area/storage/emergency) -"bxM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/assembly/chargebay) -"bxO" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "loadingarea" - }, -/area/hallway/primary/starboard) -"bxP" = ( -/turf/closed/wall/r_wall, -/area/assembly/robotics) -"bxR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxS" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxT" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxU" = ( -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxV" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxX" = ( -/turf/closed/wall/r_wall, -/area/toxins/lab) -"bxY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bxZ" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bya" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byc" = ( -/obj/structure/easel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"byd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/rec_room) -"bye" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"byf" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byg" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byh" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/plants, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"byk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Disposal APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byo" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bys" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"byw" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byz" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/storage) -"byB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/office) -"byC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"byE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"byF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"byG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"byH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"byI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway West"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"byK" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Bridge Delivery"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/bridge/meeting_room) -"byL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byM" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"byQ" = ( -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byS" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"byV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Captain" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byW" = ( -/obj/machinery/computer/communications, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byX" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/coin/plasma, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byZ" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/camera, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bza" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzb" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Chemistry APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzd" = ( -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bze" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzf" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzg" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzh" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bzl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26; - req_access_txt = "5" - }, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/medical) -"bzm" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/medical) -"bzn" = ( -/obj/structure/filingcabinet, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/medical) -"bzo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzp" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzu" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bzv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bzw" = ( -/turf/closed/wall, -/area/assembly/chargebay) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bzy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/assembly/chargebay) -"bzz" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzA" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzB" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzC" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - closingLayer = 3.2; - dir = 2; - icon_state = "left"; - layer = 3.2; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzE" = ( -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"bzF" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bzG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bzH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - closingLayer = 3.2; - layer = 3.2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "rnd"; - name = "research lab shutters" - }, -/turf/open/floor/plating, -/area/toxins/lab) -"bzI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bzL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bzM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bzN" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bzP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/rec_room) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzS" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzV" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage"; - verted = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bAh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"bAj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAk" = ( -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/quartermaster/office) -"bAl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bAo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bAp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bAs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bAt" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/bridge/meeting_room) -"bAu" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bAv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/maintcentral) -"bAw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = -28 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAA" = ( -/obj/machinery/computer/card, -/obj/item/weapon/card/id/captains_spare, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAB" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/weapon/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAC" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAE" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bAG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bAJ" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bAK" = ( -/obj/machinery/computer/secure_data, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bAL" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAO" = ( -/turf/open/floor/plating, -/area/storage/emergency) -"bAP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency) -"bAQ" = ( -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency) -"bAR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bAS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAT" = ( -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAU" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/assembly/chargebay) -"bAV" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/chargebay) -"bAW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAY" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bBa" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBc" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBf" = ( -/obj/machinery/camera{ - c_tag = "Research Division Access"; - dir = 2; - network = list("SS13") - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/research{ - name = "Research Division" - }) -"bBg" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBh" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBi" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/button/door{ - dir = 2; - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/toxins/lab) -"bBj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bBl" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/secondary/entry) -"bBs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - density = 0; - dir = 4; - icon_state = "rightopen"; - layer = 3 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bBw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBy" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBz" = ( -/obj/machinery/mineral/stacking_unit_console{ - dir = 2; - machinedir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bBA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBB" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBH" = ( -/obj/structure/table, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBI" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBK" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBL" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBO" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = 24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBP" = ( -/obj/machinery/photocopier, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bBT" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bridge Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBV" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBW" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBY" = ( -/obj/structure/closet/secure_closet/freezer/money, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bBZ" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCc" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/folder/documents, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bCd" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCe" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCi" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCl" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bCm" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bCn" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCs" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bCT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bCU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCX" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDb" = ( -/turf/closed/wall, -/area/maintenance/asmaint2) -"bDc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 12; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space, -/area/space) -"bDd" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bDe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bDg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"bDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDk" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDl" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage"; - layer = 2.5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - layer = 3; - name = "disposal exit vent" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bDn" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bDt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDy" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDB" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDF" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"bDG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Head of Personnel APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bDL" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Conference Room APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bDN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Confrence Room South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bDO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bDQ" = ( -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDR" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bDS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bDU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"bDW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bDX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bDY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bEf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEg" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEi" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bEl" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bEm" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bEn" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/assembly/chargebay) -"bEo" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bEp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bEs" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEu" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEw" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bEy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEA" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEB" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEC" = ( -/obj/machinery/r_n_d/protolathe, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bEE" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEF" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEJ" = ( -/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 = 32 - }, -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bEL" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEM" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEO" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bER" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bES" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bET" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEW" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/port) -"bEY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bEZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bFa" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFf" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bFh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bFi" = ( -/obj/machinery/status_display{ - density = 0; - pixel_y = 2; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/office) -"bFj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bFl" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bFm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bFn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bFp" = ( -/turf/closed/wall, -/area/crew_quarters/heads) -"bFq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads) -"bFr" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads) -"bFs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads) -"bFt" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/champion, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bFu" = ( -/obj/item/weapon/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/weapon/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bFv" = ( -/turf/closed/wall, -/area/crew_quarters/captain) -"bFw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFz" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFA" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFE" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFH" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFI" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFJ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFK" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - req_access_txt = "5" - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFM" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/medical) -"bFP" = ( -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/medical) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"bFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bFY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bGf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bGg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/robotics) -"bGi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bGj" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGl" = ( -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGm" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bGn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGo" = ( -/obj/machinery/computer/rdconsole/core, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGp" = ( -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGq" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bGs" = ( -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bGz" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bGA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGB" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 3 & 4"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bGE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal) -"bGF" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - icon_state = "switch-rev"; - id = "garbage"; - name = "disposal coveyor"; - position = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGG" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGH" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGI" = ( -/obj/structure/closet, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGJ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGO" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bGQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGS" = ( -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGT" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGU" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGV" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGW" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bGX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bGY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGZ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/central) -"bHa" = ( -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 36 - }, -/obj/machinery/pdapainter, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bHb" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHc" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bed/dogbed{ - anchored = 1; - desc = "Ian's bed! Looks comfy."; - name = "Ian's bed" - }, -/mob/living/simple_animal/pet/dog/corgi/Ian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHf" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bHg" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bHh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault" - }, -/area/ai_monitored/nuke_storage) -"bHi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"bHj" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/gun/projectile/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bHk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bHl" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHn" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHq" = ( -/obj/structure/table/glass, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHs" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHt" = ( -/turf/closed/wall, -/area/medical/medbay) -"bHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bHx" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHy" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/medical) -"bHA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bHB" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6;5" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bHD" = ( -/turf/closed/wall, -/area/medical/genetics) -"bHE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bHJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bHK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHN" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bHO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHP" = ( -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHR" = ( -/obj/structure/table, -/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/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bHS" = ( -/turf/closed/wall, -/area/assembly/robotics) -"bHT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHV" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHW" = ( -/turf/closed/wall, -/area/toxins/lab) -"bHX" = ( -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/lab) -"bIb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bIc" = ( -/obj/item/weapon/stock_parts/console_screen, -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bId" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/lab) -"bIe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/lab) -"bIf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"bIj" = ( -/turf/closed/wall, -/area/toxins/shuttledock) -"bIk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s6"; - dir = 2 - }, -/area/shuttle/outpost) -"bIl" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/outpost) -"bIm" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bIn" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/outpost) -"bIo" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bIp" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIq" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bIr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bIs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bIu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIx" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/office) -"bIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bIC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bID" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/primary/central) -"bIE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bIF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hallway/primary/central) -"bIG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Reception Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bII" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bIN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIP" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIQ" = ( -/obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; - req_access_txt = "53" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bIR" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIU" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIW" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/matches, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/item/weapon/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIX" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/bikehorn/rubberducky, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bIY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIZ" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJb" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJc" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJd" = ( -/obj/structure/bed/roller, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bJe" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/medbay) -"bJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJo" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJp" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTHEAST)"; - icon_state = "whiteblue"; - dir = 5 - }, -/area/medical/genetics) -"bJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bJr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/weapon/storage/pill_bottle/mutadone, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJt" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bJu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJv" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJw" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bJx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bJy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJD" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/obj/item/weapon/hemostat, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bJF" = ( -/obj/structure/table, -/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/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bJG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bJH" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/research{ - name = "Research Division" - }) -"bJJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJK" = ( -/obj/item/weapon/folder/white, -/obj/structure/table, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJO" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJP" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/toxins/lab) -"bJQ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/lab) -"bJR" = ( -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bJT" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJU" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Science Outpost Dock APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bJX" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/outpost) -"bJY" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bJZ" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bKa" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_ss13"; - name = "SS13 Arrival Docking"; - width = 35 - }, -/turf/open/space, -/area/space) -"bKb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKc" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bKe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bKf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKi" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKj" = ( -/obj/machinery/autolathe, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKm" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKo" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKp" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bKq" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bKr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bKs" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bKt" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bKu" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKv" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Vault Access"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bKy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKz" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"bKD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKF" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bKH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bKK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKM" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor2"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKT" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKU" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKW" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKX" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bKY" = ( -/turf/open/floor/plasteel, -/area/medical/genetics) -"bKZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 14 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bLa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bLb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLf" = ( -/obj/structure/table, -/obj/item/weapon/circular_saw, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"bLh" = ( -/obj/machinery/button/door{ - dir = 2; - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bLi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/assembly/robotics) -"bLj" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bLm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLo" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLp" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/obj/machinery/camera{ - c_tag = "Experimentor Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLq" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLr" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLs" = ( -/obj/structure/closet/emcloset{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLw" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bLz" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bLA" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLC" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLD" = ( -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLE" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bLF" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/storage) -"bLG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bLH" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/device/multitool, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLK" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bLQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/ai_monitored/nuke_storage) -"bLR" = ( -/turf/closed/wall, -/area/teleporter) -"bLS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLT" = ( -/obj/structure/table, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bLU" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLV" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLW" = ( -/obj/machinery/camera{ - c_tag = "Teleporter" - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLY" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bMa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bMc" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/clothing/tie/stethoscope, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMn" = ( -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bMp" = ( -/obj/structure/table/glass, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor2"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMr" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bMs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bMt" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMu" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMw" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/chargebay) -"bMx" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 4 - }, -/area/assembly/robotics) -"bMy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMz" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMB" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bMD" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division North"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bML" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/explab) -"bMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMP" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"bMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bMZ" = ( -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bNa" = ( -/obj/machinery/door/airlock/shuttle{ - req_access_txt = "7" - }, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bNb" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost_home"; - name = "outpost shuttle bay"; - width = 7 - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost"; - name = "outpost shuttle"; - port_angle = 90; - width = 7 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall3" - }, -/area/shuttle/outpost) -"bNc" = ( -/obj/machinery/camera{ - c_tag = "Cargo Recieving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - dir = 2; - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bNd" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bNe" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/folder/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNj" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bNl" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bNm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNn" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/coin/gold, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNq" = ( -/turf/closed/wall, -/area/ai_monitored/nuke_storage) -"bNr" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/ai_monitored/nuke_storage) -"bNs" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bNv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bNw" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNx" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/ai_monitored/nuke_storage) -"bNy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bNA" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel, -/area/teleporter) -"bNC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bND" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bNG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bNI" = ( -/obj/structure/table, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNS" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNT" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNU" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/medical_cloning, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNV" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNY" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bNZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Monkey Pen"; - req_access_txt = "9" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOa" = ( -/obj/structure/window/reinforced, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOb" = ( -/turf/closed/wall/r_wall, -/area/assembly/chargebay) -"bOc" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bOd" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bOe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOk" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bOw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOy" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/white, -/area/toxins/shuttledock) -"bOz" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "supply bay"; - width = 12 - }, -/turf/open/space, -/area/space) -"bOA" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bOB" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bOC" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bOG" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bOH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOI" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/hop, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bON" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOQ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bOR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/teleporter) -"bOS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOT" = ( -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOU" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/teleporter) -"bOV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOW" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOX" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/teleporter) -"bOY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bOZ" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPb" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPc" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bPd" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/sleeper) -"bPe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bPf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera{ - c_tag = "Medbay Hallway"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPg" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/mutadone, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPh" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPj" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/disks, -/obj/item/device/radio/headset/headset_medsci, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPk" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 12 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bPn" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPp" = ( -/obj/machinery/camera{ - c_tag = "Research Division West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bPz" = ( -/turf/closed/wall, -/area/crew_quarters/hor) -"bPA" = ( -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPB" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPC" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPD" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bPG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPH" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light, -/obj/machinery/status_display{ - density = 0; - pixel_y = -30; - supply_display = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPK" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bPL" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bPM" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #4" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bPN" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPO" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPR" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"bPS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bPU" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bPV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bPW" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bPX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQc" = ( -/obj/machinery/button/door{ - id = "vaultshut"; - name = "Vault Shutters Control"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQe" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQg" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQh" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bQi" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/teleporter) -"bQj" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/teleporter) -"bQk" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/teleporter) -"bQl" = ( -/obj/structure/rack, -/obj/item/weapon/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/teleporter) -"bQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQn" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/medbay) -"bQo" = ( -/obj/machinery/door/window/eastleft{ - name = "Medical Delivery"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/medbay) -"bQp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQs" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQt" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQu" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bQv" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQw" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/sleeper) -"bQx" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQy" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQz" = ( -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQA" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bQF" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQG" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = 23 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQI" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/disk/tech_disk/gooncode, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQV" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQW" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQX" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bQY" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/crew_quarters/hor) -"bQZ" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/crew_quarters/hor) -"bRa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/explab) -"bRb" = ( -/turf/closed/wall, -/area/toxins/explab) -"bRc" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/book/manual/experimentor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRd" = ( -/obj/machinery/computer/rdconsole/experiment, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/toxins/explab) -"bRe" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRf" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/explab) -"bRg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRi" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s5"; - dir = 2 - }, -/area/shuttle/outpost) -"bRm" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/outpost) -"bRn" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bRo" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bRp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bRq" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bRt" = ( -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/supply) -"bRv" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"bRw" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/supply) -"bRx" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bRC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Vault Access"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/ai_monitored/nuke_storage) -"bRD" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South-East"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/sleeper) -"bRF" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = ""; - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bRG" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRH" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/sleeper) -"bRJ" = ( -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRL" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRN" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRP" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Genetics Research"; - req_access_txt = "5; 9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRS" = ( -/obj/machinery/camera{ - c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bRT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bRU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRV" = ( -/obj/machinery/camera{ - c_tag = "Genetics Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRW" = ( -/turf/closed/wall/r_wall, -/area/toxins/server) -"bRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bRY" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bSa" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/science) -"bSb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bSe" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/item/weapon/coin/uranium, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSf" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSg" = ( -/obj/machinery/computer/robotics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSh" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSi" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/crew_quarters/hor) -"bSj" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSk" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/hor) -"bSl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSo" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSp" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSs" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSu" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Dock APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSz" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bSC" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"bSD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSE" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/primary/central) -"bSJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSM" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bSN" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSO" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSP" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSQ" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Surgery Observation" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSS" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bST" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSU" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSV" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSY" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bTa" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTb" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTc" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTd" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (SOUTHEAST)"; - icon_state = "whiteblue"; - dir = 6 - }, -/area/medical/genetics) -"bTe" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bTf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTg" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTi" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"bTk" = ( -/obj/machinery/r_n_d/server/robotics, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTm" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bTn" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTo" = ( -/obj/machinery/camera{ - c_tag = "Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Server Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTp" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTq" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/science) -"bTs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTt" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of your own office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/science) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bTw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bTx" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/pen/blue, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTz" = ( -/obj/machinery/computer/mecha, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTA" = ( -/obj/structure/rack, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTB" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTD" = ( -/turf/open/floor/engine, -/area/toxins/explab) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTG" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTH" = ( -/obj/machinery/computer/cargo, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTK" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTN" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTS" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bUa" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUh" = ( -/obj/structure/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUk" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUl" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bUm" = ( -/obj/machinery/light, -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUr" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUs" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUt" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUu" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUv" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Server Room"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUx" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUy" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUz" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUA" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/science) -"bUC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUD" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUE" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/science) -"bUF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUH" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Research Director"; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUM" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUN" = ( -/obj/machinery/r_n_d/experimentor, -/turf/open/floor/engine, -/area/toxins/explab) -"bUO" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bUP" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bUQ" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/status_display{ - density = 0; - pixel_x = -32; - pixel_y = 0; - supply_display = 1 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUS" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUT" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUU" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUV" = ( -/obj/structure/filingcabinet, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bUX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bVb" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/supply) -"bVd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"bVe" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/supply) -"bVf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bVg" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South-West"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = -32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = -32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVu" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVw" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVE" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Recovery Room"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bVF" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVG" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVI" = ( -/turf/closed/wall, -/area/medical/cmo) -"bVJ" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVK" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVL" = ( -/obj/machinery/computer/med_data, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVP" = ( -/obj/machinery/r_n_d/server/core, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVR" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bVS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVT" = ( -/obj/machinery/computer/rdservercontrol, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVV" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/science) -"bVX" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVY" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVZ" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/science) -"bWa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/item/weapon/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWd" = ( -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/computer/card/minor/rd, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWe" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/signal/toxins, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("SS13","RD") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWf" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWh" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWi" = ( -/obj/machinery/camera{ - c_tag = "Experimentor Lab Chamber"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bWo" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bWp" = ( -/turf/closed/wall, -/area/storage/tech) -"bWq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/central) -"bWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/central) -"bWt" = ( -/turf/closed/wall, -/area/janitor) -"bWu" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bWv" = ( -/turf/closed/wall, -/area/maintenance/asmaint) -"bWw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"bWy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/weapon/surgicaldrill, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWz" = ( -/obj/structure/table, -/obj/item/weapon/hemostat, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWA" = ( -/obj/structure/table, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/obj/item/weapon/circular_saw, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWB" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWC" = ( -/obj/structure/table, -/obj/item/weapon/cautery{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWD" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/gun/syringe, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/soap/nanotrasen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bWF" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWG" = ( -/obj/structure/closet/wardrobe/white/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWH" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWI" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bWM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/cmo) -"bWN" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWO" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWP" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWR" = ( -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"bWS" = ( -/turf/closed/wall, -/area/toxins/storage) -"bWT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWV" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWX" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 - }, -/turf/open/space, -/area/space) -"bWZ" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Mining"; - departmentType = 0; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXk" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXl" = ( -/obj/structure/table, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/storage/tech) -"bXm" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXn" = ( -/obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 2 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Tech Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXo" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXp" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXq" = ( -/turf/open/floor/plating, -/area/storage/tech) -"bXr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bXt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bXu" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/plasteel, -/area/janitor) -"bXv" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/janicart, -/turf/open/floor/plasteel, -/area/janitor) -"bXx" = ( -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/janitor) -"bXy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bXz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXA" = ( -/turf/open/floor/plasteel, -/area/janitor) -"bXB" = ( -/obj/machinery/door/window/westleft{ - name = "Janitoral Delivery"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/janitor) -"bXC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/janitor) -"bXD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -25; - req_one_access_txt = "5" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXH" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXJ" = ( -/obj/structure/table, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bXL" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bXO" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXR" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bXT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXW" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXX" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/cmo, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXY" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/obj/item/clothing/tie/stethoscope, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bYa" = ( -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYb" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYd" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Misc Research APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYg" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYh" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYi" = ( -/turf/closed/wall, -/area/toxins/mixing) -"bYj" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/plasmaresearch, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYl" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab West"; - dir = 2; - network = list("SS13","RD"); - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/item/weapon/storage/firstaid/toxin, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYo" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/mixing) -"bYr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/toxins/mixing) -"bYs" = ( -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"bYt" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/mixing) -"bYy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/labor) -"bYz" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYG" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/aft) -"bYJ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYL" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYM" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYN" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/turf/open/floor/plating, -/area/storage/tech) -"bYO" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bYR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bYT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bYY" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/janitor) -"bYZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/janitor) -"bZa" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZb" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 6 - }, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZc" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZi" = ( -/obj/structure/table/optable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bZm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bZn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZo" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bZq" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZt" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZy" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZz" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZA" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/weapon/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZC" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/storage) -"bZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZF" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/mixing) -"bZH" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZP" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/mixing) -"bZQ" = ( -/turf/closed/indestructible, -/area/toxins/test_area) -"bZR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"bZS" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZT" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bZV" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"bZW" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZY" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cab" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cac" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cad" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cae" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"caf" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"cag" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cah" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/pandemic{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/computer/rdconsole, -/obj/item/weapon/circuitboard/machine/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/destructive_analyzer, -/obj/item/weapon/circuitboard/machine/protolathe, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/circuitboard/computer/aifixer, -/obj/item/weapon/circuitboard/computer/teleporter, -/obj/item/weapon/circuitboard/machine/circuit_imprinter, -/obj/item/weapon/circuitboard/machine/mechfab, -/turf/open/floor/plating, -/area/storage/tech) -"cai" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/mining, -/obj/item/weapon/circuitboard/machine/autolathe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/computer/arcade/battle, -/turf/open/floor/plating, -/area/storage/tech) -"caj" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/telecomms/processor, -/obj/item/weapon/circuitboard/machine/telecomms/receiver, -/obj/item/weapon/circuitboard/machine/telecomms/server, -/obj/item/weapon/circuitboard/machine/telecomms/bus, -/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, -/obj/item/weapon/circuitboard/computer/message_monitor{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cak" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cal" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/key/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"cam" = ( -/obj/structure/table, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"can" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/janitor) -"cao" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel, -/area/janitor) -"cap" = ( -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/mousetraps, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"caq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/janitor) -"car" = ( -/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/open/floor/plating, -/area/maintenance/asmaint) -"cas" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cat" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cau" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cav" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "Treatment Center APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"cax" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cay" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caz" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"caA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caB" = ( -/obj/machinery/vending/wallmed{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("SS13") - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/gun/syringe, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caE" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caG" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv4"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caH" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv4"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"caI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caL" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Medical Officer"; - req_access_txt = "40" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caN" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/cmo) -"caQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caS" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Toxins Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"caZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cba" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"cbb" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cbf" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/mixing) -"cbg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"cbi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cbj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbk" = ( -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cbl" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins"); - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cbm" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cbn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cbo" = ( -/obj/item/weapon/ore/iron, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbp" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbq" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cbs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbt" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbu" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"cbv" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cby" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbA" = ( -/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 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/janitor) -"cbI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/janitor) -"cbJ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbL" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbQ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbR" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbS" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Surgery Operating"; - dir = 1; - network = list("SS13"); - pixel_x = 22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbV" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbW" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbX" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbY" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cca" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccb" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = -30; - pixel_z = 0 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccc" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/brute, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccd" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cce" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccg" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cch" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cci" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"cck" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/weapon/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/weapon/cartridge/medical, -/obj/item/weapon/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccl" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccn" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"cco" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"ccp" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ccq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"cct" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"ccu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccw" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccx" = ( -/obj/item/device/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccy" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccA" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"ccJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible, -/area/toxins/test_area) -"ccL" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccM" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccN" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccO" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_angle = 90; - width = 7 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"ccP" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"ccQ" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccU" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccW" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"ccX" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/storage/tech) -"ccY" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/cloning{ - pixel_x = 0 - }, -/obj/item/weapon/circuitboard/computer/med_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/clonescanner, -/obj/item/weapon/circuitboard/machine/clonepod, -/obj/item/weapon/circuitboard/computer/scan_consolenew, -/turf/open/floor/plating, -/area/storage/tech) -"ccZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cda" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/powermonitor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/stationalert{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/computer/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdb" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cde" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdn" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cds" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"cdt" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdv" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/shieldwallgen{ - req_access = list(55) - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cdw" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdx" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdy" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdz" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdA" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdB" = ( -/turf/closed/wall, -/area/toxins/xenobiology) -"cdC" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"cdD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdG" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdH" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdI" = ( -/obj/item/device/assembly/signaler{ - pixel_x = 0; - pixel_y = 8 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdJ" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdK" = ( -/obj/item/device/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/assembly/timer{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdL" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdO" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/mixing) -"cdP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cdQ" = ( -/obj/machinery/camera{ - c_tag = "Toxins Launch Room Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cdR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cdS" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/mixing) -"cdT" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdU" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdW" = ( -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cdX" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdY" = ( -/obj/item/weapon/ore/silver, -/obj/item/weapon/ore/silver, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cdZ" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock External"; - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cea" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"ceb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cec" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/pickaxe{ - pixel_x = 5 - }, -/obj/item/weapon/shovel{ - pixel_x = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ced" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cee" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cef" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ceg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"ceh" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cei" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cej" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/storage/tech) -"cek" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/storage/tech) -"cel" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cen" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tech) -"ceo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cer" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"ces" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"cet" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"ceu" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cev" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cew" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cex" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cey" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cez" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceC" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceF" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay) -"ceG" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceH" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room 2"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay) -"ceK" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceL" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "CM Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceP" = ( -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceQ" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Xeno"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceR" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 0; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceS" = ( -/obj/machinery/door/window/southleft{ - name = "Test Chamber"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceU" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceW" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/toxins/xenobiology) -"ceX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceZ" = ( -/obj/machinery/camera{ - c_tag = "Research Division South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cfa" = ( -/obj/structure/sign/fire, -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"cfb" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cfc" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfd" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/toxins/mixing) -"cff" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfg" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfh" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfi" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cfj" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - light = null; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien{ - anchored = 1 - }, -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfk" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/labor) -"cfl" = ( -/obj/structure/ore_box, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cfm" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfp" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/turf/open/floor/plating, -/area/storage/tech) -"cfq" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfr" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/turf/open/floor/plating, -/area/storage/tech) -"cfs" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/device/t_scanner, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cft" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfu" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cfv" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/storage/tech) -"cfw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 2"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cfy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cfz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cfA" = ( -/turf/closed/wall/r_wall, -/area/atmos) -"cfB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfE" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/atmos) -"cfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfK" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfM" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv1"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfN" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv1"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfX" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfZ" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cga" = ( -/obj/machinery/processor{ - desc = "A machine used to process slimes and retrieve their extract."; - name = "Slime Processor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgb" = ( -/obj/machinery/smartfridge/extract, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgc" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgd" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cge" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgf" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cgh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/research{ - name = "Research Division" - }) -"cgi" = ( -/obj/machinery/door/poddoor{ - id = "mixvent2"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgk" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cgm" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor2"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller{ - airpump_tag = "tox_airlock_pump2"; - exterior_door_tag = "tox_airlock_exterior2"; - id_tag = "tox_airlock_control"; - interior_door_tag = "tox_airlock_interior2"; - pixel_x = -24; - pixel_y = 0; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cgo" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cgp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cgq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgr" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgs" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"cgv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cgw" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/hallway/primary/aft) -"cgx" = ( -/turf/closed/wall, -/area/atmos) -"cgy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/atmos) -"cgz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgD" = ( -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/atmos) -"cgE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cgF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "wloop_atm_meter"; - name = "Waste Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 2 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "dloop_atm_meter"; - name = "Distribution Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Distro"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgL" = ( -/turf/open/floor/plasteel, -/area/atmos) -"cgM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgN" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgO" = ( -/turf/closed/wall, -/area/medical/virology) -"cgP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cgQ" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/medical/virology) -"cgR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cha" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"chb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"chc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"chd" = ( -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"che" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior2"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chf" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump2" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chg" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior2"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chi" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab East"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"chk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chl" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cho" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chp" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chq" = ( -/turf/closed/wall, -/area/construction) -"chr" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction) -"chs" = ( -/turf/open/floor/plating, -/area/construction) -"cht" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction) -"chu" = ( -/turf/open/floor/plasteel, -/area/construction) -"chv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/construction) -"chw" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"chx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Monitoring"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/atmos) -"chB" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"chF" = ( -/obj/machinery/pipedispenser/disposal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chG" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chN" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/atmos) -"chO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"chP" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chQ" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/machinery/camera{ - c_tag = "Virology Break Room" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chS" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/virology) -"chU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chV" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/virology) -"chW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chX" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cia" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"cib" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cic" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cid" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cie" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cig" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cih" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cik" = ( -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cil" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cim" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/button/door{ - id = "mixvent2"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access_txt = "7" - }, -/obj/machinery/button/ignition{ - id = "mixingsparker2"; - pixel_x = -25; - pixel_y = -5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cio" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cip" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ciq" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cir" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/aft) -"cis" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction) -"cit" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/construction) -"ciu" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"civ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ciw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/aft) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"ciz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/atmos) -"ciA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciB" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciD" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ciE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/atmos) -"ciF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/autolathe/atmos, -/turf/open/floor/plasteel, -/area/atmos) -"ciG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/atmos) -"ciH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciI" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Waste In"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciN" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"ciO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Mix"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/atmos) -"ciR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"ciT" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"ciU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "waste_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciV" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciW" = ( -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ciY" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ciZ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cja" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjc" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cjg" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cji" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjj" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjk" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjn" = ( -/obj/structure/table, -/obj/item/weapon/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjp" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjq" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cjt" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cju" = ( -/turf/closed/wall, -/area/toxins/misc_lab) -"cjv" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjw" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjx" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjy" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjz" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cjA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cjC" = ( -/obj/item/weapon/shard, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cjD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjE" = ( -/obj/structure/girder, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjF" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"cjG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjH" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"cjL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjM" = ( -/obj/structure/closet/crate, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/construction) -"cjO" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"cjQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Construction Area"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cjU" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cjV" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cjW" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cka" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ckb" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ckc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cke" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cki" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckl" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckm" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/atmos) -"ckn" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cko" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/atmos) -"ckp" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor" - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckr" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cks" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckt" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cku" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -28; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckx" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cky" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckz" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckB" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckC" = ( -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckD" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"ckE" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckF" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/camera{ - c_tag = "Testing Lab North"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckH" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - req_access = null - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckM" = ( -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"ckN" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ckO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckQ" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckR" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckX" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"ckY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"ckZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cla" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "left"; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"clc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cle" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clf" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"clg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/atmos) -"cli" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cll" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cln" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Unfiltered to Mix"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cls" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 6 - }, -/area/atmos) -"clt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"clv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "waste_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"clw" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cly" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"clB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clE" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clK" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"clM" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/electropack, -/obj/item/device/healthanalyzer, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clN" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clR" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/target_stake, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"clS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"clT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"clU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/aft) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/rack, -/obj/item/clothing/head/cone, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/aft) -"clW" = ( -/obj/item/weapon/storage/secure/safe, -/turf/closed/wall, -/area/maintenance/aft) -"clX" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clY" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - tag = "icon-connector_map (WEST)"; - icon_state = "connector_map"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cma" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cme" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmf" = ( -/obj/machinery/camera{ - c_tag = "Construction Area"; - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmg" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/construction) -"cmh" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plating, -/area/construction) -"cmi" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/construction) -"cmj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cmk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cml" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plating, -/area/atmos) -"cmm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cmo" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/atmos) -"cmp" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/atmos) -"cmq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/turf/open/floor/plasteel, -/area/atmos) -"cmr" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cmt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmv" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmH" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Virology APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Virology Module" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmI" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmJ" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmL" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cmN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmR" = ( -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmS" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmU" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmV" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/toxins/misc_lab) -"cmY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cmZ" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses/garb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cna" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/clothing/tie/black, -/obj/item/clothing/tie/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/skull, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cne" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cng" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cni" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"cnj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnl" = ( -/obj/machinery/power/apc{ - name = "Aft Hall APC"; - dir = 8; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cnm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnn" = ( -/obj/item/weapon/crowbar, -/obj/item/weapon/wrench, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"cno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/atmos) -"cnp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/atmos) -"cnq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnt" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 5 - }, -/area/atmos) -"cny" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnz" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2O Tanks" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnA" = ( -/turf/open/floor/engine/n2o, -/area/atmos) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/medical/virology) -"cnE" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnI" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnK" = ( -/obj/structure/disposalpipe/segment, -/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/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cnL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnM" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnS" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnT" = ( -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnU" = ( -/obj/structure/target_stake, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnV" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cnW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnX" = ( -/obj/machinery/door/window{ - dir = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/storage/box/cups, -/turf/open/floor/plating, -/area/maintenance/aft) -"coa" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cob" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coc" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cof" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cog" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cok" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Construction Area APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"col" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Telecoms Monitoring APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"com" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"con" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 8 - }, -/area/atmos) -"cop" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"coq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cor" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cou" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to External"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cov" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cow" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cox" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/atmos) -"coy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Pure to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coD" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 4 - }, -/area/atmos) -"coE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coF" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/atmos) -"coG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coK" = ( -/obj/machinery/smartfridge/chemistry/virology, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coM" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"coO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation A"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coP" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"coQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall, -/area/toxins/xenobiology) -"coS" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coT" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coV" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coW" = ( -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"coX" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coY" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coZ" = ( -/obj/machinery/camera{ - c_tag = "Testing Firing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpa" = ( -/obj/structure/target_stake, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpb" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall, -/area/maintenance/aft) -"cpc" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpd" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cpg" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cph" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cpk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cpo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/atmos) -"cpp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "External to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/atmos) -"cps" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/atmos) -"cpt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/atmos) -"cpu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cpw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpx" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "n2o"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 6 - }, -/area/atmos) -"cpz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cpA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cpB" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = -32 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpF" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cpJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpK" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpM" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cpP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/misc_lab) -"cpQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpR" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cpS" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cpT" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cpU" = ( -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpW" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Telecoms Server APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpY" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpZ" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqa" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqb" = ( -/obj/machinery/computer/message_monitor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cqc" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqe" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cqg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqj" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cqk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cql" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics West"; - dir = 8; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqo" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cqp" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqr" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Virologist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqs" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"cqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqv" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqx" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqy" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqA" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqB" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqC" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqD" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqE" = ( -/obj/structure/rack, -/obj/item/weapon/wrench, -/obj/item/weapon/crowbar, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Test"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet, -/obj/item/pipe{ - dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cqJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/weapon/paper/range, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHEAST)"; - icon_state = "warnplate"; - dir = 6 - }, -/area/toxins/misc_lab) -"cqK" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHWEST)"; - icon_state = "warnplate"; - dir = 10 - }, -/area/toxins/misc_lab) -"cqL" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cqM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqO" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/aft) -"cqP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/pill/mannitol, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqR" = ( -/turf/closed/wall, -/area/maintenance/strangeroom) -"cqS" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cqT" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqU" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqW" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqX" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqZ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cra" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"crf" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"crg" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/atmos) -"crh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/engineering) -"cri" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/engineering) -"crj" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/engineering) -"crk" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crl" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"crm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"crn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"cro" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crp" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/atmos) -"crq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crr" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Plasma Tank" - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crs" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cru" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"crv" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - anchored = 1; - density = 0; - pixel_x = -30 - }, -/obj/item/weapon/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cry" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"crA" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crC" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"crD" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crE" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crF" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crL" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"crP" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crQ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/color/lightpurple, -/obj/item/stack/spacecash/c200, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crT" = ( -/obj/effect/decal/cleanable/shreds, -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"crU" = ( -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crV" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crW" = ( -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crX" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crY" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crZ" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csa" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"csb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csd" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csn" = ( -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"cso" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/atmos) -"csp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"csq" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "tox_in"; - name = "Toxin Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/atmos) -"csr" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor" - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"css" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cst" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"csu" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"csx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology South"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - unacidable = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"csD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"csE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csF" = ( -/obj/structure/rack, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"csH" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csK" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"csL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csM" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (SOUTHWEST)"; - icon_state = "tracks"; - dir = 10 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"csP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (NORTHEAST)"; - icon_state = "tracks"; - dir = 5 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csT" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csU" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csV" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/tcommsat/computer) -"csW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csX" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cta" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"ctc" = ( -/turf/closed/wall, -/area/engine/break_room) -"ctd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cte" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cth" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cti" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"ctj" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"ctk" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"ctl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/item/weapon/wrench, -/turf/open/floor/plasteel, -/area/atmos) -"cto" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"ctp" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "plasma"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"ctr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cts" = ( -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"ctt" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"ctu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctv" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"ctx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/weapon/wrench, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 9 - }, -/area/maintenance/asmaint) -"cty" = ( -/obj/machinery/atmospherics/components/binary/valve/open{ - tag = "icon-mvalve_map (EAST)"; - icon_state = "mvalve_map"; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/asmaint) -"ctz" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint) -"ctA" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctD" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ctE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctF" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ctG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"ctH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/misc_lab) -"ctI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"ctJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctK" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctM" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"ctN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/r_leg, -/obj/item/bodypart/r_arm, -/obj/item/weapon/shard, -/obj/item/weapon/hatchet, -/obj/item/weapon/staplegun, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctO" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/l_leg, -/obj/item/bodypart/l_arm, -/obj/item/weapon/restraints/handcuffs, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"ctR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"ctS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"ctU" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctV" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/bluegrid{ - dir = 8; - icon_state = "vault"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cua" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cub" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cuc" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cud" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/tcommsat/computer) -"cue" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cuf" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Telecoms Monitoring"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cui" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cuj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuk" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cul" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cum" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"cun" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cuo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cup" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cuq" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/engineering) -"cur" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/engineering) -"cus" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/engineering) -"cut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cuu" = ( -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuv" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/atmos) -"cux" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuA" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuF" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 10 - }, -/area/maintenance/asmaint) -"cuG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cuH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 6 - }, -/area/maintenance/asmaint) -"cuI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuM" = ( -/obj/machinery/sparker{ - id = "testigniter"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuN" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cuU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Testing Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cuV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cuW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cuX" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuY" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuZ" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel{ - tag = "icon-damaged5"; - icon_state = "damaged5" - }, -/area/maintenance/strangeroom) -"cva" = ( -/obj/machinery/camera{ - c_tag = "Telecoms Server Room"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cvb" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvc" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/tcommsat/computer) -"cve" = ( -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecoms Admin"; - departmentType = 5; - name = "Telecoms RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvh" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cvi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cvk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cvp" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/plasteel, -/area/atmos) -"cvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/atmos) -"cvr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"cvs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvt" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/weapon/cigbutt, -/turf/open/floor/plasteel, -/area/atmos) -"cvu" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/atmos) -"cvw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvx" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics CO2 Tank" - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvy" = ( -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvD" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvG" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvH" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cvI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cvJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvK" = ( -/obj/machinery/camera{ - c_tag = "Testing Chamber"; - dir = 1; - network = list("Test","RD"); - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cvL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"cvM" = ( -/obj/machinery/camera{ - c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvN" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvO" = ( -/obj/structure/closet/crate, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cvQ" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cvS" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvT" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/strangeroom) -"cvV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/strangeroom) -"cvW" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cvX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cvY" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/chem_pile, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cvZ" = ( -/obj/machinery/message_server, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwa" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwb" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwc" = ( -/obj/structure/table, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cwd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwe" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cwg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"cwn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwt" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwu" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cwv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cww" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cwy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwz" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/atmos) -"cwA" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor" - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwE" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwF" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cwR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cwU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cwX" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/spirit_board, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cxd" = ( -/obj/structure/closet/crate/secure, -/obj/item/weapon/restraints/handcuffs, -/obj/item/weapon/pen, -/obj/item/weapon/paper{ - info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; - name = "Strange Paper" - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/strangeroom) -"cxe" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"cxf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gibber, -/turf/open/floor/plasteel, -/area/maintenance/strangeroom) -"cxg" = ( -/obj/machinery/vending/cart{ - desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; - icon_state = "cart-broken"; - name = "Old Machine"; - product_slogans = "Bzzzt..-6-4-!"; - products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cxh" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxi" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxj" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxk" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxl" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cxm" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxx" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxC" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxD" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cxF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cxG" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - pixel_x = 0; - pixel_y = 0; - target_pressure = 4500 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "co2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/atmos) -"cxK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cxL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxP" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cxY" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxZ" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cya" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyc" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyd" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cye" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyk" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyl" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cym" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cyn" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"cyo" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyr" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/hallway/primary/aft) -"cys" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyt" = ( -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyv" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/break_room) -"cyy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyB" = ( -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cyG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cyI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/atmos) -"cyK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Incinerator APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cyL" = ( -/obj/structure/sign/fire{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cyN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyO" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyP" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyX" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyZ" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cza" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czb" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czc" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czd" = ( -/obj/item/clothing/under/rank/vice, -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/aft) -"cze" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"czi" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czj" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/chiefs_office) -"czl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/engine/break_room) -"czm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/break_room) -"czn" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/engine/break_room) -"czo" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = "n2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"czp" = ( -/turf/closed/wall, -/area/maintenance/incinerator) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/incinerator) -"czr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"czs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/toy/minimeteor, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czt" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/snacks/donkpocket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/c_tube, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czw" = ( -/obj/structure/mopbucket, -/obj/item/weapon/caution, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Air Supply Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"czB" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/maintenance/portsolar) -"czE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"czF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"czG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czI" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czN" = ( -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/engine/chiefs_office) -"czO" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czQ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czS" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 4; - name = "CE Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/engineering) -"czV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/engineering) -"czW" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/atmos) -"czX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/atmos) -"czY" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"czZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAa" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - filter_type = "o2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAd" = ( -/obj/machinery/chem_master, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAe" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/kitchenspike_frame, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAh" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAi" = ( -/obj/structure/table/wood, -/obj/item/weapon/retractor/alien, -/obj/item/weapon/reagent_containers/glass/bowl, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAj" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"cAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cAy" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAz" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAD" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cAE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAF" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAG" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"cAI" = ( -/obj/machinery/camera{ - c_tag = "Aft Port Solar Access"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAP" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAT" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cAU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAW" = ( -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/atmos) -"cAY" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/atmos) -"cAZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/atmos) -"cBa" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/atmos) -"cBb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/atmos) -"cBc" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/atmos) -"cBd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/atmos) -"cBe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 10 - }, -/area/atmos) -"cBf" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1443; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "arrival" - }, -/area/atmos) -"cBg" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 6 - }, -/area/atmos) -"cBh" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cBi" = ( -/turf/open/floor/plating, -/area/atmos) -"cBj" = ( -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBk" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/incinerator) -"cBl" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/incinerator) -"cBn" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/lighter/greyscale, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"cBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBq" = ( -/obj/structure/chair, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBr" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cBv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBE" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cBH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBV" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBZ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCb" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCd" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCf" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCg" = ( -/turf/closed/wall, -/area/engine/engineering) -"cCh" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCi" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCj" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCk" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/paper/monitorkey, -/obj/item/weapon/coin/plasma, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCn" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCo" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCq" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCy" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCC" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical, -/obj/item/pizzabox/mushroom, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCH" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCN" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/switchblade{ - force = 12 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCQ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cCR" = ( -/obj/machinery/power/solar_control{ - id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCS" = ( -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Aft Port Solar APC"; - pixel_x = 23; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCY" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cCZ" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cDa" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cDb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDd" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDi" = ( -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/computer/card/minor/ce, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDj" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDl" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space, -/area/space) -"cDq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space, -/area/space) -"cDr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space, -/area/space) -"cDs" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/maintenance/incinerator) -"cDt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/tie/black, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDx" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDz" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDA" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/shard, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDB" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDC" = ( -/obj/structure/closet, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDD" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDE" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cDH" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDI" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cDJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDU" = ( -/obj/item/weapon/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/item/weapon/cartridge/atmos, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDV" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cDY" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_in_meter"; - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cDZ" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_out_meter"; - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cEa" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEb" = ( -/obj/item/clothing/head/cone, -/obj/item/weapon/restraints/handcuffs/cable/orange, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Biohazard Disposals"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEf" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cEg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEh" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEk" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEl" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEn" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEA" = ( -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/weapon/circuitboard/computer/solar_control, -/obj/item/weapon/electronics/tracker, -/obj/item/weapon/paper/solar, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEB" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cED" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEF" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cEG" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"cEI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEM" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEP" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cER" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cES" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor" - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 0; - frequency = 1443; - icon_state = "vent_map"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cEU" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEV" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/incinerator) -"cEW" = ( -/obj/item/clothing/suit/toggle/labcoat/mad, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEX" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cEY" = ( -/obj/structure/table/wood, -/obj/item/organ/internal/butt/xeno, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - tag = "icon-manifold (NORTH)"; - icon_state = "manifold"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFf" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFl" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFr" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFs" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFu" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cFv" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cFw" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cFx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/engine/engineering) -"cFz" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cFC" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFD" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/wrench, -/obj/item/weapon/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cFJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFK" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFL" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFM" = ( -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics O2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFP" = ( -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Air-mix Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFS" = ( -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFT" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFU" = ( -/obj/item/weapon/kitchen/knife, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFV" = ( -/obj/structure/table/wood, -/obj/item/weapon/scalpel, -/obj/item/weapon/wirecutters, -/obj/item/organ/brain/alien, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFW" = ( -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFX" = ( -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFY" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGb" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGd" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGe" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGh" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGi" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cGj" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cGn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGo" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGp" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGq" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/engine/engineering) -"cGs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cGt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGu" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGE" = ( -/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/open/floor/plasteel, -/area/engine/engineering) -"cGF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGI" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cGJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cGK" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cGL" = ( -/obj/structure/table/wood, -/obj/item/weapon/hatchet, -/obj/item/weapon/lighter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cGM" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGN" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/crowbar, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGO" = ( -/obj/item/weapon/bedsheet/cult, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGP" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGT" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGU" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGW" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGX" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGY" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGZ" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHa" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cHd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHe" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cHf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cHg" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cHh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "SMES Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHi" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/engine/engineering) -"cHk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Middle"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cHl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHp" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cHr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Waste Out"; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHt" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cHv" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cHz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHB" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHC" = ( -/obj/machinery/door/window{ - name = "SMES Chamber"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHD" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHE" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cHG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "SMES Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/engine/engineering) -"cHJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHY" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/weapon/airlock_painter, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHZ" = ( -/obj/machinery/camera{ - c_tag = "Engineering East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cIa" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cIb" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIc" = ( -/turf/open/floor/plating, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/asmaint2) -"cId" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIe" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/turf/open/floor/plating, -/area/space) -"cIf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Starboard Solar APC"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIh" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIn" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIq" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engineering) -"cIs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIx" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"cIC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIF" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIG" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cII" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engineering) -"cIM" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cIN" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIO" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIP" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_4) -"cIQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/space, -/area/space) -"cIR" = ( -/obj/structure/table_frame, -/obj/item/weapon/wirerod, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint2) -"cIS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space) -"cIT" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIV" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIW" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cIZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"cJa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cJb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cJc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cJe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJj" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"cJk" = ( -/obj/structure/window, -/turf/open/floor/plating, -/area/toxins/mixing) -"cJl" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "0"; - req_one_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cJm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/engine/engineering) -"cJt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"cJu" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cJv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJz" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engineering) -"cJA" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cJB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod4"; - shuttleId = "pod4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"cJF" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "asteroid_pod4" - }, -/turf/open/space, -/area/space) -"cJG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJI" = ( -/obj/machinery/power/solar_control{ - id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJK" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJL" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/engine/engineering) -"cJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJN" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJO" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cJR" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJS" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJT" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJV" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJW" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJX" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/engineering) -"cJY" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plating, -/area/engine/engineering) -"cJZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engine/engineering) -"cKa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKd" = ( -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cKe" = ( -/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_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKf" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cKh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKj" = ( -/obj/structure/sign/pods{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engineering) -"cKk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Escape Pod"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cKl" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKm" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKn" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cKo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKq" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKs" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/obj/machinery/camera{ - c_tag = "Engineering Materials"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKt" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKu" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cKw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKz" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKG" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKJ" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKM" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_particle_accelerator{ - pixel_y = 6 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKS" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "32" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering) -"cKU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKZ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLa" = ( -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLb" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Port Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering North" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLc" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLe" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLf" = ( -/obj/machinery/camera{ - c_tag = "Engineering MiniSat Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLh" = ( -/obj/structure/transit_tube{ - tag = "icon-Block"; - icon_state = "Block" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLi" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/obj/structure/sign/securearea{ - name = "EXTERNAL AIRLOCK"; - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cLj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cLk" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/item/weapon/lighter{ - lit = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Entrance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLo" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -2 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLr" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -6 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLs" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/weapon/storage/backpack/industrial, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLt" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLw" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLz" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLF" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLH" = ( -/obj/structure/transit_tube/station{ - dir = 8; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/obj/structure/transit_tube_pod, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cLJ" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLM" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLO" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLP" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cLR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Supermatter Control Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cLS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLX" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMa" = ( -/obj/structure/table, -/obj/item/weapon/pocketknife, -/obj/item/weapon/reagent_containers/food/snacks/beans{ - bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); - desc = "Smells kind of funny." - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMb" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMd" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMg" = ( -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMn" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/reagent_containers/pill/charcoal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) -"cMp" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMq" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cMr" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cMu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMv" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/engine/supermatter) -"cMw" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMx" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMz" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/engine/supermatter) -"cMA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMB" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/engine/engineering) -"cMD" = ( -/obj/structure/transit_tube{ - tag = "icon-N-SE"; - icon_state = "N-SE" - }, -/turf/open/space, -/area/space) -"cME" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/turf/open/space, -/area/space) -"cMF" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/weapon/paper/gravity_gen{ - layer = 3 - }, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMJ" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMM" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMP" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMQ" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cMR" = ( -/obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" - }, -/turf/open/space, -/area/space) -"cMS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMT" = ( -/obj/structure/transit_tube, -/turf/open/space, -/area/space) -"cMU" = ( -/obj/structure/transit_tube{ - tag = "icon-E-W-Pass"; - icon_state = "E-W-Pass" - }, -/turf/open/space, -/area/space) -"cMV" = ( -/obj/structure/transit_tube{ - icon_state = "W-SE" - }, -/turf/open/space, -/area/space) -"cMW" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMX" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cMY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMZ" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNa" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNc" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNd" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNe" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNf" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNg" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNh" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNk" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNl" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNp" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNs" = ( -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/space) -"cNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNu" = ( -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/space) -"cNv" = ( -/obj/item/weapon/crowbar, -/turf/open/space, -/area/space) -"cNw" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNx" = ( -/turf/closed/wall/r_wall, -/area/aisat) -"cNy" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cNz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cNA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/engine/engine_smes) -"cNC" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cND" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cNE" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cNF" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/aisat) -"cNG" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/aisat) -"cNH" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/aisat) -"cNI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNJ" = ( -/obj/item/weapon/weldingtool, -/turf/open/space, -/area/space) -"cNK" = ( -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/space) -"cNM" = ( -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/space) -"cNN" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNO" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/turf/open/space, -/area/space) -"cNP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNQ" = ( -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNS" = ( -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNT" = ( -/obj/structure/transit_tube{ - tag = "icon-S-NW"; - icon_state = "S-NW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNU" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNV" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNW" = ( -/obj/machinery/button/door{ - id = "teledoor"; - name = "AI Satellite Teleport Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "17;65" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNZ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cOd" = ( -/turf/closed/wall, -/area/aisat) -"cOe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/aisat) -"cOg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Teleporter Room"; - req_access_txt = "17;65" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "AI Satellite Teleport Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOi" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cOk" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cOl" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOr" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOs" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cOt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOv" = ( -/obj/structure/transit_tube/station{ - dir = 4; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOy" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access = null; - req_access_txt = "65;13" - }, -/turf/open/floor/plating, -/area/aisat) -"cOz" = ( -/turf/open/floor/plating, -/area/aisat) -"cOA" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cOB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cOE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cOF" = ( -/obj/structure/transit_tube{ - dir = 1; - icon_state = "Block"; - tag = "icon-Block (NORTH)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOI" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cOM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cON" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cOP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "MiniSat Entrance"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat External Power APC"; - pixel_x = -27; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOW" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOY" = ( -/obj/machinery/turretid{ - control_area = "AI Satellite Antechamber"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 0; - pixel_y = -24; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOZ" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cPa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/aisat) -"cPc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cPd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/aisat) -"cPe" = ( -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/closed/wall, -/area/aisat) -"cPj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cPm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPo" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPw" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cPx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cPz" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_sw"; - name = "southwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cPA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cPB" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPC" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPN" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/aisat) -"cPP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPR" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPS" = ( -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPT" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPU" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - cell_type = 2500; - dir = 4; - name = "MiniSat Antechamber APC"; - pixel_x = 29; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space) -"cPW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cPY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cPZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/bot/floorbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQb" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cQc" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQd" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Antechamber"; - dir = 1; - network = list("MiniSat") - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/bot/cleanbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cQh" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQj" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQk" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - locked = 1; - name = "AI Chamber"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQm" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQp" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQq" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber North"; - dir = 2; - network = list("MiniSat","RD"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQr" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQs" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQw" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQy" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQz" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQA" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQC" = ( -/turf/closed/wall, -/area/turret_protected/ai) -"cQD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQE" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQF" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQH" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQI" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQJ" = ( -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber South"; - dir = 2; - network = list("RD","MiniSat") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQN" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQO" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQS" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQV" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cQW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQY" = ( -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cQZ" = ( -/obj/structure/rack, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/secure) -"cRc" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRd" = ( -/obj/structure/rack, -/obj/item/weapon/crowbar/red, -/obj/item/weapon/wrench, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cRf" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cRg" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat Maint APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air Out"; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/ai_monitored/storage/secure) -"cRj" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ai_monitored/storage/secure) -"cRk" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/ai_monitored/storage/secure) -"cRl" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cRn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/aisat) -"cRo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRr" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/aisat) -"cRy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRB" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cRF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"cRG" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cRH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRI" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRJ" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRK" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cRP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRS" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRU" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "SMES room APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRV" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cRW" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cRZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cSa" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSb" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Supermatter Control Room"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters" - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cSc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSe" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSf" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSg" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSh" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSi" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/camera{ - c_tag = "Port Engineering North-East"; - dir = 5; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSo" = ( -/obj/machinery/vending/tool, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSp" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cSB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSC" = ( -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cSE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSF" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHWEST)"; - icon_state = "warndark"; - dir = 10 - }, -/area/engine/supermatter) -"cSG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSH" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "smblast"; - name = "Control Room Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHEAST)"; - icon_state = "warndark"; - dir = 6 - }, -/area/engine/supermatter) -"cSJ" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSK" = ( -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSL" = ( -/obj/item/device/radio/off, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSM" = ( -/obj/machinery/power/emitter{ - anchored = 1; - state = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSN" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSO" = ( -/obj/structure/grille, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSP" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSQ" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSS" = ( -/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 = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cST" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTe" = ( -/obj/structure/closet/radiation, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cTg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTh" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cTi" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTo" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smblast" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cTp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTr" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTD" = ( -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTF" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTG" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTI" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTJ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTK" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTL" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - layer = 3 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Center" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTO" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTQ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Supermatter APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTS" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTY" = ( -/obj/machinery/power/rad_collector{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/port_engineering) -"cTZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cUe" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUh" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/power/emitter, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUs" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUx" = ( -/turf/closed/wall, -/area/engine/port_engineering) -"cUA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUF" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUG" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cUI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cUJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cUL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUN" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Filtering Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUO" = ( -/obj/machinery/camera{ - c_tag = "Filtering Room" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUQ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/camera{ - c_tag = "Supermatter West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters"; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVb" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVc" = ( -/obj/machinery/field/generator{ - anchored = 1; - state = 2 - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cVf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVg" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVh" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVj" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space) -"cVl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVn" = ( -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVp" = ( -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVv" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVw" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "superinput" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVx" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVC" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/camera{ - c_tag = "Supermatter East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/port_engineering) -"cVG" = ( -/obj/item/weapon/wirecutters, -/turf/open/space, -/area/space) -"cVH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVL" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVM" = ( -/obj/machinery/the_singularitygen{ - anchored = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVN" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVO" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVP" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVQ" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Filtering Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVT" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVU" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/supermatter) -"cVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVW" = ( -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVY" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/supermatter) -"cVZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cWd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space) -"cWe" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWj" = ( -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWl" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWm" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWo" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWr" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWt" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWu" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWv" = ( -/obj/machinery/mass_driver{ - id = "engicannon" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - tag = "smin"; - volume_rate = 700 - }, -/obj/machinery/power/supermatter_shard{ - anchored = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWx" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWz" = ( -/turf/open/floor/plating, -/area/engine/supermatter) -"cWA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space) -"cWE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWF" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWG" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWI" = ( -/obj/machinery/particle_accelerator/control_box{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 0; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWL" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage1"; - name = "secure storage" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/port_engineering) -"cWM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/electronics/airlock, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWP" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/tank_dispenser, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWQ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWU" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWV" = ( -/obj/structure/sign/securearea{ - color = ""; - desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; - name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWX" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/space) -"cWY" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/space) -"cXc" = ( -/obj/structure/particle_accelerator/power_box{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXd" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXe" = ( -/obj/structure/particle_accelerator/end_cap{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXf" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXg" = ( -/obj/machinery/camera{ - c_tag = "Engineering PA"; - dir = 9; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the singularity chamber."; - dir = 2; - layer = 4; - name = "Singularity Engine Telescreen"; - network = list("Singularity"); - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXi" = ( -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXj" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/camera{ - c_tag = "Port Engineering Secure Storage"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXk" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cXl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXn" = ( -/obj/machinery/door/poddoor{ - id = "engicannon" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cXo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXp" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXq" = ( -/obj/structure/window{ - color = "red"; - desc = "A window, break in case of emergency."; - dir = 1; - icon_state = "window"; - tag = "icon-window (NORTH)" - }, -/obj/machinery/button/massdriver{ - id = "engicannon"; - name = "\improper JETTISON ENGINE"; - pixel_y = -22; - req_access_txt = "32" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/engine/supermatter) -"cXr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXt" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXu" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXw" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage1"; - name = "Secure Storage"; - pixel_x = 24; - pixel_y = 0; - req_access_txt = "10" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering Middle"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXx" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - volume_rate = 5000 - }, -/turf/open/floor/plating/airless, -/area/space) -"cXz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/space) -"cXA" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXE" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXG" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXI" = ( -/obj/machinery/field/generator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXM" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Port Engineering South" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXN" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXY" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYb" = ( -/obj/item/device/multitool, -/turf/open/space, -/area/space) -"cYd" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYe" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYf" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYh" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYi" = ( -/obj/structure/grille, -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYk" = ( -/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 = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYq" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYr" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYu" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYw" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYD" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/space, -/area/space) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aad -aad -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aac -aac -aac -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -aac -atM -auw -auw -auw -auw -axm -axm -axm -atM -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aac -aaf -aac -aaa -ass -ath -ath -aux -auw -awf -auw -ayu -azs -aAF -atM -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aac -aaf -aac -arO -ast -ati -atN -auy -avl -awg -avl -ayv -azt -aAG -atM -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -asu -ath -ath -auz -auw -awh -axf -ayv -azt -aAG -axm -aac -aac -aaf -aac -aaa -aaa -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aac -aac -aad -aad -aad -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -bBl -bDd -axm -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -atM -auw -auw -auw -axg -ayw -azt -aAG -axm -aaa -aaa -aaf -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -atm -aac -aac -aac -aaa -aaa -aaf -aac -aaa -aaa -aaa -atM -axm -axm -awg -axm -axm -atM -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cPz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -asv -atj -atj -auA -auw -awi -auw -ayx -azt -aAG -axm -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aac -aac -aaa -aaa -atM -bzM -axm -bDd -axm -ayu -atM -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -arP -asw -atk -atO -auB -avl -awg -axh -ayv -azt -aAH -atM -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aAL -azt -azA -azt -azA -azt -aAL -aaa -aac -aac -aac -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -asx -atj -atj -auC -auw -awh -axf -ayy -azt -aAI -atM -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aAL -aDF -bBm -azt -bEK -azt -aAL -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -aac -atM -auw -auw -auw -auw -ayz -azt -auw -atM -atM -atM -atM -axm -axm -axm -atM -atM -atM -atM -atM -aaa -aaa -atM -atM -atM -atM -atM -aAL -aAL -atM -aAL -aAL -atM -atM -atM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aAL -bzN -biA -azt -aNf -bGy -aAL -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axi -ayA -azu -aAJ -aBI -aCF -aDE -aER -aCF -aCF -aCF -aAJ -aKv -aLJ -aNc -axm -aaa -aaa -axm -aTP -aVk -auw -aYG -bap -bbD -bdg -bbD -bfP -bfP -bit -aAL -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -atM -bzN -biA -bDe -bDj -bGy -aAL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auw -ayB -azv -aAK -azt -azt -aDF -aES -aGd -aGd -aGd -aJs -aGd -aLK -aNd -auw -auw -auw -auw -aTQ -aVl -auw -aYH -azt -azt -bdh -azt -azt -azt -aVl -aAL -aaa -aaa -aaa -aaa -aac -aac -aac -bjX -bjX -bjX -bjY -bBn -bDf -axm -bGz -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auw -auw -azw -auw -ayB -azv -azv -aET -auw -azw -auw -auw -auw -aLL -aNe -aOk -aOk -aOk -aqg -aTR -aVm -aqg -aTR -aYP -aYP -bdi -aYP -aYP -aYP -biu -bjX -bjX -bjX -boM -boM -boM -bjX -bjX -bjX -bwC -byc -bjY -bBo -aNf -bEL -awg -bEL -bKa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axm -azx -aAL -aAL -aAL -aAL -aAL -aAL -azx -axm -aaa -auw -aLM -aNf -aOl -aPD -aPD -apB -aPD -aPD -apB -aPD -aPD -aPD -aPD -aPD -bfQ -azt -biv -bjX -bly -bmU -bmV -bmV -bmV -bmV -bui -bvo -bmV -boR -bjY -bBo -bDf -axm -axm -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aac -auw -azw -auw -aBJ -aBJ -aBJ -aBJ -auw -azw -auw -aaa -axi -aLN -aNf -aOm -aPE -aQR -aSm -aTS -aTS -aXh -aYI -aYI -aYI -bdj -bew -bfR -azt -biw -bjY -blz -bmV -boN -boN -bmV -bmV -buj -bvo -bwD -bmV -bjY -bBo -bDg -azA -bzM -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auD -awj -azy -awj -auE -auE -auE -auE -awj -axl -awj -aJt -auw -aLO -aNf -aOn -aPF -aQS -aSn -aTT -aPG -aPG -aPG -aPG -aPG -aPG -bex -bfR -azt -bix -bjY -blz -bmW -boO -bqy -bsc -bmV -buk -bvp -bwE -bmV -bzO -bBo -aNf -azt -bGA -axm -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -auD -avm -awj -axj -ayC -avo -avo -aBK -aCG -aDG -aEU -avo -avo -aIr -aJu -auw -aLN -aNf -azt -aPG -aQT -aSo -aSn -aSo -aXi -aSo -aSn -aSo -bdk -bex -bfR -azt -biy -bjY -blz -bmW -boP -bqz -bsc -bmV -bmV -bmV -bwF -byd -bzP -bBp -bqD -azt -bGB -axm -aac -aac -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -auE -avn -avn -axk -avo -azz -avo -azz -avo -azz -avo -azz -avo -aIr -aJu -auw -aLP -aNf -azt -aPG -aQU -aSn -aTU -aVn -aPG -aYJ -baq -aSo -aPF -aPF -bfP -bfP -biz -bjZ -blz -bmW -boQ -bqA -bsc -bmV -bmV -bmV -bmV -bmV -bzO -bBo -bDh -azv -bGC -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -auE -avo -avo -axl -avo -azz -avo -azz -aCH -azz -avo -azz -avo -aIr -aJu -axi -aLP -aNf -azt -aPG -aPE -aSn -aTV -aVo -aPG -aPG -aPG -aXi -aPG -aPG -azt -bhd -biA -bka -blz -bmW -boO -bqy -bsc -bmV -buk -bvq -bwG -bmV -bzO -bBo -bDf -axm -axm -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -auE -avp -avp -axk -avo -azz -avo -azz -avo -azz -avo -azz -avo -aIr -aJu -auw -aLQ -aNf -aOo -aPH -aQV -aSp -aTW -arV -aPH -awF -bar -aSo -aPI -aPI -aPK -aPK -biB -bjZ -blz -bmX -boR -boR -bmV -bmV -bul -bvq -bwH -bmV -bjY -bBo -aNf -bEM -awg -bEM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aac -aaf -aac -aaa -aaa -aaa -aaa -auF -avm -awj -axj -apn -avo -aAM -aBL -aCI -aDH -aEV -avo -avo -aIr -aJu -auw -aLR -aNg -aOp -aPG -aQW -aSo -aSn -aSo -aXi -aSo -aSn -aSo -bdl -bey -bfS -azt -biC -bjY -blz -bmY -bmV -bqB -bsd -btd -bum -bvq -bwI -btd -bjY -bBn -bDf -axm -bGz -axm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auF -awj -axl -awj -auE -auE -auE -auE -awj -axl -awj -aJv -auw -aLN -aNf -aOq -aPI -aQX -aSn -aTX -aPG -aPG -aPG -aPG -aPG -aPG -bey -bfS -azt -biD -bjY -blA -bmZ -boS -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bjY -bBq -bDi -bEN -axm -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aac -auw -azw -auw -aBM -aBM -aBM -aBM -auw -azw -auw -aaa -axi -aLS -aNf -aOr -aPE -aQY -aSq -aTY -aTY -aXj -aYL -aYL -aYL -bdm -bez -bfS -azt -biE -auw -blB -bna -boT -boT -boT -bte -azt -aBO -aBO -aBO -auw -bBr -aNf -bEO -atM -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axm -azx -aAL -aAL -aAL -aAL -aAL -aAL -azx -axm -aaa -auw -aLT -aNh -aOs -aPJ -aPJ -aqh -aPJ -aPJ -aqh -aPJ -aPJ -aPJ -aPJ -aPJ -bfT -bhe -biF -aYO -blC -bnb -azt -azt -bnd -btf -azt -azt -azt -azt -aYO -biA -aNf -bEP -bGD -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aah -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auw -auw -azw -auw -aBN -azA -azA -aEW -auw -azw -auw -auw -auw -aLN -aNf -aOt -aPK -aPK -aqi -aTZ -aVq -aqi -aTZ -azt -azt -azt -azt -aNf -azt -biG -bkb -blD -bnc -bnd -bqC -bse -btg -azu -azu -azu -azu -bzQ -bBs -bDj -bEP -atM -aac -aac -aac -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aac -aac -aac -aac -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axm -ayE -azA -aAN -azt -azt -aDF -aEX -aGe -aGe -aGe -cIw -aGe -aLU -aNd -aOu -auw -auw -auw -aUa -aVr -auw -aYM -azt -azt -azt -azt -aNf -azt -biF -aYO -blC -bnd -boU -bqD -bnd -btf -azt -azt -azt -azt -aYO -bBt -aYP -bEQ -atM -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axm -ayF -azv -aAK -azv -aCJ -aDI -aEY -azv -azv -azv -cIx -aKw -aLV -aNi -aOv -aaa -aaa -axm -aUb -aVs -auw -aYN -aPK -aPK -bdn -beA -bfU -aPK -biH -auw -blE -bne -boV -bqE -bsf -bth -bun -aYP -bwJ -bye -bzR -bnc -bDk -aAG -atM -aac -aac -aac -aaa -aac -aac -aac -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auw -axm -axm -axm -aBO -axr -axr -axr -axr -axr -aDR -aJx -axr -axr -axr -aOw -axr -auw -auw -auw -auw -auw -aYO -aYO -bbE -bbE -bbE -bfV -aYO -biI -bkc -bkc -bkc -bkc -bqF -bkc -bkc -buo -bvr -bvr -bvr -bvr -bvr -bvr -bvr -bGE -bGE -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axm -auw -axr -aDJ -aDJ -axr -aHm -aIs -aJy -aIs -aLW -aLW -aOx -aPL -auT -ava -avA -avI -awB -azt -azt -bbF -bdo -bdo -bfW -azt -biJ -bkc -blF -bnf -boW -bqG -blH -bkc -bup -bvs -bwK -byf -bzS -bBu -bDl -bER -bEU -bIo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aac -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axr -aDK -aEZ -axr -aHn -aIt -aJz -aJz -aJz -aJz -aJz -aPM -auS -auZ -avz -avH -awA -aYP -aYP -bbG -bbG -bbG -bfX -bhf -bdi -bkd -blG -bng -boX -bqH -bng -bkd -buq -bvr -bwL -byg -bzT -bBv -bDm -bES -bES -bGE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aac -aac -aac -cSe -cSe -cSe -cSe -cVD -cSe -cSe -cSe -cSe -cSe -cVD -cSe -cSe -cSe -cSe -aac -aac -aac -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -axr -aDL -aFa -axr -aHn -aIu -aCb -ayP -ayP -aNj -axr -aPN -auw -avc -avC -avK -awD -azt -azt -bbH -bdp -beB -bfY -bhg -biK -bkc -blH -bnh -boY -bqI -blH -bkc -bur -bvr -bwM -byg -bzT -bBw -bDn -bET -bGF -bES -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aii -aii -aii -aii -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aac -cSe -cKd -cKd -cUx -cUx -cUx -cUx -cUx -cUx -cUx -cUx -cUx -cUx -cUx -cKd -cKd -cSe -aac -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -axr -axr -aDM -aBS -axr -aHn -aIu -aJA -aKx -aLY -ayP -axr -aPN -auw -avb -avB -avJ -awC -azu -azu -bbI -bdq -beC -bfZ -bhh -azt -bkc -blI -blF -boZ -bqI -blF -bkc -bur -bvr -bwN -byh -bzU -bBx -bDo -bEU -bGG -bES -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -aac -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaf -aaa -cKd -cKd -cKd -cKd -cSK -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aac -aac -aac -cSK -cKd -cKd -cKd -cKd -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -ajd -aii -aii -aac -aac -aac -aaa -aaa -aaa -axr -aCK -ayP -aFb -aDR -aHn -aIu -aJB -aKy -aLZ -ayP -aob -aPO -auw -avb -avE -avb -axm -azt -azt -bbH -bdr -beD -bbH -aNf -biL -bkc -blH -bni -boZ -bqI -bsg -bkc -bur -bvr -bwO -byi -bzV -bBy -bDp -bEV -bGH -bGE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aac -cBG -aac -aii -aaa -aaa -aaa -aaa -aaa -aaf -aaa -cKd -cSe -cSL -aoK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -aoN -cSK -cSe -cKd -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aac -aaa -aac -aaa -aac -aaa -alY -aaa -aac -aaa -atl -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -axr -aCL -aDN -aFc -aGf -aHn -aIu -aJC -ayP -ayP -aNk -axr -auL -auU -avb -avD -avL -awB -aYQ -azt -bbE -auw -auw -bbE -aNf -azt -bkc -blJ -bnj -bpa -bqI -blH -bkc -bus -bvt -bvt -byj -bvr -bBz -bDq -bEW -bGI -bGE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aii -aii -aii -aii -aac -aac -aaa -cBH -aaa -aac -aac -aii -aii -ajd -aii -aaf -aaa -cKd -cSe -cSK -aaa -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -aac -cSK -cSe -cKd -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -amU -anO -aoG -aaa -amU -anO -aoG -aaa -amU -anO -aoG -aaa -aii -aac -aac -aac -aaa -aaa -aaa -axr -aCM -ayP -aFd -aGg -aHn -aIu -aJD -ayP -aMa -aNl -aOy -aOy -aOy -aOy -aOy -aOy -aOy -aYR -azt -azt -azt -azt -azt -aNh -azu -bke -blK -blK -bpb -bqJ -bsh -bke -but -bvu -bwP -byk -buv -bvr -bDr -bvr -bGE -bGE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -aaa -aac -aaa -aac -aaa -aaa -cBH -aaa -aaa -aac -aaa -aac -aaa -aaa -aaf -aaa -cKd -cSg -cSM -aaa -cSK -cSK -cVc -aaa -aaa -aaa -aaa -cVc -aaa -aaa -cVc -cSK -cSK -aac -cYh -cYq -cKd -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aam -aaa -aaa -afJ -aac -amU -anP -aoG -aaa -amU -anP -aoG -aaa -amU -anP -aoG -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -axr -axr -axr -axr -aGg -aHo -aIu -axr -axr -axr -axr -aOy -aPQ -aPQ -aPQ -aUj -avM -aOy -aYS -azt -azt -azt -azt -azt -bhi -biM -bkc -blH -blH -bpc -blF -blH -bkc -buu -bga -bwQ -byl -biO -biO -bpt -bEX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aac -cvQ -cvQ -cvQ -cvQ -cvQ -aaa -cBI -aaa -cvQ -cvQ -cvQ -cvQ -cvQ -aac -aaf -aaa -cKd -cSf -cSK -aac -cSK -cSK -aaa -aaa -cNv -aaa -aaa -aac -aaa -aaa -aaa -cSK -cSK -aac -cSK -cSf -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -amU -anP -aoG -aac -amU -anP -aoG -aac -amU -anP -aoG -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -awt -aCX -aGh -aHp -aIv -aJE -aJE -aJE -aNm -aOz -aPR -aRd -aSz -aSA -aSA -aOy -aYT -azt -azt -bds -azt -azt -azt -biN -bkc -bkc -bkc -bkc -bkc -bkc -bkc -bga -bga -bwR -bnx -bzW -bBA -bDs -bEX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -cvR -cwW -cwW -cwW -cwW -cAD -cBJ -cCQ -cDG -cDG -cDG -cDG -cHc -aaa -aaf -aaa -cKd -cSh -cSN -aac -cSK -cSK -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -cSK -cSK -aac -cSg -cSP -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -amU -anP -aoG -aaa -amU -anP -aoG -aaa -amU -anP -aoG -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aaa -awt -ayP -aGi -aHq -aIw -aIw -aIw -aMb -aNn -aOA -aPS -aRe -aSA -aSA -aSA -aOy -aOy -aOy -bbJ -aYO -aYO -bga -bga -bga -bga -biO -bnk -bpd -bqK -bsi -bti -buv -bga -bwR -bnx -bzX -bga -bDt -bDt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -aac -cvS -cvS -cvS -cvS -cvS -aaa -cBJ -aaa -cvS -cvS -cvS -cvS -cvS -aac -aaf -aac -cKd -cKd -cSf -aac -cSK -cSK -cVc -aac -aac -cNs -cWX -cNK -aac -aaa -aaa -cSK -cSK -aac -cSf -cKd -cKd -aac -aaf -aac -cYD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aii -aii -aii -aac -aaa -amU -anP -aoG -aaa -amU -anP -aoG -aaa -amU -anP -aoG -aaa -aac -aaa -auG -axn -axn -axn -axn -axr -axr -axr -aFe -aGj -axr -aIx -aIy -aKz -aKE -aNo -aOy -aPT -aRf -aSB -aSA -aSA -aXl -aYU -bas -bbK -bbK -bbK -bga -bhj -biO -biO -biO -bnl -biO -bqL -bsj -btj -bqX -bqX -axD -bsj -axH -bBB -bDt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -aaa -aaa -aaa -aac -aaa -aaa -aaa -cBJ -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaf -aaa -cOD -cKd -cSO -aac -cSK -cSK -aaa -aaa -aac -arc -aAr -aAs -aac -aaa -aaa -cSK -cSK -aac -cYi -cKd -cOD -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aii -aaa -aac -aaa -aaa -aaa -anQ -aaa -aaa -aaa -anQ -aaa -aaa -aaa -anQ -aaa -aaa -auG -auG -auG -axo -ayG -azB -axn -aBP -ayP -aDO -ayP -aGi -axr -aIy -aJF -aac -aKE -aNo -aOy -aPU -aRg -aSA -aSA -aSA -aSA -aSA -bat -bbL -bdt -bbL -bga -bga -bga -bkf -blL -bnm -bnm -bnm -bsk -btk -bhk -bnm -bwT -byn -axG -bBC -bDu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -aac -cvQ -cvQ -cvQ -cvQ -cvQ -aaa -cBJ -aaa -cvQ -cvQ -cvQ -cvQ -cvQ -aac -aaf -aaa -cKd -cKd -cSf -aac -cSK -cSK -aaa -aaa -aac -cNu -cWY -cNM -aac -aac -cVc -cSK -cSK -cYb -cSf -cKd -cKd -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aii -aac -akd -akZ -akZ -amV -anR -anR -anR -anR -anR -anR -anR -anR -anR -anR -atP -auH -avq -awk -axp -ayH -azC -aAO -aBQ -aCN -aBQ -aBQ -aGk -axr -aIz -aIx -aKz -aKE -aNo -aOy -aPV -aRh -aSA -aSA -aSA -aXm -aSA -bas -bbL -bdu -beE -bgb -bhk -bhk -bkg -blM -bga -bpe -bpe -bpe -bpe -bpe -bpe -bpe -bpe -axI -bBD -bDt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -aaa -cvR -cwW -cwW -cwW -cwW -cAD -cBJ -cCQ -cDG -cDG -cDG -cDG -cHc -aaa -aaf -aaa -cKd -cSg -cSP -aac -cSK -cSK -aaa -cVG -aac -aac -aac -aac -aac -aaa -aaa -cSK -cSK -aac -cSh -cYq -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aii -aaa -aac -aaa -aaa -aaa -anS -aaa -aaa -aaa -anS -aaa -aaa -aaa -anS -aaa -aaa -auG -auG -auG -axq -ayI -azD -aAP -aBR -aCO -aDP -aDP -aGl -axr -axr -awt -axr -aKE -aNo -aOy -aPQ -aPQ -aPQ -aSA -avO -aXn -aYV -aOy -bbM -bdv -beF -bgc -bgc -bgc -bgc -bgc -bgc -bpe -bqM -bpe -bqM -bpe -bqM -bpe -bqM -axI -bBD -bDt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -alY -cvS -cvS -cvS -cvS -cvS -aaa -cBJ -aaa -cvS -cvS -cvS -cvS -cvS -aac -aaf -aaa -cKd -cSf -cSK -aaa -cSK -cSK -aaa -aaa -aaa -aac -aaa -aaa -aaa -cNJ -aaa -cSK -cSK -aac -cSK -cSf -cKd -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aii -ajd -aii -aac -aaa -amU -anT -aoG -aaa -amU -anT -aoG -aaa -amU -anT -aoG -aaa -aac -aaa -auG -axn -axn -axn -axn -aBS -aCP -aDO -ayP -aGm -ayP -ayP -ayP -ayP -aKI -aNo -aOy -aOy -aOy -aOy -aUk -aOy -aOy -aOy -aOy -bbL -bdw -beF -bgc -bhl -biP -bkh -blN -bnn -bpe -bqN -bpe -btl -bpe -bvw -bpe -byo -axI -bBD -bDt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -ajd -aaa -aaa -aaa -aac -aaa -aaa -aaa -cBJ -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaf -aaa -cKd -cSi -cSM -aaa -cSK -cSK -cVc -aaa -aaa -cVc -aaa -aaa -aaa -aaa -cVc -cSK -cSK -aac -cYh -cYr -cKd -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -amU -anT -aoG -aaa -amU -anT -aoG -aaa -amU -anT -aoG -aac -aac -aaa -aaa -axr -ayJ -azE -aAQ -aBT -aCQ -axr -ayP -aGn -axr -aIA -aHr -aKA -aKE -aNp -aJE -aPW -axr -aSC -aUl -avP -aXo -aYW -bau -bbL -bdx -beF -bgc -bhm -bhm -bhm -blO -bno -bpf -bqO -bsl -bsl -buy -bvx -bwU -bwU -axI -bBE -bDu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aii -aac -cvQ -cvQ -cvQ -cvQ -cvQ -aaa -cBJ -aaa -cvQ -cvQ -cvQ -cvQ -cvQ -aac -aaf -aac -cKd -cSf -cSK -aac -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -cSK -aaa -cSK -cSf -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -amU -anT -aoG -aac -amU -anT -aoG -aac -amU -anT -aoG -aaa -aac -aac -auI -axr -ayJ -azF -auI -auI -auI -aDQ -ayP -axr -axr -aDO -axr -axr -aHq -aIw -aMb -aPX -aRi -aSD -aSD -avR -aSD -aSD -bav -bbN -bdy -beG -bgc -bhn -bhm -bki -blP -bnp -bpg -bqP -bsm -btm -buz -btm -bwV -byp -axI -bBE -bDt -aaa -aaa -aaa -aaa -aaa -aaa -bOz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -aaa -aaa -aaa -aaa -afJ -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -cvR -cwW -cwW -cwW -cwW -cAD -cBJ -cCQ -cDG -cDG -cDG -cDG -cHc -aaa -aaf -aaa -cKd -cSh -cSR -aoL -cSK -cSK -cSK -cNt -cNt -cNt -cNt -cNt -cNt -cNt -cSK -cSK -cSK -arU -cYj -cSP -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aii -aac -amU -anT -aoG -aaa -amU -anT -aoG -aaa -amU -anT -aoG -aac -aac -aaa -auI -auI -auI -azG -auI -aBU -aCR -auI -ayP -ayP -ayP -aGm -axr -aKB -ayP -aNq -aKE -aPY -aRj -aSE -aUl -avQ -aUl -aUl -bau -bbL -bbL -beH -bgc -bho -bhm -bkj -blQ -bnq -bpe -bpe -bpe -bpe -bpe -bpe -bpe -bpe -axI -bBE -bga -aaa -aaa -bIp -bKb -bLC -bIp -bLC -bPG -bIp -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -afJ -aae -aae -aac -aaa -aaa -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aii -aac -cvS -cvS -cvS -cvS -cvS -aaa -cBJ -aaa -cvS -cvS -cvS -cvS -cvS -aac -aaf -aaa -cKd -cKd -cSQ -cKd -cNt -cNt -cNt -cNt -cWj -cWj -arT -cWj -cWj -cNt -cNt -cNt -cNt -cKd -cSQ -cKd -cKd -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -amU -anU -aoG -aaa -amU -anU -aoG -aaa -amU -anU -aoG -aaa -aii -auI -auI -axs -ayK -azH -avw -avw -ayM -awr -ayP -axr -aHr -aIB -axr -aKC -aLZ -ayP -aKE -aMh -aRj -aSF -aUl -avS -aUl -aYX -aRj -bbL -bbL -beI -bgc -bhp -bhm -bkk -blR -bnr -bph -bqQ -bqR -btn -bgc -bvy -bga -byq -axK -bBE -bga -aaa -aaa -bEY -bKc -bLD -bEY -bLD -bPH -bEY -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aii -aaa -aaa -aac -aaa -aac -aaa -aaa -cBJ -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaa -cKd -cSj -cSS -cKd -cTY -cTY -cTY -cNt -cWj -cWG -cXd -cXt -cWj -cNt -cTY -cTY -cTY -cKd -cYk -cYs -cKd -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aii -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -auI -auI -awl -axt -awq -azI -avw -aBV -avw -awr -ayP -axr -axr -axr -axr -axr -aMc -axr -aKE -aMh -aRj -aSG -aUl -aUl -aUl -aYY -aRj -bbL -bbL -beF -bgd -bhm -bhm -bkl -blS -bnr -bpi -bqR -bqR -bto -bgc -bvz -bga -byq -axJ -bBE -bqZ -bEY -bEY -bEY -bKb -bLC -bEY -bLC -bPG -bEY -aac -aac -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -cBK -aaf -aaf -aaf -aaf -cKd -cKd -cKd -cKd -cKd -cKd -cKd -cSQ -cKd -cTX -cTX -cTX -cKd -aoO -cWF -cXc -cWj -cXA -cKd -cXJ -cTX -cTX -cKd -cSQ -cKd -cKd -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aii -aii -aii -aii -aii -ajd -aii -aii -aii -aii -aii -aii -aii -aii -auI -avr -awm -axu -awq -azJ -aAR -avw -aCS -awr -ayP -axr -aGm -aIC -axr -aIC -ayP -aNr -aKE -aMh -aRj -aSH -aUl -aUl -aXp -aYZ -aRj -bbL -bbL -beJ -bge -bhq -bhq -bkm -blT -bns -bpj -bqS -bqR -btn -bgc -bvy -bga -biO -axM -bBE -bqZ -bEZ -bGJ -bIq -bKd -bLE -bNc -bGJ -bPI -bEY -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aac -aaa -aaa -aac -aaa -aaa -czD -cBL -czD -aaa -aac -aaf -cKd -cKJ -cKZ -cLV -cMP -cKd -cSl -cSU -cLV -cUa -cUa -cVf -cKd -aqB -cWI -cXf -cXu -cXB -cKd -cXL -cXQ -cUa -cLV -cSU -cYu -cKd -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awr -avs -avw -axu -awq -azK -avw -avw -avw -awr -ayP -ayP -aHs -ayP -axr -aFd -ayP -aNr -aKE -aMh -aRj -aSI -aUl -aUl -aUl -aZa -aRj -bbL -bbL -beF -bgc -bhr -biQ -bkn -blU -bnr -bpk -bgc -bgc -bgc -bgc -bgc -bga -byr -axL -bBF -bAh -bFa -bGK -bGK -bKe -bBL -bBL -bOA -bPJ -bqZ -aac -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bWo -bWo -cfn -bWo -bWo -cpb -bWo -cfn -bWo -aaa -aaa -aac -aaa -aaa -aac -aaa -aaa -czD -cBM -czD -aaa -aaa -aaf -cKd -cKG -cKY -cLU -asF -cOE -cSk -cST -cTx -cTZ -cUA -cUA -cVH -cWh -cWH -cXe -cWe -cWE -cVH -cXK -cXK -cXX -cLc -cSU -cYt -cKd -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awr -avt -avw -axv -awq -azK -avw -aBW -aBW -auI -axr -axr -ayP -ayP -axr -aKD -aMd -aIw -aOB -aMh -aRj -aSJ -aUl -aws -aUl -aZb -bau -bbL -bbL -beF -bgc -bhs -bhm -bko -blV -bnr -bpl -bqT -bqT -bqT -bqT -bgc -bwW -bys -axO -bBG -bDv -bFb -bGL -bBL -bKf -bBL -bBL -bBL -bPI -bEY -aac -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bWo -bWo -ckO -clU -cmZ -cnV -cpc -cpQ -cqM -bWo -aaa -bWo -bWo -cfn -cfn -bWo -aac -czD -czD -cBL -czD -czD -aaa -aaf -cKd -cKd -cLb -cLX -cNd -cPA -cSn -cSU -cRT -cLa -cUC -cVh -cKd -cWj -cWg -cXg -cWg -cWj -cKd -cXN -cLa -cXZ -cYe -cYm -cYw -cYB -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -awr -amS -awn -axw -awq -azK -avw -aBX -aCT -auI -aFf -axr -ayP -ayP -aJG -aKE -aMe -aNs -aNs -aPZ -aRk -aSK -aSK -awa -aSK -aZc -baw -bbO -bbL -beF -bgc -bht -bhm -bhm -blW -bnr -bpl -bqU -bqU -bqU -bqU -bgc -bnx -bpq -axN -bqZ -bqZ -bFc -bGM -bBN -bKg -bBN -bBN -bDw -bPI -bEY -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bWo -cjx -cbu -cbu -cna -cnW -cpc -cpc -cqN -bWo -bWo -bWo -cbu -cvT -cwX -cfn -aac -czE -cAE -cBN -cCR -czE -aaa -aaf -cKd -cKL -cLa -cLW -cKY -cOO -cSm -cSV -cTy -cUb -cUB -cVg -cOD -cKd -cWJ -cKd -cWJ -cKd -cOD -cXM -cXR -cXY -cYd -cYl -asI -cYA -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auI -amT -awo -axx -ayL -apQ -aAS -aBY -asc -auI -axr -axr -ayP -aID -aID -aKE -aMf -axr -aCX -aNr -aRj -aSL -aUl -awv -aXq -aZd -bax -bbP -bbP -beK -bgc -bhu -bhm -bhm -blX -bnt -bpm -bqV -bqV -bqV -buA -bvA -bwX -byt -axN -bBH -bBL -bFd -bGN -bIr -bKh -bIr -bBL -bFd -bPI -bEY -aaa -aaa -aac -aaf -aac -arQ -asy -arR -asy -arR -asy -ayR -aaa -cfn -cjy -cbu -cbu -cnb -cnX -cpc -cpc -cbu -bWo -csH -cjy -cbu -cbu -cwY -bWo -bWo -czE -cAF -cBO -cCS -czE -aaa -aaf -cKd -cKP -cLa -cLa -cNf -cPA -cSp -cSX -cRT -cLa -cSU -cLa -cVJ -cWk -cWK -cXh -cXv -cXC -cXG -cLa -cSX -cLc -cLc -cYl -cYy -cYC -aaa -aaf -aac -cYD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awr -avw -avw -avw -avw -apO -avw -aBZ -aBZ -auI -aFg -auI -aDR -axr -axr -aKE -aMg -axr -axr -axr -aRj -aRj -aRj -aRj -aRj -aRj -aRj -bbQ -bbL -beF -bgc -bhv -bhv -bkp -bhv -bnu -bpn -bqW -bqW -bqW -buB -bvB -bwY -byu -axN -bBI -bBL -bBL -bGN -bIr -bBL -bIr -bBL -bBL -bPI -bRn -aaa -aaa -aac -aaf -aac -bYy -bZS -auK -auK -cbn -awu -bYy -aaa -bWo -cjz -cbu -cbu -cnc -cnY -cpd -cpR -cqO -cne -csI -cbu -cbu -bWo -bWo -bWo -czd -czE -cAG -cBP -cCT -czE -aaa -aaf -cKd -cKM -cLc -cLY -cNe -cRN -cSo -cSW -cTz -cUc -cUD -cVi -cVI -cVi -cVi -cVi -cVi -cVi -cXF -cVi -cXS -cKY -cKY -cYn -cYx -cKd -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awr -avw -awp -avw -ayM -apS -aAT -aCa -aCV -aCV -aAT -aGo -aHt -aHt -aHt -aKF -aMh -aNt -aOC -aQa -aAv -aSM -aUm -awx -aXr -aZe -bay -bbK -bbK -beL -bgf -bgf -bgf -bgf -bgf -bgc -bgc -bgc -bgc -bgc -bgc -bgc -bnx -byu -axN -bBJ -bBL -bBL -bGN -bIr -bBL -bIr -bBL -bOA -bPI -bRn -bRn -bRp -bRn -bRn -bWY -arR -bZT -cbn -auK -cbn -cfk -cgu -aaa -cfn -cjA -ckP -clV -cnd -cnZ -cbu -cpS -cqP -bWo -cbu -cbu -cbu -bWo -cwZ -bWo -bWo -czE -cAH -cBQ -czE -czE -bWo -cFr -cKd -cKQ -cLa -cLZ -cNg -cKd -cSr -cSZ -cTy -cUb -cUE -cVj -cVK -cWl -cWM -cWM -cXw -cXD -cXH -cXO -cXT -cWM -cWM -cYo -cYz -cKd -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awr -avx -awq -avw -ayN -apR -avw -azN -aAT -aCV -aFh -aGo -aHt -aIE -aHt -aKG -aKF -aNu -aOD -ayP -aAu -aSM -aUn -aww -aXs -aZf -baz -bbR -bbR -beM -bgg -bhw -biR -bkq -bgf -bnv -bpo -bqX -bqX -bqX -bqX -bqX -bwZ -byu -axN -bBK -bBL -bBL -bGN -bIr -bBL -bIr -bBL -bBL -bPK -bRn -bSp -bTH -bUQ -bRn -aaa -bYy -bZS -auK -auK -cbn -cfl -bYy -aaa -bWo -aAi -bWo -clW -bWo -bWo -bWo -cne -bWo -bWo -csJ -cmb -cbu -bWo -cbu -cye -coa -bWo -cAI -cAK -cbu -cDH -bWo -cFs -cKd -cKd -cLj -cKd -cKd -cKd -cSq -cSY -cTA -cUd -cUd -cKd -cKd -cKd -cWL -cWL -cKd -cKd -cKd -cKd -cKd -cKd -cYf -cKd -cKd -cKd -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aac -aac -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -auI -auI -awr -awr -auI -apU -azO -auI -auI -auI -auI -auI -axr -axr -axr -aKE -aMh -aNu -aOE -ayP -aRn -aSM -aUo -awy -aXt -aZg -baA -bbS -bbL -beN -bgh -bhx -bhx -bkr -bgf -bnw -bpp -bqY -bqY -bqY -bqY -bqY -bqY -byv -axN -bBL -bBL -bBL -bGN -bBL -bBL -bBL -bBL -bBL -bPL -bRn -bSq -bTI -bUR -bRp -aaa -arS -asy -arR -ccO -arR -asy -ayT -aaa -bWo -cjC -ckP -clX -bWo -coa -cbu -cpT -cbu -bWo -bWo -bWo -cbu -cne -cbu -cyf -cze -bWo -cbu -cBR -cbu -cfm -bWo -cFr -bWo -cKS -cbu -cKI -cKd -cRP -cSt -cTb -cTz -cUf -cUG -cKd -cVM -cWj -cWj -cWj -cXx -cXx -cXE -cKd -aaa -cKd -cYg -cYp -cKd -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aac -aaa -aac -aac -aac -aac -aaa -aaa -aaa -aac -ald -ald -aes -ald -aes -ald -ald -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -axr -aQa -ayP -aor -apo -apT -aBQ -amZ -and -axr -afg -aBQ -aBQ -auk -aGq -aKE -aMh -aNx -aor -ayP -ayP -aSM -aSM -aSM -aSM -aSM -aSM -bbT -bbL -beN -bgg -bhy -bhx -bks -bgf -bnx -bpq -bqZ -bqZ -bqZ -bqZ -bqZ -bqZ -bqZ -axN -bBM -bBL -bBL -bGN -bBL -bBL -bBL -bBL -bBL -bBL -bRo -bSr -bTJ -bUS -bRp -aaa -aaa -bZU -bZU -ccP -bZU -bZU -aaa -aaa -bWo -cjD -bWo -clY -bWo -cbu -cbu -cbu -cqQ -cbu -cbu -bWo -cbu -bWo -cxa -cyg -czf -czF -cAJ -cBS -cbu -cbu -cEo -cbu -bWo -cKR -cLk -cMa -cKd -aoJ -cSs -cTa -cTB -cUe -cUF -cKd -cVL -cWm -cWj -cXi -cXx -cXE -cXI -cKd -aaa -cKd -cYf -cKd -cKd -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -ald -adW -aeu -afj -afF -agp -ald -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -axr -ayP -ayP -axz -ayP -azQ -aAU -ayP -ane -agb -atf -aGq -axr -ane -aBQ -ank -anV -aoa -aOG -aOG -aOG -aOG -aOG -aVQ -aOG -aOG -baB -bbU -bdz -beO -bgi -bgi -bgi -bgi -bgi -bny -bpr -bra -bsn -btp -btp -bvC -bxa -btp -axQ -bBN -bDw -bBL -bGN -bBL -bKi -bLF -bLF -bLF -bLF -bRp -bSs -bTK -bUT -bRp -aac -aac -bZU -cbo -bZW -cdY -bZU -aaa -aaa -bWo -cbu -cbu -clZ -ave -cjy -cjy -cbu -cqQ -cbu -csK -bWo -cbu -bWo -cjG -cbu -cne -cbu -cJo -cJr -cJv -cJv -cJv -cJv -cKe -cJv -cLl -cJv -cNr -cRR -cSv -cTd -cTC -cKd -cKd -cKd -cVN -cWo -cWN -cXj -cXx -cXE -cXE -cKd -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aac -aac -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -ald -adz -aet -afi -afE -ago -ald -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -axr -ayP -ayP -axA -ayQ -azR -aAV -aCc -aCX -axr -aPN -aGr -aHu -aHu -aJI -aKJ -anp -aNx -ayP -ayP -ayP -aSO -aSO -aSO -aSO -aSO -aSO -bbV -bdA -beP -bgj -bhz -bhz -bhz -bhz -bnz -bps -bqZ -bso -btq -buC -bvD -bso -byw -axP -bBO -bDx -bFe -bGN -bBL -bqZ -bLG -bNd -bOB -bPM -bRp -bSt -bTL -bUU -bRp -aaa -aaa -bZU -cbp -bZW -cdZ -bZU -aaa -aaa -bWo -cjE -ckQ -bWo -bWo -cbu -cbu -cbu -cbu -cbu -cfm -bWo -cfm -bWo -cxb -cmb -bWo -cbu -cJn -cbu -cbu -bWo -bWo -cne -bWo -bWo -bWo -bWo -cKd -cRQ -cSu -cTc -aaa -aaa -aaa -cKd -cKd -cKd -cKd -cKd -cKd -cKd -cKd -cKd -aaa -aac -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aaf -aac -aac -aaa -aaa -aai -aai -aai -abj -abj -aai -aqo -aqo -aqo -aqo -ald -adX -aex -afk -afG -agq -ald -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aAW -amW -axr -awt -axr -axr -awt -axr -axr -axr -atq -aGs -aHv -aIF -aJJ -aKE -anX -aNx -ayP -ayP -ayP -aSO -aUp -aVR -aXu -aZh -baC -bbL -bbT -beQ -bgk -bgk -bgk -bgk -bgk -bnA -bpt -bqZ -bso -btq -bso -bvE -bso -byx -axN -bqZ -bDy -bFf -bGO -bIs -bqZ -bqZ -bqZ -bqZ -bqZ -bRn -bSu -bTM -bUV -bRn -aaa -bRq -bRq -bRq -ccQ -cea -bRq -aac -aac -bWo -cjF -aIi -cma -bWo -cob -bWo -bWo -bWo -bWo -bWo -bWo -bWo -bWo -bWo -bWo -bWo -bWo -cJp -bWo -bWo -bWo -cEo -cbu -cfn -aaa -aaa -aaa -cNt -cRT -cSx -cTc -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aai -aaM -aaW -abi -abt -aai -aqk -aqD -aoQ -apD -akn -adV -aew -ald -ald -ald -ald -aAW -aAW -aAW -aAW -aAW -aCY -alg -aCY -aCY -aAW -aDU -aAW -aaa -aAW -apV -aqK -arv -aCY -aDS -aqO -aGt -aHw -aIG -aJK -aKE -anW -aNx -ayP -ayP -ayP -aSO -aUq -aVS -aXv -aZi -baD -bbR -bdB -beR -bbL -bgk -biS -bkt -bgk -bnB -bpu -brb -bsp -bsp -buD -bvF -bxb -byy -axN -bBP -bDz -bFg -bGP -bIt -bKj -bLH -bNe -bOC -bPN -bRn -bRp -bTN -bUW -bRn -bRq -bRq -bZV -cbq -cbq -ceb -bRq -aIy -aIy -bWo -cbu -cbu -cbu -bWo -cbu -bWo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfn -cJn -cfn -aaa -cfn -ccT -cvT -cfn -aaa -aaa -aaa -cNt -cRS -cSw -cTc -aaa -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -aac -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aaf -aaa -aaa -aaa -aaa -aai -aaO -aaX -abk -abv -adp -abJ -aoR -aoR -arb -aoc -adZ -aez -afm -afK -agt -aha -ahO -aix -aiM -aRr -aRr -aRr -aRr -aRr -ame -als -amY -aCY -aaa -aCY -apX -aqM -aDU -aAW -aDT -aqO -aGs -axr -axr -aGt -aKK -anX -aNx -aOH -aQb -ayP -aSO -aUr -aVT -aXw -aZj -baE -bbW -bdC -beS -bbL -bhA -biT -bku -bgk -bnC -bpv -bqZ -bsq -btq -buE -bvG -bso -byz -axN -bBQ -bDA -bAm -bGQ -bIu -bts -bts -bNf -bts -bts -bRq -bSv -bTO -bUX -bWl -bWZ -bYz -bZW -bZW -bZW -bZW -bZU -aac -aac -cfn -cjG -cbu -cbu -bWo -cbu -bWo -aaa -cqR -cqR -cqR -cqR -cqR -cqR -cqR -cqR -aaa -cfn -cJn -cfn -aac -cDI -cDI -cDI -cDI -cDI -cDI -cDI -cIY -cRV -cSz -cTf -cKK -cKK -cMf -cMr -cMG -cMZ -cNo -cNo -cNo -cNo -cNX -cLJ -aac -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aai -aaN -aaX -abk -abu -adp -abI -apE -apE -acY -adx -adY -aey -afl -afH -ags -agZ -ahN -agZ -agZ -ajC -agZ -agZ -agZ -agZ -amd -amo -amX -aCY -aaa -aCY -apW -aqL -apZ -asd -aIK -ats -aGu -aHx -aIH -aJL -aKL -anY -aNy -aAW -aAW -aAW -aSO -aSO -aSO -aSO -aSO -aSO -bbX -bdC -beT -bgl -bgk -biT -bkv -bgk -bga -bpw -bqZ -bqZ -bqZ -bqZ -bqZ -bqZ -byA -axR -bsv -bDB -bFh -bGR -bIv -bKk -bKk -bDD -bKk -bPO -bRr -bSw -apx -bUY -bSw -apy -bYA -bSw -apz -ccR -cec -bZU -aaa -aaa -cfn -cjH -cbu -cbu -cne -cbu -bWo -aaa -cqR -crR -csL -ctN -cqR -cvU -cxc -cqR -aaa -cfn -cJn -cfn -aaa -cDI -cEp -cFt -cGn -cHd -cHA -cMi -cNz -cRU -cSy -cTe -cLm -cLJ -cMg -cMg -cMH -cNa -cNp -cNp -cNp -cNp -cNY -cLJ -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aai -aak -aak -aak -aai -aaQ -aaZ -abm -abx -adp -abK -apF -acG -aoR -aoc -aea -aeB -aqo -aqo -aqo -aqo -aqo -aqo -aqo -aqo -aqo -akL -aDU -akL -aAW -amq -amX -aAW -aaa -aAW -apY -aqO -aDU -aAW -aDV -aqO -aAW -aHy -aII -aJM -aKM -anZ -aNz -aOI -aOI -aOI -aOI -aUs -aVU -aXx -aOI -baF -bbY -bdD -beU -bgm -bgk -biU -bkw -bgk -bnD -bpw -brc -bsr -bsr -bsr -bsr -bxc -byB -bAj -brg -bDC -bFi -bGS -bIw -bKl -bKl -bNg -bOD -bPP -bRs -bSx -bTQ -bUZ -bSx -bXb -bYB -bZX -bZW -bZW -ced -bZU -aac -aac -cfn -cbu -cbu -cmb -bWo -cbu -bWo -aaa -cqR -crS -csM -ctO -cqR -cvV -cxd -cqR -aaa -cfn -cJn -cfn -aaa -cDI -cEq -cFu -cGo -cHe -cHB -cIj -cJa -cRX -cSA -cTg -cLn -cLK -cMg -cMg -cMI -cNb -cNp -cNp -cNp -cNS -cNZ -cLJ -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aai -aaj -aar -aay -aaH -aaP -aaY -abl -abw -adp -aoR -aci -acF -aoR -aoc -adZ -aeA -aqo -afL -agu -ahb -aoc -aiy -agu -ajD -aqo -akK -alh -alB -amf -amq -amX -aAW -aCY -aAW -aAW -aqN -aAW -aAW -aAW -aqO -aAW -aAW -aAW -aJN -aKL -aMn -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -bbZ -bbT -beV -bgn -bgq -bgq -bgq -bgq -bgq -bpx -brd -bss -btr -buF -brg -brg -brg -bAk -brg -byE -bAp -bGT -bIx -bKm -bLI -byE -bts -bPQ -bRq -bSy -bTR -bUX -bWm -bXc -bUX -bZW -bZW -bZW -cee -bRq -aIy -aIy -bWo -cbu -ckR -cmc -bWo -cbu -bWo -bWo -cqR -crT -csN -ctP -cqR -cvW -cxe -cqR -aaa -cfn -cJn -cfn -aac -cDI -cEr -cFv -cGp -cHf -cHC -cMj -cNA -cRW -cSy -cKN -cLo -cLL -cMg -cMg -cMH -cNa -cNp -cNp -cNp -cNp -cOa -cLJ -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aai -aan -aat -aaA -aaJ -aaS -abb -abo -abz -adp -aoR -apG -apG -acZ -aod -aec -aeC -aqo -afN -agA -ahl -aoc -afN -aiN -ajE -aqo -akN -alj -alD -amh -amq -amX -aDU -aDU -aAW -aqa -aqQ -arx -aAW -aDW -aqO -aAW -aHz -aIJ -aDU -aKL -aMn -aNA -aOJ -aON -aON -aSP -aUt -aVV -aXy -aVX -baG -bca -bbT -beV -bbL -bgq -biV -bkx -blY -bnE -bpx -brd -bst -bts -bts -aoe -bxd -byC -bAl -bBR -bDD -bFj -bxg -bIy -bxg -bxg -bNh -bxg -bPR -bPR -bPS -bTS -bVa -bPR -bXc -bYC -bZY -bZY -bZY -cef -bRq -aac -aac -bWo -cir -bWo -bWo -bWo -coc -cbu -cbu -cqS -crU -csO -ctQ -cqR -cvX -cxf -cqR -aaa -cfn -cJn -cfn -aaa -cDI -cEq -cFw -cGq -cHg -cHD -cIl -cJc -cJQ -cSB -cKO -cKO -cLM -cMh -cMs -cMJ -cNc -cNq -cNq -cNI -cNq -cOb -cLJ -aac -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aai -aal -aas -aaz -aaI -aaR -aba -abn -aby -adp -aoR -aoR -aoR -aoR -ady -aeb -aeC -aqo -afM -agz -ahc -aoc -afM -agz -ahc -aqo -akM -ali -alC -amg -amr -ana -aIK -aIK -app -apZ -aqP -arw -aAW -asC -att -aDU -aDU -aDU -aDU -aKN -aMn -aNA -aOK -aQc -aRo -aSP -aUu -aVW -aXz -aZk -baH -bcb -bdB -beW -bgo -bhB -biW -bky -bkA -bnF -bpx -brd -bsu -bts -bts -bts -bts -bts -bAm -bts -byE -bxg -bGU -bIz -bDF -bDF -byE -bts -bPS -bRt -bSz -bTT -bVb -bPR -bXd -bYD -bRq -bRq -bRq -bRq -bRq -cfn -cfn -bWo -cbu -cfn -aaa -cfn -cod -bWo -bWo -cqR -crV -csP -ctR -cuZ -cvY -cxg -cqR -aaa -cfn -cJn -cfn -aaa -cDI -cEs -cFx -cGn -cHh -cHE -cIm -cNC -cDI -cKs -cDd -cLp -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -cLJ -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aai -aap -aai -aap -aai -adr -adp -abq -adp -adp -aoc -aoc -aoc -aoc -aoc -aee -aeE -aqo -afP -agC -aoW -aqo -afP -aiO -aoW -aqo -akO -alk -alE -aAW -amq -anc -anE -aov -aAW -aqc -aqR -ary -aAW -asD -aDU -aAW -aAW -aAW -aAW -aKL -aMn -aNA -auq -auM -auW -avu -avF -avF -avF -avF -awH -awJ -awL -awM -bbW -awN -awO -awQ -awR -awT -bpx -awV -brg -axC -bts -bts -axE -axF -axS -axV -ayY -aza -bts -azd -bts -bts -azg -bts -bPS -azL -azP -azM -azY -bPR -bXe -bYE -bWo -cbs -ccS -bWo -cfm -cbu -cbu -cbu -cbu -cfn -aac -cfn -cod -bWo -aaa -cqR -cqR -cqR -cqR -cqR -cqR -cqR -cqR -aaa -cfn -cJn -cfn -aac -cDI -cDI -cDI -cDI -cDI -cHF -cIn -cDI -cDI -cKt -cDd -cLq -cKv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aao -aau -aaB -aaK -aaT -abc -abp -abA -abC -abL -acj -acH -ada -adA -aed -aeD -afn -afO -agB -ahm -ahP -aiz -agB -ajF -aqo -aqo -aqo -aqo -aqo -amq -anb -aDc -aDc -aDc -aqb -aDc -aDc -aAW -asD -aIJ -aAW -aHA -aDU -aAW -aKP -aMn -aNA -aOM -aQe -aRq -aSR -aUu -aVX -aVX -aVX -baJ -bca -bbT -beY -bbL -bgq -biY -bkA -bkA -bnH -bpx -brd -brg -btu -bts -bvI -bts -byE -bAm -bts -bts -brg -bGV -bts -bKn -bts -bts -bts -bPS -bRv -azM -azM -bVd -bPR -bXf -bYE -bZZ -cbt -cbu -bWo -bWo -cfn -cfn -cbu -cfn -bWo -aaa -cfn -cod -bWo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfn -cJn -cfn -aaa -aac -aaa -aaa -aac -cDI -cHG -cIo -cJe -cDI -cKu -cDd -cLr -cKv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaq -aav -aaD -aaD -aaU -abe -abr -abB -abD -abM -acl -acJ -adc -adB -aef -aeF -afo -afQ -agD -aho -ahQ -aiA -aiQ -ajH -ako -akQ -alm -alG -aqo -amq -ang -aDc -aox -aFs -aEg -aEg -aHE -aAW -asJ -apX -aAW -aHB -aDU -aJO -aKN -aMn -aNA -aON -aON -aON -aSP -aUw -aVY -aXA -aXA -aNA -bcd -bdF -beZ -bgq -bgq -biZ -bkB -bkA -bnH -bpz -brf -brg -btv -buH -bvJ -bxf -byF -bAo -bts -bDF -bFl -bGW -bts -bts -bts -bNj -bOE -bPR -bRw -bSC -azT -bVe -bPR -bXg -bYF -bWo -cbu -ccT -bWo -aaa -aac -cfn -cbu -cfn -aaa -aaa -cnf -coe -ceg -ceg -ceg -ceg -ceg -ceg -ceg -ceg -ceg -ceg -ceg -czG -cJp -bWo -bWo -bWo -bWo -bWo -bWo -cDI -cHH -cIp -cJf -cDI -cDd -cDd -cLs -cwu -cUI -cVk -cUI -cVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -auQ -auQ -aaC -aaC -auQ -aaC -aaC -auQ -auQ -auQ -ack -acI -adb -abS -abS -abS -abS -abS -anv -ahn -ahn -anv -aiP -ajG -akm -akP -all -alF -aqo -amq -anf -aDc -aow -aFt -aEg -aqS -arz -aAW -asD -aIJ -aAW -aHC -aDU -aAW -aKQ -aMp -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aNA -aXH -bdG -bfa -bgq -bgq -bja -bja -bja -bja -bgq -brg -brg -brg -brg -bvK -bxg -byG -bAp -brg -brg -brg -bGX -bGX -bKo -bKo -bGX -bGX -bPR -bPR -bPR -bPR -bPR -bPR -bXh -bYG -bWo -bWo -bWo -bWo -cfn -cfn -cfn -cir -cfn -cfn -cfn -cng -cof -cpe -cpe -cpe -cpe -cpe -ctS -cpe -cpe -cpe -cpe -cpe -czH -cJq -cBT -cCU -bWo -cmb -cze -cwu -cwu -cHF -cIq -cDI -cwu -cKv -cTh -cKv -cwu -cUH -cUH -cUH -cUH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -arQ -asy -arR -akq -arR -arR -arR -asy -ayR -auQ -acn -acK -ade -abS -aeh -aeG -afp -abS -agF -ahp -ahS -aiC -aiR -ajI -aoc -aoc -aoc -aoc -aqo -amq -ani -aDc -aoy -aEg -aEg -aEg -arB -aAW -asD -aAW -aAW -aAW -aAW -aAW -aKR -aMq -aNC -aNC -aQf -aDU -aDU -aDU -aDU -aDU -aDU -aAW -bce -bdH -bfb -aZs -bhD -aZs -aZs -aZs -aZs -aZs -bcj -aZs -btw -buI -bvL -bxh -byH -bAq -bxh -bxh -bFm -bxh -bIB -bFC -bFC -bNk -bNk -bPU -bNk -bNk -bNk -bVf -bWn -bXi -bYH -caa -caa -caa -caa -cfo -caa -caa -caa -cfo -caa -caa -cnh -cog -cpf -cpf -cpf -cpf -cpf -ctT -cpf -cpf -cpf -cpf -cpf -cng -com -cBU -bWo -bWo -cbu -cbu -cGr -cHi -cHI -cIr -cJg -cJR -cDd -cDd -cLt -cLN -cUH -cUH -cUH -cUH -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -arR -ahB -atn -bYy -avy -avy -avy -axB -ayS -abN -acm -asH -add -abS -aeg -acx -acx -afR -agE -agE -ahR -aiB -adZ -ajH -akr -akQ -alm -alH -aqo -amq -anh -aDc -aEd -aEg -aqd -aqT -arA -aAW -asK -aIK -aGw -atX -aIK -aJP -aKS -aMr -aND -aOO -aQg -aRr -aSS -aUx -aVZ -aXB -aRr -baK -bcf -bdI -bfc -bgr -aZs -aZs -aZs -aZs -aZs -aZs -bcj -aZs -aZs -aZs -aZs -aZs -byI -bAr -bcf -bDG -bFn -bGY -bIC -bGY -bLJ -bLJ -bLJ -bLJ -bLJ -bLJ -azU -bVg -bWo -bWo -bYI -cab -cab -cab -ceg -cab -cab -cab -cab -cab -cab -ceg -cni -coh -cpf -cpU -cpU -crW -crW -ctU -cva -crW -cpU -cpU -cpf -czI -cAN -cBV -cCV -cDJ -cEt -cEt -cGs -cGs -cHJ -cIs -cJh -cDd -cDd -cDd -cLu -cLO -cUH -cUH -cUH -cUH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -arR -ahA -ajA -bYy -auK -auK -auK -axB -ayS -abN -acp -acL -adf -adC -aej -aeI -acx -afT -agE -agE -ahU -ahX -aea -ajK -akm -akP -aln -alI -aqo -amq -amX -aDc -aoH -aEg -aqe -aqU -arD -ase -avd -avd -atE -avd -avd -aJQ -aKT -aKT -aKT -aOP -aQh -aKT -aKT -aKT -aKV -aKV -aKV -aKV -bcg -bdJ -aZs -bci -bci -bci -bci -bci -aZs -bpA -brh -bpA -bpA -bpA -bpA -bpA -byJ -bAs -bpA -bDH -bcj -bGZ -bID -bKp -aZs -aZs -bpA -baM -bci -aZs -aZs -bDH -aZw -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -bWo -cnj -coh -cpf -cpV -cqT -crX -crW -ctV -crW -cvZ -cxh -cyh -cpf -czJ -cAO -cBW -cCW -cDK -cDK -cDK -cGt -cKT -cHK -cIt -cJi -cJi -cKw -cDM -cLv -cLP -cUK -cUK -cUK -cUK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -arR -ahD -atn -aaL -auK -abf -auK -axB -ayS -abN -aco -asH -add -abS -aei -aeH -afq -afS -agG -ahq -ahT -aiD -aiT -ajJ -aoc -aoc -aoc -aoc -aqo -ams -amX -aDc -aDc -aEk -aGA -aDc -arC -avd -asM -aya -aya -atY -avd -aJQ -aKT -aMs -aNE -aOQ -aQi -aRs -aST -aKT -aWa -aXC -aZl -aKV -bch -aZs -bfd -aZo -aZo -aZo -aZo -aZu -aZs -bpB -bri -bri -btx -buJ -buJ -bri -bri -bri -bAv -bDI -bAv -bAv -bIE -bKq -bKq -bKq -bKq -bPV -aZw -aZs -aZs -bDH -aZw -aaa -bYJ -cac -cac -cac -ceh -aaa -aac -aaa -aaa -aac -aac -bWo -bYE -coh -cpf -cpW -cqU -crY -csQ -ctW -cpU -cwa -cxi -cyi -cpf -czK -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cHL -cIu -cDd -cDd -cKx -cDd -cLw -cSC -cUJ -cUJ -cUJ -cUJ -cWO -cXk -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -arS -ahC -akl -aks -asy -asy -alp -asy -ayT -auQ -acq -asH -add -abS -abU -aeJ -acx -afV -agH -agE -ahW -ahX -adZ -ajH -aku -akQ -alm -alK -aqo -amu -amX -aDc -aoP -aEg -aqj -aEg -aFv -avd -asO -aya -atG -aua -avd -aJQ -aKT -aMt -aNE -aOQ -aQj -aRt -aSU -aSZ -aWb -aWb -aWb -aKV -bci -aZs -bfd -aZo -aaa -aaa -aZo -aZu -aZs -bpC -bri -bsw -bty -buK -bvM -bsA -byK -bAt -byQ -bDJ -bFo -bAv -bIF -bKr -bKr -bKr -bOF -bKr -aZw -aZs -aZs -bDH -aZw -aac -bYK -cad -cbv -ccU -bYK -aac -aac -aaa -aaa -cjI -ckS -ceg -cnk -coh -cpf -cpX -cqV -cqV -csR -ctX -cpU -cpU -cpU -cyj -cpf -czK -cwu -cJt -cJt -cJL -cJL -cJY -cJY -cwu -cHM -cIu -cDd -cHp -cKx -cDd -cLu -cSC -cUM -cVm -cVm -cWp -cVn -cSC -aac -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -auQ -auQ -aaE -auQ -auQ -auQ -aaE -auQ -auQ -auQ -ack -acM -adg -abS -aek -aeJ -acx -afU -agH -agE -ahV -aiC -aiR -ajL -akt -akP -alo -alJ -aqo -amt -amX -aDc -aoM -aFA -aqf -aqV -arE -avd -asN -atv -atF -atZ -avd -aJQ -aKT -aMu -aNE -aOR -aQk -aRu -aSV -aKU -aSV -aXD -aNE -aTb -aZu -aZs -bfd -aZo -aaa -aaa -aZw -bma -bnI -bpD -bri -bsx -bsA -bsA -bsA -bxi -brl -brl -bBT -bDK -bFp -bFs -bIG -bKs -bLK -bFs -bFs -bFs -bFs -bSD -aZs -bVh -aZw -aaa -bYL -cae -cbw -ccV -cei -aaa -aac -aac -aac -cjJ -ckT -cmd -cmd -coi -cpf -cpY -cqW -crZ -csS -ctY -cpU -cwb -cxj -cyk -cpf -czK -cwu -cJs -cCY -cCZ -cCZ -cJX -cJX -cwu -cHN -cIu -cND -cJS -cKy -cDd -cLx -cUg -cUL -cVl -cVO -cVO -cVn -cSC -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaq -aax -aaG -aaG -aaG -abh -abs -abs -abE -abO -acs -abO -adi -adD -ael -aeL -afs -abS -agJ -ahs -ahY -aiE -aiV -ajM -aoc -aoc -aoc -aoc -aqo -amw -amX -aDc -aoT -apq -aqm -aqX -aFv -avd -asQ -atA -atF -auc -avd -aJQ -aKT -aMv -aNF -aOS -aQl -aNE -aNE -aUy -aNE -aNE -aNE -aUy -aZu -aZs -bfd -aZo -aaa -aaa -bkC -bmb -bnJ -bpE -bri -bsy -btz -buL -buL -bxj -byL -brl -bBU -bDL -bFp -bHa -bIH -bKt -bLL -bNl -bOG -bPW -bFs -bcy -aZs -bDH -bWp -bWp -bYM -caf -cbx -ccW -bYM -bWp -bWp -chq -chq -cjK -ckU -chq -chq -coj -cpf -cpZ -cqX -crW -crW -ctZ -crW -crW -cxk -cyl -cpf -czK -cwu -cJs -cCZ -cCZ -cCZ -cJZ -cJZ -cwu -cHO -cIv -cFz -cFz -cSC -cSC -cSC -cSC -cUO -cVo -cVQ -cVQ -cVn -cSC -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaq -aaw -aaF -aaF -aaV -abg -aaD -aaD -aaF -aaF -acr -acN -adh -abS -aek -aeK -afr -abS -agI -ahr -ahX -anv -aiU -ajH -akv -akQ -alm -alL -aqo -amp -amX -aDc -aoS -aFA -aql -aqW -aFv -avd -asP -atw -atF -aub -avd -aJQ -aKT -aMw -aNE -aOT -aQm -aRv -aSW -aUz -aSW -aXE -aNE -aTb -aZu -aZs -bfd -aZo -aaa -aaa -bgs -bmc -bnK -bpF -bri -bsz -btA -buM -bvN -bxk -byM -brl -bBV -bDM -bFp -bHb -bII -bKu -bLM -bNm -bOH -bPX -bFs -bcx -aZs -bDH -bWp -asB -bYN -bXq -cby -bXq -cej -cfp -bWp -chr -cis -cjL -ckV -cme -chq -coj -cpf -cpU -cpU -crW -csT -cua -cvb -crW -cpU -cpU -cpf -czK -cwu -cwu -cDa -cDa -cwu -cwu -cwu -cwu -cHP -cIu -asG -cJT -cSC -cTi -cTD -cSC -cUN -cVn -cVP -cWq -cVn -cSC -aac -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -auQ -auQ -aaE -auQ -auQ -auQ -aaC -aaC -auQ -abS -abS -abS -adk -abS -abS -aeN -abS -abS -agL -aiS -ahZ -afI -aje -ajK -akm -akP -alq -alM -aqo -amv -amX -aDc -aoU -apr -aGz -aEg -aFv -avd -avd -aye -atI -avd -avd -aJQ -aKT -aMx -aNE -aOT -aQn -aRw -aSX -aUA -aWb -aWb -aZm -aKV -aZr -aZs -bfd -aZo -aaa -bgs -bgs -bgs -bnL -bgs -bri -bsA -btA -buN -bvO -bxl -byN -brl -brl -brl -bFp -bHc -bIJ -bKv -bLM -bNn -bOI -bPY -bFs -bcj -bcj -bVi -bWp -bXk -bXq -bXq -cbz -bXq -bXq -cfq -bWp -chr -chs -cjL -ckW -chs -chq -coj -cpg -cqa -cqY -cqY -csU -cub -cvc -cqY -cqY -cym -cpg -czK -cwu -cBZ -cDb -cDM -cJO -cFy -cGu -cHk -cHQ -cMl -cDM -cDM -cSD -cTj -cTE -cSD -cUP -cVq -cVR -cWs -cVn -cSC -aac -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -agv -agv -aid -agv -agv -aac -aaa -aaa -aaa -abS -act -act -adj -adF -acx -aeM -aft -abS -agK -aiS -agm -aiF -aiW -ajN -aqo -aqo -aqo -aqo -aqo -amq -anc -aDc -aDc -aDc -aqn -aqY -arF -avd -asR -atB -atH -aud -aCr -aJR -aKU -aMy -aNG -aOU -aQo -aRx -aSY -aKT -aWc -aXF -aZn -aKV -aZs -aZs -bfd -aZo -aaa -bgs -bkD -bmd -bnM -bpG -brj -bsB -btB -buO -buO -bxm -byO -byO -bBW -bDN -bFq -bHd -bIK -bIK -bLN -bNo -bOJ -bPZ -bFs -bSE -aZs -bDH -bWp -bXl -bYO -cag -cby -ccX -cek -cfr -bWp -chs -chs -cjM -ckW -chs -chq -cok -cpg -cqb -cqZ -csa -csV -cuc -cvd -cwc -cxl -cyn -cpg -czK -cwu -cCa -cDc -cDd -cJN -cCg -cKf -cHl -cHR -cMk -cDd -cJU -cSC -cSC -cSC -cSC -cSC -cVp -cVp -cWr -cSC -cSC -aac -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -agw -ahd -aie -aiY -aka -aac -aaa -aaa -aaa -abS -acx -acx -adl -acx -acx -aeQ -acx -afW -agN -aiS -aib -afI -ajg -ajP -aoc -alr -alr -alr -aqo -amq -amX -anF -aoX -aAW -aqq -axX -arG -asf -asT -atC -atQ -auf -ase -aJS -aKT -aKT -aNH -aOV -aQh -aKT -aSZ -aKT -aKT -aKT -aKV -aKV -aZs -aZs -bfd -aZo -aaa -bgs -bkE -bme -bnN -bpH -brk -bsC -btC -buP -buP -buP -buP -buP -bBX -buP -bFr -bHe -bIL -bHe -bLO -bNp -bHe -bQa -bRx -bSF -bLJ -bVj -bWp -bXm -bXq -bXq -cby -bXq -bXq -bXq -bWp -cht -chs -cjL -ckW -chs -chq -coj -cpg -cqc -cra -csb -csW -cud -cve -crb -cxm -cyo -cpg -czK -cwu -cCb -cDd -cDN -cJP -cKa -cKq -cDd -cLz -cMn -cOc -cJV -cMw -cTl -cTG -cUi -cUR -cVs -cVs -cWt -cWQ -cMw -aaa -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -agx -ahe -aie -aiZ -agx -aac -aaa -aaa -aaa -abS -acu -acO -acu -acu -acu -aeO -acu -abS -agM -aht -aia -aiG -ajf -ajO -akw -apf -apf -alN -ami -amy -anj -aRr -aoV -aAW -aqp -axX -arG -asf -asS -asS -atJ -aue -avd -aJQ -aKV -aMz -aNI -aOT -aQp -aNE -aTa -aNE -aWd -aTb -aaa -aZo -bcj -bcj -bfe -bgs -bgs -bgs -bkF -bmf -bnO -bpI -brl -bsD -btD -buQ -bvP -bxn -bsA -bAu -bri -bri -bFs -bFs -bIM -bIM -bFs -bFs -bFs -bFs -bFs -bSG -aZs -bVk -bWp -bXn -bYP -cah -cbA -ccY -bXq -cfs -bWp -chu -cit -cjN -ckW -cmf -chq -col -cpg -cqd -crb -csc -csX -cue -cvf -cwd -cxn -cyp -cpg -czK -cwu -cJu -cDd -cDO -cDd -cKa -cFE -cDd -cLy -cMm -cDd -cJV -cMw -cTk -cTF -cUh -cUQ -cVr -cUQ -cUQ -cWP -cXl -cXy -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -agx -ahf -aie -aja -agx -aac -aaa -aaa -abG -abS -abS -abS -abS -abS -abS -aeS -abS -abS -agP -aiS -aib -aiH -aji -ajR -aoc -akR -akS -alO -auV -amz -anm -anG -aoZ -aAW -aqq -axX -arG -asf -asS -atD -atS -auh -avd -aJQ -aKV -aMA -aNE -aOW -aQq -aNE -aTb -aUB -aWd -aTb -aaa -aZo -aZs -aZs -bfd -bgt -bhE -arW -bkG -bmg -bnP -bpJ -bpK -bsE -bsE -bsE -bsE -bxo -byP -bri -bri -aac -aac -aaa -aac -aaa -aac -aaa -aaa -aaa -aZo -boh -aZs -bVl -bWp -bXo -bXq -cai -cbB -ccZ -bXq -cft -bWp -chu -chu -cjO -ckW -cmg -chq -com -cpg -cpg -crc -csd -csY -cuf -cvg -cwe -cxo -cyq -cpg -czL -cwu -cCd -cDd -cDP -cEz -cKc -cEz -cCp -cLB -cMu -cOj -cOj -cOj -cTn -cTI -cUk -cUT -cVt -cTH -cTH -cWS -cMw -aac -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -agx -ahg -aie -aiZ -agx -aac -aaa -aaa -abG -abP -acB -acP -adm -adG -aem -aeR -afu -afX -agO -ahu -aib -afI -ajh -ajQ -aqo -aqo -aqo -aqo -aqo -aKL -anl -aAW -aoY -aAW -aqr -axX -arG -asf -aya -aya -atR -aug -avd -aJQ -aKV -aMB -aNE -aOX -aQr -aRy -aKT -aKT -aKT -aKT -aZo -aZo -aZs -aZs -bfd -bgu -bhF -bjc -bkH -bmh -bnQ -bpK -bpM -bsF -btE -buR -bvQ -bpL -byQ -bAv -aac -aac -aaa -aaa -aaa -aaa -bLP -bNq -bNq -bNq -bNq -boh -aZs -bVm -bWp -bXp -bXq -caj -cbC -cda -cel -cfu -bWp -chv -chu -cjP -ckW -cmh -chq -com -cph -cpg -cpg -cpg -cpg -cpg -cpg -cwf -cxp -cpg -cpg -czL -cwu -cCe -cDe -cDQ -cDQ -cKb -cKr -cKU -cLA -cMt -cOi -cRY -cSE -cTm -cTH -cUj -cUS -cMw -cVS -cVS -cWR -cMw -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -agx -ahh -aif -ahh -agx -aac -aaa -aaa -abH -abR -acB -acR -adE -adJ -aeo -aeU -afw -afZ -agR -ahv -aic -aer -ajk -ajT -apf -akT -apf -apf -amj -amB -ano -ant -apb -aoc -aqt -axX -arH -avd -asV -aya -aya -aui -avd -aJQ -aKV -aMC -aNE -aNE -aOT -aNE -aTc -aUC -aNE -aTc -aZp -baL -bck -bdK -bfd -bgv -bhG -bjd -bkI -bmg -bnR -bpL -brm -brn -brn -bsG -bvR -bxp -byR -bAw -bAw -bDO -bAw -bAw -bIN -aaa -bLP -bNr -azh -azk -bNq -boh -aZs -bVk -bWp -bXq -bXq -bXq -cbC -cdb -cem -cfv -bWp -chv -ciu -cjP -ckX -cmi -chq -con -cpi -cpi -cpi -cpi -cpi -cug -bWo -cwg -cxq -cyr -bWo -czK -cwu -cCf -cDf -cDd -cEA -cKa -cKA -cDO -cLQ -cMw -cLR -cMw -cMw -cMw -cTK -cUm -cUU -cVv -cVU -cVU -cVU -cMw -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -agx -ahi -aig -ajb -agx -aac -aaa -aaa -abG -abQ -acv -acQ -adn -adH -aen -aeT -afv -afY -agQ -ahu -aib -afI -ajj -ajS -akx -aod -alt -alP -adx -amA -ann -anH -apa -apt -aqs -aqZ -arG -avd -asU -asf -asf -avd -avd -aJT -aKV -aKV -aKV -aKV -aQs -aRz -aKV -aKV -aKV -aKV -aZq -aZs -bcl -bdL -bfd -bgu -bhH -bje -bkJ -bmi -bnS -bpL -brn -brn -brn -brn -brn -bxq -byQ -bAx -bBY -bDP -bFt -bHf -bIO -aaa -bLP -bNs -bOL -bQc -bRz -bSI -aZs -bVn -bWp -bWp -bWp -bWp -cbD -bWp -cen -bWp -bWp -chq -chq -cjQ -ckY -chq -chq -bWo -bWo -bWo -bWo -bWo -bWo -cuh -bWo -cwh -cxr -cys -czg -czM -cwu -cCg -cDg -cDd -cEB -cCg -cKz -cDO -cLC -cMv -cOs -cRZ -cSF -cTo -cTJ -cUl -cUU -cVu -cVT -cWu -cVT -cXm -cXz -aac -aaf -aac -cXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -agx -ahj -aig -ajc -agx -aac -aaa -aaa -abH -abV -acB -acB -adq -acB -adI -aeW -afx -agc -agQ -ahu -aib -aiH -ajl -ajV -akz -akU -akz -akz -amk -amD -ano -anJ -apc -apA -aqv -ard -arJ -aDd -aEl -aEl -aEl -aHN -aIN -cIz -aKW -aMD -aNJ -aOY -aQt -aOY -aOY -aOY -aWe -aXG -aZr -aZs -bcm -bdM -bfd -bgu -bhI -bjf -bkK -bmj -bnT -bpM -brn -bsG -bsG -buS -bvS -bxr -byQ -bAx -bBZ -bDQ -bDQ -bHg -bIP -bKw -bKw -bNt -bOM -bQd -cJj -bSJ -azW -bVo -bWq -bXr -bYQ -bYQ -cbE -cdc -ceo -cfw -cgv -bYQ -civ -cjR -ckZ -cmj -cnl -cmj -cmj -cqe -cmj -cmj -csZ -cui -cvh -cwi -cxs -cyt -bWo -coa -cwu -cCh -cDh -cDd -cJW -cKa -cKB -cKW -cLS -cMy -cOu -cOt -cSH -cTo -cTM -cUo -cUV -cVx -cVW -cWw -cVW -cXo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -agy -ahk -ahk -ahk -akb -aac -aaa -aaa -abG -abT -acw -acS -ado -adK -adI -aeV -agm -aga -agQ -ahu -aib -aiH -ajl -ajU -aky -aoc -alu -alu -aoc -amC -anq -anI -anI -apu -aqu -ara -arI -asg -asW -asW -asW -asW -aul -aun -aKX -aJV -aJV -aJV -aQu -axX -axX -axX -aDe -aXH -aZs -aZs -bcn -bdN -bfd -bgu -bhJ -bjg -bkI -bmk -bnU -bpN -bro -bsH -btF -buT -bvT -bxr -byS -bAx -bCa -bDR -bDQ -bHh -bIQ -bKx -bLQ -bNu -bON -bQe -bRB -bSK -azV -azZ -aXH -aAb -aAd -aAd -aAe -aAf -aAg -aAh -aAh -aAh -aAh -aAh -cla -cmk -cnm -cmk -cmk -cmk -cmk -cmk -cta -cuj -cvi -cwj -cxt -cyu -cwu -cwu -cwu -cCi -cDc -cDd -cJW -cKa -cKA -cDO -cLR -cMx -cOt -cSa -cSG -cTo -cTL -cUn -cUU -cVw -cVV -cWv -cWT -cXn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abG -adI -adI -adI -aeP -adI -adI -aeX -agm -aga -agm -aiS -aib -afI -ajn -ajX -akB -akW -alw -alR -amm -amF -anr -anr -ape -apH -aqq -arf -arL -aDf -aEm -aAn -aGH -aHO -aIP -cIC -aKY -aME -aME -aME -aQv -auX -aME -aME -aWf -aXI -aZt -aZs -bco -bdO -bfd -bgw -bhK -bjh -bkL -bml -bnV -bpO -brn -bsG -bsG -buS -bvU -bxr -byQ -bAx -bCb -bDS -bDS -bHi -bIR -bKy -bKy -bNv -bOO -bQf -bRC -bSL -bUf -bVq -bWs -bXt -bYS -cak -cbG -cde -ceq -cfy -bYR -bYR -ciw -aAd -aAd -aAd -aAd -aAd -aAd -aAd -aAd -cuk -ctb -cuk -cvj -cwk -cxu -cyv -czh -czN -czh -czh -czh -czh -czh -cCg -cKD -cKX -cLT -cMA -cOB -cSc -cSJ -cTo -cTO -cUq -cUX -cVz -cVX -cWy -cWU -cXo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aaa -aaa -aaa -aih -aaa -aaa -aaa -aaa -aaa -abF -abW -acy -acT -ads -adL -aep -agr -agr -agd -agm -ahw -aij -aos -ajm -ajW -akA -akV -alv -alQ -aml -amE -amE -anK -apd -apC -aqw -are -arK -ash -aEn -aEn -aEn -aEn -aIQ -cIB -aKZ -akX -akX -akX -akX -akX -akX -akX -akX -akX -aZu -aZs -bcp -bdP -bfd -bgu -bhL -bji -bkI -bmm -bnW -bpP -brn -brn -brn -brn -brn -bxs -byQ -bAx -bCc -bDT -bFu -bHj -bIS -aaa -bLP -bNw -bOP -bQg -bRz -bSM -aZs -bVr -bWt -bWt -bWt -bWt -bWt -cdf -cer -cfz -cgw -chw -cix -cjU -cgw -cgw -cnn -coo -coo -cqf -crd -ctc -ctc -ctc -ctc -cwl -cxv -cyw -czh -czO -cAP -cCj -cDi -cDR -cED -cFC -cKC -cDd -cLC -cMz -cOA -cSb -cSI -cTo -cTN -cUp -cUW -cVy -cVT -cWx -cVT -cXp -cXz -aac -aaf -aac -cXz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cRG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aac -aaf -aaa -abd -aac -aac -aac -aaa -aaa -aaa -aaa -abF -abY -abY -acU -adu -adN -aeq -aiX -aiX -agf -agT -ahy -ail -aiI -ajp -ajZ -akC -aoc -alx -alT -amm -amH -ant -ant -aph -aoc -aAn -arf -arX -alU -cHU -cHX -cHX -cHX -cIk -cID -aLa -amO -amO -amO -amO -amO -amO -amO -amO -aCq -aZv -baM -bcq -bdQ -bfd -bgx -bhM -bjj -bkI -bmn -bnX -bpQ -brp -brn -brn -bsG -bvV -bxt -byT -bAy -bAy -bDU -bAy -bAy -bIT -aaa -bLP -bNx -bOQ -bQh -bNq -bSN -aZs -bVs -bWt -bXu -bXA -cal -bWt -cdg -ces -cfA -cfA -cfA -ciy -cjV -clb -cml -cfA -cop -cpj -cqg -cre -ctc -ctd -cul -ctc -cwm -cxw -cyx -czh -czP -czQ -cCk -czQ -cDS -cEE -cFD -cKF -cDd -cLQ -cMw -cLR -cMw -cMw -cMw -cTQ -cUr -cUU -cVv -cVY -cVY -cVY -cMw -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -aaa -aaa -abF -abX -acz -abY -adt -adM -afI -aeY -agm -age -agS -ahx -aik -afI -ajo -ajY -atz -ala -akp -alS -aoc -amG -ans -anL -apg -aoc -aqx -arg -arM -aDh -cHT -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -aFD -amO -akX -aZo -aZo -aZs -aZs -bfd -bgu -bhN -bjk -bkM -bmo -bnY -bpR -bpO -bsI -btG -brp -bvW -bpQ -byQ -bAv -aac -aac -aaa -aaa -aaa -aaa -bLP -bNq -bNq -bNq -bNq -aZs -aZs -bVt -bWt -bXv -bYT -cam -bWt -cdg -ces -cfB -cfB -chx -ciz -cjW -clc -cmm -cno -coq -cpk -cqh -cfA -aAj -cte -cum -cvk -cwn -cxx -cyy -czi -czQ -cAQ -cCl -cDj -cDS -cEE -cFE -cKE -cFI -cFI -cMK -cOC -cSd -cMK -cTp -cTP -cTR -cUY -cMw -cVS -cVS -cVS -cMw -cLQ -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaf -aaa -aaa -abF -aca -acC -abY -adt -adP -afI -afa -afz -agh -aev -ahE -ain -aiJ -ajr -akf -aiJ -aiJ -aiJ -aiJ -aiJ -aot -aot -aot -aot -aot -aqy -ari -arY -alU -cHT -aFD -aGI -aHP -aFD -aGI -aHP -aFD -aGI -aHP -aFD -aGI -aHP -aFD -amO -akX -aaa -aZo -aZs -aZs -bfd -bgy -bhO -bjl -bkN -bmm -bnZ -bpS -bpR -bsJ -bsJ -bsJ -bsJ -bxu -byU -brq -brq -aac -aac -aaa -aac -aaa -aac -aaa -aaa -aaa -aZo -aZs -aZs -boh -bWt -bXw -bYU -can -bWt -cdg -ces -cfC -cfC -chy -ciA -cjX -cld -asL -cnp -cor -cpl -cqh -crf -aAl -ctf -cun -cvl -cwo -cxy -cyz -czj -czR -cAR -cCm -cDk -cDT -cEF -cDM -cGE -cDd -cDd -cMw -cMw -cMw -cMw -cTr -cTS -cUt -cUZ -cVB -cWa -cWa -cWW -cXq -cMw -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaf -aaa -aaa -abF -abZ -acA -abY -adt -adO -afI -aeZ -afy -agg -agU -ahz -aim -aou -ajq -ake -akD -alb -aly -alV -boG -amJ -anu -aog -api -aot -aAn -arh -arY -aDi -cHT -aFD -aGJ -aHQ -aFD -aGJ -aHR -aFD -aGJ -aHR -aFD -aGJ -aHQ -aFD -amO -akX -aaa -aZo -bcj -bcj -bff -bgs -bgs -bgs -bkO -bmp -bnO -bpI -brq -bsK -btH -buU -bvX -bxv -bsR -bAz -brq -brq -bFv -bHk -bFv -bKz -bLR -bLR -bLR -bLR -bKz -aZs -aZs -boh -bWt -bXx -bYV -cao -bWt -cdg -ces -cfD -cfD -chy -ciB -cjY -cgL -cgL -clg -chL -cpm -cqi -crg -aAk -ctg -cuo -cvm -cwp -cxz -cyA -czk -czS -cAS -cCn -cDl -cDU -cEG -cFF -cGD -cDd -cDd -cDd -cDd -cJV -cMw -cTq -cTR -cUs -cTO -cVA -cVZ -cWz -cWV -cMw -cMw -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -abF -acc -acc -abY -adt -adO -afI -afI -afI -agj -agV -ahG -aip -aiK -ajt -akh -akF -alc -alc -alW -amn -amn -anx -aps -aps -apJ -aAn -ark -arY -aDj -cHT -aFD -aGK -aHR -aFD -aJX -aHR -aFD -aNK -aHR -aFD -aRA -aHR -aFD -amO -akX -aZw -aZw -bcr -aZs -bfd -aZo -aaa -bgs -bkP -bmq -boa -bpT -brr -bsL -btI -btI -bvY -bxw -byV -btI -bCd -bDV -bFw -bHl -bIU -bKA -bLS -bNy -bOR -bQi -bKz -bcy -aZs -bVu -bWu -bXy -bYW -cap -cbH -cdh -cet -cfE -cfE -chz -ciC -cjZ -cle -cgL -cnq -chL -cll -cqj -cqj -aAo -cth -cup -cvn -cwq -cxA -cyB -czh -czh -cAT -cCo -czh -czh -cEH -cFG -cGD -cDd -cHY -cMM -cDN -cJV -cMw -cTq -cTR -cUv -cTO -cVC -cUu -cWB -cWB -cUt -cMw -aac -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -abF -acb -acb -abY -adt -adO -afI -afb -afI -agi -agV -ahF -aio -aot -ajs -akg -akE -apl -apl -alW -amn -amn -anw -aoh -aoh -apI -aqC -arj -arZ -aDk -cHT -aFD -aGL -aHS -aFD -aGL -aLb -aFD -aGL -aOZ -aFD -aGL -aTd -aFD -aCq -akX -aZx -baN -bcs -aZs -bfd -aZo -aaa -bgs -bkQ -bmr -bob -bpG -brs -bsM -btJ -btJ -bvZ -bxx -byW -bAA -btJ -bDW -bFx -bHm -bIV -bKB -bLT -bNz -bOS -bQj -bKz -aZs -aZs -boh -bWt -bXz -bYX -bYX -cbI -cdi -ces -cfA -cgx -chA -ciD -cka -clf -cmo -clg -cos -cpn -cqj -crh -aAm -cti -cuq -cvn -cwr -cxB -cyC -czl -czT -cAU -cCp -cDm -cDV -cEI -cFH -cGF -cEz -cEz -cML -cHR -cJU -cMw -cTs -cTR -cUu -cVa -cMw -cWb -cWA -cWA -cXr -cLQ -aaa -aaf -aac -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -abF -ace -acC -abY -adt -adO -afI -afd -afI -afB -agV -ahI -aio -aot -aju -aki -akE -apl -apl -alZ -aps -aps -anz -aoi -avN -aot -aqE -aBl -arY -aDl -cHW -aFE -aGM -aHT -aIS -aJY -aHT -aIS -aNL -aHT -aQw -aNL -aHT -aUD -aIS -aXJ -aZy -aZy -bct -aZs -bfd -aZo -aaa -bgs -bgs -bgs -boc -bgs -brq -bsN -btK -btK -bwa -bxy -byX -bAB -bCe -brq -bFy -bHn -bIW -bKz -bLU -bNA -bOT -bQk -bKz -bcj -bcj -bUa -bWt -aAc -bYY -caq -bWt -cdg -ceu -cfA -cgx -cgx -ciE -ckb -clg -cgx -cgx -cot -cpo -cqj -cri -aAq -ctj -cur -cvn -cws -cvl -cyD -czm -cJm -cAV -cCq -cDn -cJM -cEJ -cFI -cGG -cDQ -cDQ -cMN -cJw -cDM -cMw -cTu -cTS -cUu -cVb -cMw -cWc -cWc -cWc -cWc -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -abF -acd -acD -abY -adt -adQ -afI -afc -afA -agk -agW -ahH -aiq -aot -ajs -akg -akE -apl -apl -alW -amn -amn -any -akX -akX -akX -aAn -aBl -arY -asi -asX -aFF -aGN -aHU -aIT -aJZ -aLc -aMF -aNM -aPa -aIT -aIT -aTe -aUE -aIT -aXK -aZz -baO -bcu -aZs -bfd -aZo -aaa -aaa -bgs -bms -bod -bpF -brq -bsO -btL -buV -bwb -bsR -bsR -bsR -bsR -brq -bFz -bFv -bFv -bKz -bLV -bNB -bOU -bQl -bKz -aZs -aZs -bVv -bWt -bXB -bWt -bWt -bWt -cdg -cev -cfA -cgy -chB -ciF -cjY -clh -cmp -cgL -chL -cll -cqj -crj -aAp -ctk -cus -cvn -cwt -cxC -cyE -czn -czV -cAW -cCr -cDo -cDW -cEK -cFJ -cGH -cHq -cHZ -cIA -cJx -cKg -cMw -cTt -cTS -cUw -cVb -cLC -cUH -cUH -cUH -cUH -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaa -abF -acd -acd -acV -adv -adS -aer -aff -amI -amI -agW -ahH -ais -aou -ajw -ajw -akH -alc -alc -alW -amn -amn -anA -akX -atK -akX -aqF -arm -asa -asj -asY -aFD -aFD -aFD -aFD -aKa -aLd -aMG -aMG -aPb -aQx -aQx -aTf -aUF -aQx -aQx -aQx -aQx -bcv -aZs -bfd -aZo -aaa -aaa -bkC -bmb -boe -bpE -brq -bsP -btM -btM -bwc -bxz -byY -bxz -bCf -brq -bFA -bHo -bIX -bKz -bLW -bNC -bOV -bOV -bKz -aZs -aZs -boh -bWt -bXC -bWt -bUs -cbJ -cdj -cew -cfA -cgz -chC -ciA -ckc -cli -cmq -cgL -chL -cll -cqj -cqj -cqj -cqj -cut -cqj -cwu -cwu -cyF -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cwu -cIA -cJx -cKh -cMw -cMw -cMw -cMw -cMw -cMw -cWd -cWC -cWd -cWC -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaa -abF -acf -acf -abY -adt -adR -afI -afe -afB -agl -agV -ahF -air -aot -ajv -apl -akG -ale -alz -alW -amn -amK -anA -akX -amO -aCq -aAn -arl -akX -asj -asY -aFG -aGO -aHV -aFD -aKb -aLe -aMH -aMG -ato -aQx -aRB -aTg -aUG -aWg -aXL -aZA -aQx -bcw -aZs -bfd -aZo -aaa -aaa -aZw -bmt -bof -bpU -brq -bsQ -bsR -bsR -bsR -bsR -bsR -bsR -bCg -brq -bFv -bFv -bFv -bKz -bLX -bNC -bOW -bOW -bKz -aZs -aZs -bVw -bWv -bXD -bYZ -car -cbK -cdk -cex -cfA -cgA -cgL -ciA -cjY -clj -cmr -cgL -cou -cpp -cqk -crk -cgL -ctl -ciL -cgL -cwv -cxD -cyG -cgL -czW -czW -cfA -aac -chN -chN -chN -chN -chN -cwu -cIA -cJy -cKi -cKi -cKi -cLD -cMb -cMo -cMB -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaa -abF -ach -acE -abY -adt -adU -afI -afh -afD -agn -agX -ahJ -aiu -aot -aot -aot -aot -aot -aot -aot -aot -amM -anC -akX -amO -akX -akX -aro -akX -asl -asY -aFH -aGP -aGP -aIU -aKc -aLf -aMI -aMG -atr -aQx -aRC -aTh -aUH -aWh -aXM -aXM -aQx -bcx -aZs -bfd -aZo -aaa -aaa -aZo -bmu -bog -bpV -brq -bsR -btN -bsR -bwd -bxA -byZ -bsR -bCh -bDX -azb -azb -azb -bKC -bLY -bND -bOX -bOX -bKz -bSD -aZs -bVx -bWw -bXE -bZa -cas -cbL -cdl -cey -cfF -cgB -chD -ciG -ckd -clk -cms -cms -cov -cpq -cql -cms -cms -ctm -cuu -cvo -cww -cgL -cgL -ckj -czX -cAX -cCs -cDp -cDX -cEL -cFK -cFM -chN -cwu -cIK -cFI -cFI -cFI -cLd -cLE -cwu -cMp -cMC -aaf -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaa -abF -acg -acg -acW -adw -adT -afI -afh -afC -afB -agV -ahF -ait -aiL -aiL -aiL -aiL -aiL -alA -aiL -aiL -amL -anB -aoj -aoj -aoq -arn -aAt -asb -ask -asY -aFI -aGQ -aHW -aFF -aKd -aLg -aMJ -aMH -atp -aQx -aRD -aTi -aUI -aQx -aQx -aXM -aQx -bcy -aZs -bfd -aZo -aZo -aZo -aZo -aZu -boh -bpB -brq -brq -brq -brq -brq -brq -brq -brq -brq -brq -bFv -bFv -bFv -bKz -bKz -bNE -bKz -bKz -bKz -aZs -aZs -bVy -bWv -bWv -bZb -cat -cbM -cdm -cez -cfG -cgC -chE -ciH -cke -cll -cgL -cnr -cow -cpr -cgx -crl -csn -crl -cgx -cvp -cwx -cvo -cvo -czo -clq -cAY -cgE -aac -cko -cEM -cFL -cGI -chN -cwu -cIL -cJz -cKj -cwu -cLe -cLF -cwu -cwu -cCg -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aaa -aaa -abF -abF -abF -acX -acX -abF -aev -afh -afC -afB -agV -ahL -aiw -aiw -ajy -ajy -ajy -alf -aiw -aiw -aiw -amP -anD -aok -aok -apL -aok -aok -aok -asm -asZ -aFD -aFD -aFD -aFD -aKe -aLh -aMK -aMH -aPe -aQx -aRD -aTi -aUI -aWi -aXN -aXM -aQx -aZs -aZs -aZs -aZr -aZr -aZr -aZr -aZr -boi -bpW -brt -bpW -bpW -buW -bwe -bpW -bpW -bpW -bpW -bDY -bFC -bFC -bIY -bKD -bLZ -bNF -bOY -bQm -bQm -bQm -bQm -bVz -aZx -bWv -bZc -cas -cbN -cdn -ceA -cfA -cgD -chF -ciI -asE -cll -cgL -chL -cgL -cps -cgx -cgx -cso -cgx -cgx -cvq -cll -cnr -cyH -cyH -czY -cAZ -cCt -cDq -cDX -cEN -cFM -cFM -chN -cwu -cwu -cJA -cwu -cwu -cLf -cLG -cMc -cCg -aac -aac -aac -aac -aaf -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aac -aac -aac -aac -aaa -aev -aev -aev -aev -agV -ahK -aiv -amO -ajx -akj -akI -ajz -amO -ama -akX -amN -apP -apP -apP -apK -apP -apP -apP -asj -asY -aFJ -aGR -aHX -aFF -aKf -aLi -aML -aMG -aPf -aQx -aQx -aTj -aUI -aQx -aQx -aZB -aQx -bcz -bdR -aZs -aZs -aZs -aZs -aZs -aZs -aZs -aZs -bcj -aZs -btO -aZs -bwf -aZs -aZs -aZs -aZs -aZs -aZs -aZs -aZs -bcj -aZs -bNG -aZs -aZs -aZs -aZs -bUg -aZs -baN -bWv -bZd -cau -cbO -cdo -ceB -cfA -cgE -chG -ciJ -cgE -clm -cgE -chL -cox -cpt -cgx -crm -crm -crm -cgx -cvr -cll -chL -cgL -cgL -czZ -cBa -cgE -aac -chN -chN -chN -chN -chN -cCg -cIM -cCZ -cKk -cCg -cLg -cDd -cMd -cCg -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -akX -akX -akX -atg -ajB -akk -akJ -ajz -amO -amc -akX -awU -apP -aom -apk -apM -aqH -arq -apP -asj -asY -aFK -aGP -aGP -aIV -aKg -aLj -aMM -aNN -aPg -aQy -aRE -aTk -aUI -aWj -aXO -aXM -aQx -aZs -aZs -aZs -aZs -bhP -aZs -aZs -aZs -aZs -aZs -bcj -aZs -btP -aZs -bwg -aZs -bza -aZs -aZs -aZs -bFD -bHp -bHp -bKE -bMa -bdH -aZs -aZs -bRD -bSO -aZs -aZs -bWx -bWv -bZe -cav -cbP -cdp -ceC -cfH -cgF -chH -ciK -ckg -cln -cmt -cns -coy -cpu -cqm -cpw -csp -ctn -cuv -ckg -cln -cxE -cgL -cgL -cAa -cBb -cCu -cDp -cDX -cEO -cFN -cFP -chN -cCg -cCg -cJA -cCg -cCg -cLh -cLH -cMe -cMq -cMD -cMQ -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -agY -ahM -agY -amO -ajz -ajz -ajz -amO -amO -amb -akX -awU -apP -aol -apj -apM -aqG -arp -apP -asn -asY -aFD -aFD -aFD -aFD -aKh -aLk -aMN -aNO -aPh -aQx -aRF -aTl -aUJ -aWk -aQx -aZC -aQx -aUM -aUM -aUM -aZG -aZG -bjm -aZG -bmv -aZG -bmv -aZG -aZG -aXH -aXH -aXH -bxB -bxB -bxB -bxB -bxB -bxB -bxB -bxB -bxB -bMb -bNH -bHt -bQn -bPc -bPc -bPc -bPc -bPc -bPc -bZf -bZp -bPc -bXK -bFW -cfA -cgG -chI -ciL -ckh -ciM -cmu -cnt -coz -cpv -cgL -cgL -cgL -cgL -cgL -cvs -cnr -cxF -cgL -cgL -czZ -cBc -cgE -aac -cko -cEP -cFO -cGJ -chN -cCg -cIN -cJB -cKl -cCg -cKV -cKV -cKV -cCg -cME -cMR -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaf -akX -akX -akX -aqz -amO -amO -amO -amO -aqz -akX -akX -awU -apP -aon -apj -apN -apj -arr -apP -asp -atb -aFL -aGS -aHY -aIW -aKi -aLl -aMO -aIW -aIW -aQz -aQx -aQx -aQx -aQx -aQx -aQx -aQx -bcA -baQ -bfg -bgz -bhQ -bba -bkR -bba -boj -bba -bru -aZG -btQ -btQ -btQ -bxB -bzb -bAC -bCi -bDZ -bFE -bHq -bIZ -bKF -bMc -bNI -bHt -bQo -bPc -bSP -bUh -bVA -bWy -bXF -bZg -caw -cbQ -bXK -ceD -cfI -cgH -cgL -ciM -cki -clo -cmv -cnu -coA -cpw -coz -cpu -cpu -cto -cuw -cvt -cwy -cxG -cyH -chK -czY -cBd -cCt -cDq -cDX -cEQ -cFP -cFP -chN -cCg -cIO -cJC -cIO -cCg -aaa -aaa -aaa -aac -aac -cMS -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaf -aaa -aac -aaa -aqz -aqz -aqz -aqz -aqz -aqz -aaa -akX -awU -apP -apP -apP -apP -apP -apP -apP -aso -ata -aFM -aGT -aHZ -aIX -aKj -aLm -aMP -aNP -aPi -aQA -aQx -aTm -aUK -aWl -aXP -aUM -baP -bcB -baQ -bfg -bgz -bhR -bba -bba -bhS -bba -bba -brv -aZG -brM -brM -brM -bxB -bzc -bAD -bAD -bEa -bFF -bFF -bFF -bKG -bMd -bNJ -bOZ -bQp -bRE -bSQ -bUi -bVB -bWz -bXG -bZh -cax -cbR -bXK -bFW -cfA -cgI -chJ -ciN -ckj -clp -cmw -ciN -cgL -cgL -cgL -crn -crn -crn -cux -cvu -cnv -cxH -cyH -cow -cAb -cgL -cgE -aac -chN -chN -chN -chN -chN -cwu -cIO -cJD -cIO -cwu -aaf -aaf -aaf -aac -aaa -cMT -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -akX -amR -ayh -ayh -apm -akX -aqI -ars -akX -aDj -atd -aFL -aGU -aIa -aIY -aKk -aLn -aIY -aIY -aPj -aQB -aFL -aTn -aTn -aTn -aTn -aUM -baQ -baQ -baQ -bfg -bgz -bhR -bba -bgA -bmw -bok -bba -brw -aZG -brM -brM -brM -bxB -bzd -bAE -bCj -bEb -bFG -bHr -bJa -bKH -bMe -bNK -bPa -bPa -bRF -bSR -bUj -bVC -bWA -bXH -bZi -cay -cbS -bXK -bFW -cfA -cgJ -cgL -ciO -ckk -clq -cmx -cnv -coB -coB -coB -cro -coB -coB -coB -cro -clo -cgK -cyH -cyH -czY -cBe -cCv -cDr -cDY -cER -cFQ -cFS -chN -aac -cIP -cJE -cKm -aac -aaa -aaa -aaf -aac -aaa -cMU -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -akX -akX -akX -amO -awU -akX -amO -amO -akX -cHm -atc -aFL -aGV -aIb -aIZ -aIY -aIY -aIY -aIY -aPj -aQC -aFL -aTo -aTn -aWm -aTn -aZD -baQ -baQ -bdS -bfg -bba -bba -bba -bba -bhU -bba -bba -brx -aZG -brM -brM -bwh -bxB -bze -bAE -bCk -bAE -bFH -bAE -bJb -bKI -bMf -bNL -bKN -bQq -bPc -bSS -bUk -bVD -bWB -bXI -bZj -bQt -cbT -bXK -bFW -cfA -cgK -chK -ciP -ckl -clr -cmy -cnw -coC -cpx -coC -cnw -coC -ctp -coC -cnw -coC -cxI -coC -coC -cAc -cBf -cgE -aac -cko -cES -cFR -cGK -chN -aac -aaa -cJF -aaa -aac -aaa -aaa -aaf -aac -aaa -cMT -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -aaa -aaa -aaa -aqz -amO -awU -akX -akX -art -akX -asr -ate -aFN -aGW -aIa -aIY -aIY -aIY -aIY -aNQ -aPk -aQD -aFL -aTp -aUL -aWn -aXQ -aUM -baR -baQ -bdT -bfg -bba -bhS -bjn -bkS -bba -bba -bba -bba -bjm -brM -brM -brM -bxB -bzf -bAF -bCl -bAF -bFI -bHs -bJc -bxB -bMg -bNM -bPb -bQr -bPc -bST -bST -bVD -bWC -bXJ -bZk -bQu -cbU -bXK -bFW -cfA -cgL -chL -ciQ -ckm -cls -cmx -cnx -coD -cpy -cqn -crp -csq -ctq -cgL -cvv -cwz -cxJ -cyI -cyH -cyH -cBg -cCw -cDr -cDZ -cET -cFS -cFS -chN -aac -aaa -aaa -aaa -aac -aaa -aaa -aaf -aac -aac -cMS -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaf -aac -aaa -aaa -aqz -amO -awU -aCq -amO -amO -akX -asq -akX -aFL -atT -aAX -aIY -aIY -aLo -aIY -aIY -aPj -aQE -aFL -aTq -aUM -aWo -aUM -aUM -baS -bcC -bdT -bfg -bgA -bhT -bjo -bba -bba -bhS -bba -bba -bmv -brM -brM -bwi -bxB -bxB -bAG -bCm -bEc -bxB -bxB -bxB -bxB -bMh -bNN -bPc -bPc -bPc -bPc -bPc -bPc -bPc -bXK -bZl -bPc -bPc -bXK -bFW -cfA -cfA -chM -ciR -ckn -clt -cmz -ciR -ckn -clt -ckn -ciR -ckn -clt -ckn -ciR -ckn -clt -cyJ -cfA -cfA -cBh -cfA -aac -chN -chN -chN -chN -chN -aac -aaa -aaa -aaa -aac -aaa -aaa -aaf -aac -aaa -cMT -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaf -aac -aaa -aaa -akX -aop -awU -akX -amQ -amO -akX -awU -aEz -aFL -atV -aIa -aIY -aKl -aIY -aIY -aIY -aPl -aQF -aRG -aTr -aUN -aWp -aXR -aUM -baT -bcD -bdU -bfh -bba -bhU -bjp -bba -bgA -bol -bok -bba -bjm -brM -brM -bwj -bxC -bzg -bzj -bzj -bzj -bFJ -bHt -bJd -bKJ -bMi -bNM -bPd -bQs -bRG -bSU -bUl -bPd -bWD -bXL -bZm -caz -cbV -bXK -bFW -bWv -aac -aac -ciS -aac -clu -aac -ciS -aac -clu -aac -ciS -aac -clu -aac -ciS -aac -clu -aac -aac -cfA -cBi -cfA -aac -aaa -aaa -aac -aaa -aaa -aac -aaa -aaa -aaa -aac -aaa -aaa -aaf -aac -aaa -cMU -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -akX -aoo -awU -akX -aqJ -aqJ -akX -awU -aEA -aFL -atU -aIa -aIY -aIY -aIY -aIY -aIY -aur -auN -aZE -aZE -aZE -aWq -aXS -aZE -baU -bcE -bdV -baU -baU -baU -bjq -bba -bba -bhU -bba -bry -bsS -brM -brM -bwj -bxD -bzh -bAH -bCn -bEd -bEd -bHu -bEd -bKK -bMj -bNM -bPe -bQt -bQt -bQt -bQt -bVE -bQt -bXM -bZn -caA -cbW -bXK -bFW -bWv -aac -chN -ciT -cko -ciT -chN -ciT -cko -ciT -chN -ciT -cko -ciT -chN -ciT -cko -ciT -chN -aac -cfA -cBh -cfA -aaa -aaa -aaa -aac -aaa -aac -aac -aaa -aaa -aaa -aac -aaa -aaa -aaf -aac -aaa -cMT -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -akX -amx -awU -akX -amO -aru -akX -aDt -akX -aFL -atU -aIa -aIY -aIY -aLp -aIY -aIY -aur -aQE -aFL -aaa -ave -aWr -aXT -aZF -baV -bcF -bdW -bcF -bgB -bgB -bgB -bkT -bgB -bcF -baY -brz -aZG -brM -brM -bwj -bxD -bzh -bzj -bCo -bEe -bEe -bHv -bzi -bKL -bMk -bNO -bPe -bQu -bRH -bSV -bQu -bPd -bWE -bXN -bZo -caB -cbX -bXK -bFW -bWv -aac -chN -ciU -ckp -clv -chN -cny -coE -cpz -chN -crq -csr -ctr -chN -cvw -cwA -cxK -chN -aac -aaa -aaa -aac -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -cMS -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aqz -amO -awU -akX -amO -azj -akX -awU -atK -aFL -atW -auj -aum -aum -auo -aum -aum -auJ -aQH -aFL -aaa -ave -aWs -aXU -aZG -baW -bba -bdX -bfi -bgC -bgC -bjr -bkU -bgC -bgC -bba -brA -aZG -btR -brM -bwj -bxD -bzh -bzj -bCp -bEf -bFK -bHw -bHw -bzj -bMl -bNP -bPd -bQv -bQt -bQt -bUm -bPc -bPc -bXO -bZp -bPc -bPc -cdq -bFW -bWv -aac -chN -ciV -ciW -ciW -chN -cnz -coF -cnA -chN -crr -css -cts -chN -cvx -cwB -cvy -chN -aac -aaa -aaa -aac -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -cMT -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aac -aac -aqz -azj -awU -akX -aCq -akX -akX -awU -atK -aFL -aHb -aIe -aJb -aJb -aJb -aJb -aNR -aPp -aQI -aFL -aaa -ave -aWt -aXV -aZG -aZG -bcG -aZG -aZG -bgD -bhV -bhR -bba -bba -bom -bpX -bba -aZG -brM -buX -bwk -bxE -bzi -bzi -bCq -bEg -bFL -bHx -bJe -bzj -bMl -bNQ -bPc -bQw -bRI -bRI -bPc -bPc -bWF -bXM -bZq -caC -cbY -cdq -bFW -bWv -aac -chN -ciW -ckq -ciW -chN -cnA -coG -cnA -chN -crs -cst -cts -chN -cvy -cwC -cvy -chN -aac -aac -aac -aac -aac -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aac -aaf -aac -aaa -cMU -aaa -aac -aaf -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aac -aac -akX -atK -amR -ayh -ayh -ayh -ayh -aDu -aEB -aFP -aFR -aIf -aJc -aKm -aKm -aJc -aKm -aKm -aQJ -aRI -aaa -ave -aWu -aXV -aZH -baX -bba -bdY -aZG -bgE -bba -bba -bkV -bba -bgC -bhR -brB -aZG -brM -brM -bwj -bxF -bzj -bzj -bCr -bEh -bzj -bzj -bJf -bzj -bMl -bNR -bPd -bQx -bRJ -bRJ -bUn -bPc -bWG -bXM -bZr -bQt -cbZ -cdq -bFW -bWv -aac -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -chN -aac -aaa -czp -czp -cDs -czp -czp -czp -czp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -cMT -aaa -aac -aaf -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aac -aaa -akX -akX -akX -aqz -aqz -aqz -aqz -akX -aEC -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aRJ -aaa -ave -aWv -aXW -aZI -aZI -bcH -bdZ -bfj -bgF -bhW -bjs -bba -bba -bgC -bhR -brC -aZG -brM -brM -bwj -bxC -bzj -bzj -bCs -bEi -bFM -bHy -bHt -bzj -bMl -bNR -bPc -bQy -bRK -bRJ -bUo -bPc -bWH -bXM -bQt -bQt -cca -cdq -bFW -bWv -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -czp -czp -cCx -cDt -cEa -cEU -cFT -czp -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aac -cMS -aac -aac -aaf -aac -aac -aaa -aac -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aED -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aRJ -aaa -ave -aWw -aXX -aZJ -baY -bba -bea -aZG -bgG -bhX -bba -bkW -bba -bon -bba -brD -aZG -brM -brM -bwl -bxG -bzk -bzk -bzk -bxG -bxG -bxG -bHt -bKM -bMl -bNR -bPc -bQy -bRL -bSW -bUp -bPc -bWI -bXP -bQt -bQt -ccb -cdq -bFW -bWv -bWv -bWv -ciX -ciX -ciX -bWv -bWv -ciX -ciX -ciX -bWv -bWv -ciX -ciX -ciX -bWv -bWv -bWv -czp -czp -cBj -cCy -cDu -cBm -cBj -cFU -czp -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -cMT -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEE -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aRJ -aaa -ave -aWx -aXV -aZG -baZ -bba -beb -aZL -aZL -aZL -bjt -aZL -bmx -aZL -bpY -aZL -aZL -btS -brM -brM -bxG -bzl -axT -axT -ayZ -azc -bzk -bJg -bKN -bMm -bNS -bPc -bQy -bRL -bSX -bUq -bPc -bWJ -bQt -bQt -bQt -ccc -cdq -ceE -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -coH -cpA -cpA -cpA -cpA -cpA -cuy -bUs -bWv -bUs -cuA -czp -cAd -cBk -cCz -cBj -cEb -cBj -cBj -czp -czp -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -cMU -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aii -cPa -cPa -cPa -cPa -cPY -cPa -cPa -cPa -cPa -cPY -cPa -cPa -cPa -cPa -cPY -cPa -cPa -cPa -cPa -aaa -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aED -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aRJ -aaa -ave -aWw -aXY -aZK -bba -bcI -bec -aZL -bgH -bhY -bhY -bhY -bhY -boo -bpZ -aZL -bsT -brM -brM -brM -bxG -bzm -bAJ -bCu -bEk -bFO -bHz -bJh -bKO -bMn -bzj -bPd -bQz -bRM -bSY -bUr -bPc -bWK -bXQ -bZs -aty -ccd -cdr -ceF -bWQ -cgM -chO -cgM -cgM -cgM -cgM -cnB -coI -bWv -cqo -bWv -bWv -ctt -cuz -cvz -cpA -cxL -cyK -czp -cAe -cBj -cCz -cDv -cBj -cBj -cFV -cGL -czp -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -cMV -cMQ -aac -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aac -aaf -cOy -cPb -cPm -cPB -cPP -cPZ -cPP -cPP -cPP -cPP -cQB -cPP -cPP -cPP -cPP -cQQ -cPP -cPP -cPP -cRn -cPV -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aaa -aED -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aFQ -aRJ -aaa -ave -aWw -aXZ -aZL -aZL -aZL -aZL -aZL -aZL -bhZ -bju -bhY -bhY -bhY -bhY -aZL -bsT -brM -buY -brM -bxG -bzn -bAK -axW -bEl -bFP -bHA -bJi -bKP -bMl -bNT -bPc -bPc -bRI -bRI -bPc -bPc -bPc -bXR -bHt -bHt -bHt -cds -bHt -bHt -cgN -chP -ciY -ckr -clw -chW -cnC -coI -bWv -bUs -crt -cbN -bWv -bWv -bWv -cwD -cxM -cyL -czq -cAf -cBl -cCA -cDw -cBj -cEV -cBj -cEX -czp -aaa -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aac -cMW -cNh -cNw -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aac -aaf -cOy -cPc -cPk -cPC -cPl -cOd -cPl -cPl -cPl -cPl -cOd -cPl -cPl -cPl -cPl -cOd -cPl -cPl -cRe -cRo -cPV -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aac -aac -aaa -aac -aaf -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aEF -aFR -aFR -aFR -aJd -aKm -aKm -aMQ -aFN -aFN -aFN -aRK -ave -ave -aWy -aYa -aZL -bbb -bbb -bed -bfk -aZL -bia -bjv -bkX -bmy -bhY -bhY -brF -bsT -brM -bqj -brM -bxG -bxG -bxG -bxG -bxG -bxG -bxG -bJj -bKP -bMl -bzj -bPf -bzj -bzj -bzj -bzj -bzj -bWL -bXS -bHt -caE -cce -bHt -cce -cfK -cgN -chQ -chW -cks -clx -cmA -cnC -coI -bWv -bUs -cru -cbN -ctu -cuA -bWv -cwE -cxN -cyM -czr -cAg -cAg -cAg -cDx -cBj -cEW -cFW -cGM -czp -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -cME -cNh -cNE -aaa -aaa -aaa -aac -aaa -aaa -aaa -aac -aaf -aii -cPd -cPn -cPD -aaa -cOd -aaa -aaa -aaa -aaa -cOd -cNx -aaa -aaa -aaa -cOd -aaa -aaa -cRf -cRp -cPV -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -aaa -aaa -aac -aaa -aaa -aaa -aaa -aac -aac -aaa -aac -aaa -aaa -aaa -aFL -aJe -aKn -aLr -aMR -aFL -aEJ -auO -aDD -aLs -ave -aWz -aYb -aZM -bbc -bbc -bbc -bfl -bgI -bib -bjw -bkY -bmz -bop -bhY -brG -bsT -brM -bqj -brM -bxH -bzo -bAL -bAL -bAL -bzp -bHB -bJk -bKP -bMl -bzj -bxF -bzj -bzj -bSZ -bzj -bzj -bzj -bNR -bHt -caF -ccf -bHt -ceG -cfL -cgN -chR -chW -chW -cly -cmB -cnC -coJ -bzv -bzv -bzv -bzv -bzv -cuB -cvA -cvA -cxO -cyN -czp -cAh -cBm -cBj -cDy -cEc -cEX -cFX -cFX -czp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aac -cMW -cNh -cNN -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -cPo -cPD -aaa -cOd -aaa -aaa -cQh -cQh -cQh -cQh -cQh -cQh -cQh -cQC -aac -aac -cRg -cRp -cRy -aii -aac -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aac -aaa -aaa -aFL -aJf -aKo -aKo -aMS -aFL -aEJ -aQL -aRM -aTt -ave -aWw -aYc -aZN -bbd -bcJ -bee -bfm -aZN -bic -bjx -bkZ -bmA -bhY -bhY -brG -bsT -brM -bqj -brM -bxH -bzp -bzp -bzp -bzp -bFQ -bHC -bJl -bKQ -bMo -bJq -bJq -bJq -bRN -bHD -bHD -bzj -bzj -bNR -bHt -caG -bKP -bHt -caI -cfM -cgN -chS -ciZ -ckt -cgO -cmC -cnD -cgM -cgM -chO -cgM -cgM -ctv -cuC -bTj -cwF -cxP -cyO -czp -cAi -cBn -aqA -cDz -cBj -cEY -cFX -cGN -czp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aac -cME -cNO -cNN -cOd -cOd -cOd -cOd -cOd -aaa -aaa -aac -cPe -cPe -cPE -cPe -cPe -cQh -cQh -cQh -cQh -cQh -cQE -cQh -cQh -cQh -cQh -aaa -aaa -cRg -cRp -cPV -aii -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aac -aac -ave -aFL -aFL -aFL -aFL -aFL -aFL -ave -aQM -aQM -aTu -ave -aWw -aMW -aZL -aZL -bcK -bcL -bcL -aZL -bid -bjy -bla -bmB -bhY -bhY -brG -bsT -brM -bqj -bwm -bxH -bzq -bAL -bAL -bAL -bFR -bHD -bJm -bKR -bMp -bNU -bPg -bQA -bKU -bTa -bHD -bVF -bzj -bXT -bHt -caH -ccg -bHt -ceH -cfN -cgN -cgN -cgN -cgN -cgN -cmD -cnE -coK -cpB -cqp -crv -cgN -cnC -coI -bWv -bWv -bWv -bWv -czp -czp -czp -czp -czp -czp -czp -cFY -czp -czp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aac -aaa -cME -cNT -cOe -cOk -cOv -cOF -cOd -aaa -aaa -aac -cPe -cPp -cPF -cPQ -cQa -cQi -cQo -cQv -cQy -cQt -cQt -cQt -cQy -cQM -cQh -cQh -cQY -cQY -cRq -cQY -cQY -cQY -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aac -aac -abd -aaf -aaa -aii -ajd -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -ave -aIg -aJg -avY -avY -avY -avY -ave -ave -ave -aTv -aUQ -aWA -aYd -aZO -bbe -bcL -bcL -bcL -aZL -bie -bjz -blb -blb -blb -bqa -aZL -bsU -brM -buZ -bwn -bxI -bzr -bAM -bAM -bAM -bFS -bHE -bJn -bKS -bKU -bKU -bPh -bKU -bKU -bTb -bHD -bVG -bzj -bJk -bZt -caI -bKP -cdt -caI -bKP -cgO -chT -cja -cku -cgN -cJl -chW -chW -chW -cqq -crw -csu -cnC -cuD -cvB -cvB -cxQ -bWv -czs -cAj -bUs -cCC -bWv -cEd -cEZ -cEZ -cGO -bWv -aac -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -cNx -cNx -cNx -cNx -cNx -cOl -cOl -cOG -cOd -cOS -cOS -cOd -cPe -cPq -cPG -cPG -cQb -cQj -cQp -cQt -cQw -cQw -cQF -cQw -cQw -cQw -cQm -cQh -cQZ -cRh -cRr -cRz -cRH -cQY -aaa -aaf -aac -aad -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -aaa -aaa -aaf -aac -aii -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aii -aac -aac -aaa -aaa -aaa -aaa -aaa -aaf -avk -aFS -avk -avY -avY -avY -aLs -avY -aHe -ave -aQN -ave -aTw -ave -aWB -aMW -aZL -aZL -aZL -beg -bfn -aZL -bif -bhY -bhY -bmC -boq -bqb -aZL -bsT -brM -brM -bwo -bxH -bzp -bAL -bAL -bAL -bFT -bHF -bJo -bKT -bKU -bKU -bKU -bPi -bRO -bTc -bHD -bPb -bzj -bXU -bZu -caJ -cch -cdu -caJ -cfO -cgP -chU -cjb -ckv -clz -cmF -cnF -coL -chW -cqr -crx -csv -ctw -cuE -cvC -cwG -cxR -cyP -czt -bUs -bUs -bUs -bWv -bWv -cFa -cFZ -cGP -bWv -bWv -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -cNx -cNF -cNP -cNU -cOf -cOm -cOw -cOH -cOP -cOw -cOw -cOW -cPf -cPr -cPH -cPR -cQc -cQk -cQq -cQw -cQw -cQC -cQC -cQI -cQL -cQN -cQR -cQh -cRa -cRi -cRs -cRA -cRI -cRM -aaa -aaf -aac -aad -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aii -aaa -anM -aoz -apv -aaa -anM -aoz -apv -aaa -anM -aoz -apv -aaa -aii -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aEG -avY -aEG -avY -avY -avY -aAC -avY -ave -ave -ave -ave -ave -ave -aWC -aYe -aZP -bbf -aZL -aZL -aZL -aZL -aZL -aZL -blc -aZL -aZL -aZL -aZL -aZL -btQ -btQ -btQ -bxH -bzs -bAN -bAN -bAN -bFU -bHG -bJp -bKU -bKU -bNV -bNV -bKU -bKR -bTd -bHD -bVH -bKN -bXV -bPa -caK -cci -bEd -ceI -cfP -cgQ -chV -cjc -ckw -cgN -cmG -cmB -coM -cpC -cqs -cry -cgN -cgN -bWv -bWv -cwH -cxS -cyQ -czu -cAk -cyR -cwM -cDA -cyR -cFb -cwM -cGQ -bUs -cyP -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -aaa -aaa -cNx -cNG -cNQ -cNV -cOg -cOn -cNV -cOI -cOQ -cOT -cOV -cOX -cPg -cPs -cPI -cPS -cQc -cQl -cQr -cQw -cQz -cQC -cQG -cQJ -cQF -cQO -cQS -cQW -cRb -cRj -cRt -cRB -cRJ -cRM -aaa -aaf -aac -aad -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -aam -aaa -aaf -aac -aii -aac -anM -aoA -apv -aaa -anM -aoA -apv -aaa -anM -aoA -apv -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -avk -avk -avk -avY -aJh -ave -avY -avY -ave -aDD -avY -ave -aIi -ave -aWD -aYf -aYk -bbg -bcM -aYk -bfo -bfq -bfq -bjB -bld -bmD -bfq -bqc -brH -brI -brM -brM -brM -bxH -bzt -bzp -axY -bzp -bFT -bHH -bJq -bJq -bJq -bJq -bJq -bJq -bRP -bTe -bJw -bVI -bWM -bWM -bWM -caL -ccj -bVI -ceJ -cfQ -cgN -cgN -cgN -cgN -cgN -cmH -cnG -coN -cpD -cqt -crz -csw -ctx -cuF -bWv -cwI -cwM -cyR -cyR -cAl -cyR -cwM -cwM -cyR -cFc -cGa -caQ -cHr -cIa -cIQ -cJG -aaa -aaa -aac -aac -aaf -aac -aaa -aaa -aaa -cNx -cNH -cNR -cNW -cOh -cOo -cOx -cOJ -cOR -cOU -cOx -cOY -cPh -cPt -cPJ -cPT -cQd -cQh -cQs -cQw -cQw -cQC -cQC -cQK -cQw -cQP -cQT -cQX -cRc -cRk -cRu -cRC -cRK -cRM -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaf -aaf -akc -aaa -aii -aaa -anM -aoA -apv -aac -anM -aoA -apv -aac -anM -aoA -apv -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -avk -aEJ -avY -ave -aLt -avY -aBH -avY -avY -ave -avY -ave -aRS -aYg -aZQ -bbh -bcN -beh -bfp -bgJ -big -bjC -ble -ble -ble -bqd -bih -bsV -brM -brM -brM -bxH -bxH -bxH -bxH -bxH -bFV -bHH -bJr -bKV -bMq -bNW -bNW -bQB -bRQ -bTf -bJw -bVJ -bWN -bXW -bZv -caM -cck -bVI -ceK -cfR -cgN -chW -chX -chW -clA -chW -cmB -coO -cpE -cqu -crw -cgN -cty -cuG -cvD -cwJ -cxT -bWQ -czv -cAm -bTj -cCD -bWQ -cEe -cFd -cGb -cGR -cGQ -ciX -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -aaa -aaa -cNx -cNx -cNx -cNx -cNx -cOp -cOy -cOK -cOd -cOS -cOS -cOd -cPe -cPu -cPG -cPG -cQb -cQm -cQt -cQt -cQw -cQw -cQF -cQw -cQw -cQw -cQj -cQh -cRd -cRl -cRv -cRD -cRL -cQY -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aaa -aaa -aaa -aac -aac -anM -aoA -apv -aaa -anM -aoA -apv -aaa -anM -aoA -apv -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aDy -aDy -aDy -aDy -aDy -aDy -ave -avY -ave -ave -ave -ave -aLs -aQL -aWE -aYh -aYl -bbi -bcO -aYk -bfq -bgK -bih -bih -bih -bmE -bih -bih -bih -bsV -brM -brM -brM -bxJ -bxL -bAO -ayb -bxL -bFW -bHH -bJs -bKW -bKU -bNX -bPi -bQC -bRR -bTg -bJw -bVK -bWO -bXX -bZw -bWN -ccl -bVI -ceK -cfR -cgN -chX -chW -chW -clA -chW -cmB -coP -cpF -cqv -crA -cgN -ctz -cuH -bWv -cwK -cwM -cyS -cyR -cAn -cyR -cyR -cwM -cyR -cwM -cGc -cGS -cHs -ciX -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aaa -aaa -aaa -aac -aaa -aaa -aac -cOd -cOq -cOz -cOL -cOd -aaa -aaa -aac -cPe -cPv -cPK -cPU -cQe -cQn -cQu -cQx -cQA -cQt -cQt -cQt -cQA -cQM -cQh -cQh -cQY -cQY -cRw -cRE -cQY -cQY -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aii -aii -aii -aac -aaa -anM -aoA -apv -aaa -anM -aoA -apv -aaa -anM -aoA -apv -aaa -aac -aaa -aaa -aaa -aaa -ayi -aBz -aBz -aBz -aBz -aFT -aHc -aIh -aJi -aDy -aIg -avY -ave -aDD -avY -aRN -aHd -aUR -aWF -aYi -aYk -bbj -bcP -aYk -bfr -bgK -bih -bjD -blf -bih -bih -bqe -brI -brI -brM -brM -brM -brM -bzu -bAO -axZ -bxL -bFX -bHH -bJt -bKX -bMr -bNY -bKU -bQD -bKR -bTh -bJw -bVL -bWN -bXY -bWN -caN -ccm -bVI -ceL -cfS -cgN -chY -chX -ckx -clB -chW -cmB -coP -coP -coP -coP -cgN -bWv -bWv -bWv -cwH -cvE -cyT -cyR -cAo -cwM -cwM -cDB -cyR -cwM -cxV -cvE -cHt -bWv -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aac -aaa -aaa -aac -cOd -cOd -cOy -cOd -cOd -aaa -aaa -aac -cPe -cPe -cPL -cPe -cPe -cQh -cQh -cQh -cQh -cQh -cQH -cQh -cQh -cQh -cQh -aaa -aaa -cRf -cPM -cRF -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aii -aaa -aac -aaa -aaa -aaa -aoB -aaa -aaa -aaa -aoB -aaa -aaa -aaa -aoB -aaa -aaa -aac -aaa -aaa -ayi -ayi -ayi -aBA -aCt -aDv -aBz -aFU -avY -aEO -avY -aDy -aAE -aMT -aHd -aHd -aHd -aRO -avY -aTx -aWG -aYj -aYk -bbj -bcQ -aYk -bfq -bgK -bih -bjE -blg -bih -bih -bqe -brI -brM -brM -brM -brM -bwu -bxL -bAP -ayd -bxL -bFW -bHH -bJu -bJu -bMs -bNZ -bKU -bQD -bKR -bTi -bJw -bVM -bWP -bXZ -bZx -caO -ccn -bVI -ceM -cfR -cgN -chX -cjd -chW -clA -chW -cmB -coP -cpF -cqv -crA -cgN -ctA -cuI -cvC -cwL -cxU -bWv -bWv -ceM -cvE -cwM -cyR -cyR -cwM -cwM -cGT -bWv -bWv -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aac -aaa -aaa -aac -aac -aaf -aaf -aaf -aaf -aaf -aaf -aac -aaa -cPw -cPM -cPV -cOd -aaa -aaa -cQh -cQh -cQh -cQh -cQh -cQh -cQh -cQC -aac -aac -cRg -cPM -cRy -aii -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aii -aac -akY -alX -alX -anN -aoC -aoC -aoC -aoC -aoC -aoC -aoC -aoC -aoC -aoC -aoC -aoC -avT -awW -ayj -azl -ayj -aBB -aCu -aDw -aEH -aFV -aHd -aHd -aJj -aDy -aLu -aJk -ave -ave -ave -ave -ave -aUS -aWH -aYk -aYk -bbk -bcR -bei -bfq -bgK -bih -bih -bih -bih -bih -bqf -brJ -brM -brM -brM -bwp -bxK -bxL -bAQ -ayc -bxL -bFW -bHH -bJv -bKY -bJv -bOa -bPj -bQE -bRS -bJw -bJw -bVI -bVI -bVI -bVI -caP -bVI -bVI -cex -cfR -cgN -chW -cje -chW -clA -cmI -cnH -coQ -cpG -cqw -cjd -cgN -ctB -cfR -cvE -cwM -cxV -bWv -czw -ceM -cxU -cCE -bWv -crt -bUs -cGd -cGU -bWv -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aii -cPi -cPx -cPM -cPV -cOd -aaa -aaa -aaa -aaa -cOd -cNx -aaa -aaa -aaa -cOd -aaa -aaa -cRf -cPM -cPV -aii -aac -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aii -aaa -aac -aaa -aaa -aaa -aoD -aaa -aaa -aaa -aoD -aaa -aaa -aaa -aoD -aaa -aaa -aac -aaa -aaa -ayi -ayi -ayi -aBC -aCv -aDx -aEI -aFW -avY -avY -aJk -aDy -aLv -aJk -ave -aPr -avY -ave -aaa -aUT -aWI -aYk -aZR -bbl -bcS -bej -bfs -bgL -bii -bjF -blh -blh -blh -bqd -brK -brM -brM -bva -bwq -bxL -bxL -bxL -bxL -bxL -bFW -bHH -bJw -bJw -bJw -bJw -bJw -bQF -bRT -bJw -bUs -bVN -bWQ -bWQ -bWQ -caQ -bWQ -bWQ -ceN -cfT -cgM -chO -cjf -cgM -cgM -cgM -cgM -cgM -cgM -cgM -cjf -cgM -bWQ -cfT -caQ -bzL -bzL -bzL -bTj -cAp -cBo -bWv -bWv -bWo -cFe -bWo -bWo -bWo -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -cOy -cPj -cPy -cPN -cPW -cOd -cPa -cPa -cPa -cPa -cOd -cPa -cPa -cPa -cPa -cOd -cPa -cPa -cRm -cPM -cRy -aii -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aii -ajd -aii -alY -aaa -anM -aoE -apv -aaa -anM -aoE -apv -aaa -anM -aoE -apv -aaa -aac -aaa -aaa -aac -aac -ayi -aBz -aBz -aBz -aBz -avY -aHe -aIi -aJk -aDy -aHe -aJk -aup -avY -avY -ave -ave -aUS -aWH -aYk -aZS -bbm -bcT -bei -bft -bfq -bfq -bfq -bli -bmF -bfq -bqg -brI -brM -btT -bvb -bwr -bxM -bzv -bAR -bzv -bzv -bFY -bHI -bzv -bKZ -bzv -bxM -bPk -bQG -bRU -bxM -bzv -bHI -bzv -bzv -bzv -caR -bzv -bzv -ceO -cfU -cgR -chZ -bzv -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cfJ -cuJ -cvF -cwN -cxW -cxW -cxW -cAq -cBp -bDb -aaa -cfn -cbu -cfn -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -cOy -cPk -cPk -cPO -cPX -cQf -cPX -cPX -cPX -cPX -cQD -cPX -cPX -cPX -cPX -cQU -cPX -cPX -cPX -cRx -cRy -aii -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aac -aac -aaa -aac -aac -anM -aoE -apv -aaa -anM -aoE -apv -aaa -anM -aoE -apv -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aDy -aEJ -avY -avY -aAC -aJk -aDy -ave -aJk -ave -ave -ave -ave -aQL -aUU -aWJ -aYl -aYl -aYl -aYl -aYl -aYl -aYl -aYl -aYl -aYl -aYl -aYl -bqh -aYl -aYl -btU -bvc -bws -bxN -bxN -bxN -bxN -bxN -bxN -bHJ -bJx -bLa -bxN -bxN -bPl -bQH -bRV -bTj -bUt -bVO -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -cgS -cia -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bWR -bDb -bDb -bDb -cAr -cBp -csG -aaa -cfn -cFe -cfn -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aii -cPl -cPl -cPl -cPl -cQg -cPl -cPl -cPl -cPl -cQg -cPl -cPl -cPl -cPl -cQg -cPl -cPl -cPl -cPl -aaa -aii -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaf -aaf -aaf -aaa -aii -aaa -anM -aoE -apv -aac -anM -aoE -apv -aac -anM -aoE -apv -aaa -aac -aaa -aac -aac -ave -ave -ave -ave -ave -avY -avY -ave -aIj -aJk -aDy -aJi -aJk -ave -aPs -avY -ave -aTx -aUV -aWK -aYm -aYm -aYm -aYm -aYm -aYm -aYm -bij -aYm -aYm -bmG -bor -bqi -brL -brL -btV -bvd -bwt -brM -bzw -bAS -ayf -bEm -bFZ -bHK -bJy -bLb -bMt -bOb -bPm -bQI -bRW -bRW -bRW -bRW -bWR -bYa -bYa -bYa -bWR -cdv -ceP -cfV -cgT -cib -cjg -cdB -clC -bYa -bYa -cdB -clC -bYa -bYa -cdB -clC -bYa -bYa -bWR -aaa -aaa -csG -cAr -cBp -csG -aaa -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 -aac -aac -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aac -aaa -aaa -aaf -aaa -aii -aac -anM -aoE -apv -aaa -anM -aoE -apv -aaa -anM -aoE -apv -aac -aac -aac -ave -ave -ave -aAw -aBD -aCw -ave -ave -ave -ave -aBH -aJl -aDy -aHe -aJk -aBH -avY -avY -ave -aTx -aUW -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -aUZ -bos -bqj -brM -brM -btW -bve -brM -brM -bzx -bAT -ayg -bEn -bAT -bEn -bJz -bLc -bMu -bOb -bPn -bQJ -bRW -bTk -bUu -bVP -bWR -bYa -bYa -bYa -cco -cdw -ceQ -cfW -cgU -cib -cjh -cdB -clD -cmJ -bYa -cdB -clD -cqx -bYa -cdB -clD -cmJ -bYa -bWR -aaa -aaa -csG -cAr -cBp -csG -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -aaa -aac -aaf -aaa -aii -aaa -anM -aoF -apv -aaa -anM -aoF -apv -aaa -anM -aoF -apv -aaa -aii -aaa -ave -ayk -azm -aAx -aAx -aym -aDz -avY -avY -aHf -avY -aJk -ave -ave -aJk -ave -ave -ave -aRP -aTy -aUX -aWL -aYn -aZT -bbn -bcU -bek -bfu -bgM -bik -bcU -blj -aUZ -bot -bqj -brN -brN -brM -bve -brM -brM -bzw -bAU -ayg -bEo -bGa -bEo -bJA -bLc -bMv -bOb -bPo -bQK -bRW -bTl -bUv -bVQ -bWR -bYa -bYa -bYa -bYa -cdx -ceR -cfX -cgV -cib -cji -cdB -clD -bYa -bYa -cdB -clD -bYa -bYa -cdB -clD -bYa -bYa -bWR -aaa -aaa -csG -cAr -cBp -csG -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -afJ -afJ -aac -aaf -aaa -aii -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -atl -aaa -aii -ave -ave -ayl -aym -aym -azn -aCx -aAz -aBF -aBF -aBF -aHd -aJm -aKp -aLw -aJm -aHd -aPt -aHd -aRQ -aTz -aUY -aWM -aYo -aZU -aZU -bcU -bcU -bfu -bcU -bik -bcU -blj -aUZ -bou -bqk -aUZ -aUZ -btX -bve -brM -bxO -bzy -bAV -ayO -bEp -bGb -bHL -bJB -bLd -bMw -bOb -bOh -bQL -bRW -bTm -bUw -bVR -bWR -bYb -bYa -bYa -bYa -cdy -ceS -cfW -cgU -cic -cjj -cdB -clE -cmK -cnI -cdB -cpH -cqy -crB -cdB -ctC -cuK -cvG -bWR -aac -aac -bDb -cAr -cBp -bDb -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -ajd -aii -aii -ave -awX -aym -aym -aym -aym -aym -aDA -aEK -aFX -ave -avY -avY -aKq -avY -avY -aLs -aPu -aAC -aRR -aTA -aUZ -aUZ -aYp -aZV -bbo -bcV -bcU -bfv -bfv -bfv -bfv -bfv -bfv -bov -bql -brO -aUZ -brM -bve -brM -bxO -bzy -bAV -ayD -bEq -bGc -bHM -bJC -bLe -bMw -bOb -bOh -bQM -bRX -bTn -bUx -bVS -bWR -bYa -bYa -bYa -ccp -cdz -ceT -cfW -cgW -cid -cjk -ceW -clF -cmL -cnJ -coR -clF -cmL -crC -coR -clF -cmL -cvH -bWR -aaa -aaa -csG -cAr -cBp -csG -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aac -aac -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -aac -aad -aad -aad -aac -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaf -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aac -aad -aac -aaa -aaa -aaa -aac -abd -ave -awY -aym -azn -aym -aym -aym -aDA -avY -avY -aHg -avY -avY -ave -ave -avY -ave -ave -ave -aRS -aTA -aUZ -aWN -aYq -aZW -aZW -bcW -bel -bfw -bfw -bfw -bfw -bfw -bfw -bow -bqm -brP -aUZ -brM -bve -brM -bxP -bxP -bxP -ayV -bEr -bGd -bHN -bxP -bxP -bxP -bxP -bPp -bQL -bRW -bTo -bUy -bVT -bWR -bYa -bYa -bYa -cco -cdA -ceU -cfW -cgU -cib -cjl -cky -cfW -cfW -clH -coS -cfW -cfW -clH -csx -cfW -cfW -clH -cwO -aaa -aaa -csG -cAr -cBq -csG -aaa -aaa -csG -csG -csG -csG -csG -aac -aac -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -afJ -aaa -aaa -aaa -aaa -aac -abd -ave -awZ -aym -aym -aAy -aBE -aCy -aDA -aEL -avY -ave -aIk -avY -ave -aLx -avY -ave -aPv -avY -aRS -aTA -aUZ -aWO -aYr -aZX -aZX -bcU -bcU -bfx -bcU -bil -bcU -blk -bmH -box -bfv -brQ -bsW -brM -bve -bwu -bxP -bzz -bAW -ayU -bEs -asA -bHO -bJD -bLf -bMx -bHS -bOh -bQL -bRW -bTp -bUz -bVU -bWR -bYa -bYa -bYa -bWR -cdv -ceV -cfY -cgX -cie -cjm -ckz -clG -cmM -cnK -cmM -clG -cmM -cnK -cmM -clG -cmM -cvI -cwP -cxX -cxX -czx -cAs -cBr -csG -aaa -aaa -csG -cGe -cGV -cGe -csG -aaa -aac -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -aac -aac -aac -aac -aac -aac -aaa -aaa -aaf -aad -aac -aaa -aaa -aaa -aaa -ave -ave -ave -ave -ave -aAz -aBF -aBF -aDB -ave -ave -ave -avY -aAC -ave -avY -avY -aBH -avY -avY -aRS -aTA -aUZ -aWP -aYs -aZY -bbp -bcU -bem -bfx -bcU -bil -bcU -bcU -bmI -box -bfv -bmI -aUZ -brM -bve -bwv -bxP -bzA -bAX -ayX -bEt -bGf -bHP -bHP -bAY -bMy -bHS -bOh -bQN -bRW -bRW -bRW -bRW -bWR -bWR -bWR -bWR -bWR -cdB -cdB -cfZ -cgY -cib -cfW -aof -clH -cfW -cfW -coT -clH -cfW -cfW -csy -clH -cfW -cfW -cwO -aaa -aaa -csG -cAt -cBp -csG -aaa -aaa -csG -cGf -cGW -cHu -csG -aaa -aam -aac -aac -aac -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -afJ -afJ -afJ -aaa -aaa -aam -afJ -afJ -afJ -aac -aaf -aad -aac -aac -aac -aac -aac -avf -avU -avY -avU -avY -aAA -ave -aCz -avY -avY -aEO -avY -avY -avY -ave -ave -aBG -ave -ave -ave -aRT -aTA -aVa -aVa -aVa -aVa -aVa -aVa -aVa -bfy -bgN -bim -bcU -bcU -bcU -boy -bqn -bcU -bsW -brM -bve -brM -bxP -bzB -bAY -ayW -bEu -bGg -bHP -bHP -bAY -bMz -bHS -bPq -bQL -bRY -bTq -bUA -bVV -bWS -bYc -bZy -caS -ccq -ccq -cdB -cga -cgZ -cif -cjn -ceW -clI -cmN -cnL -coR -cpI -cmN -cnL -coR -ctD -cmN -cnL -bWR -aac -aac -bDb -cAt -cBp -bDb -aaa -aaa -bDb -bDb -crP -bDb -bDb -aaa -aaa -aaa -aaa -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aac -aad -abd -aac -atL -atL -atL -atL -atL -atL -atL -aAA -avZ -avY -avY -aEM -aFY -aHh -avY -avY -ave -aLy -avY -avY -aBH -auP -auY -avv -avG -awz -awE -awG -awI -awK -aVa -aUZ -aUZ -aUZ -awP -brS -awS -bfv -bfv -axy -aUZ -brM -bve -brM -bxP -bxP -axU -bAY -bEu -bGg -bHP -aze -azf -bHS -bHS -azi -bQL -bRY -azS -azX -aAa -bWS -bYc -bZz -caT -ccr -ccr -cdB -cgb -cgY -cib -cjo -cdB -clJ -cmO -cnM -cdB -cpJ -cqz -crD -cdB -ctE -cuL -cvJ -bWR -aaa -aaa -csG -cAt -cBp -csG -aaa -aaa -bDb -bTG -bTG -cyc -bDb -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaf -aac -aad -aac -aac -atL -aus -avg -avV -axa -ayn -atL -aAA -ave -avY -avY -aEN -aFZ -aHi -avY -avY -ave -aLz -avY -aLs -aBH -avY -aRV -aTC -aVc -aWR -aYu -baa -bbr -bcY -aVa -bfA -bgO -aUZ -bjH -bcU -bmK -bfv -bfv -brS -bsW -brM -bve -brM -bxR -bzC -bBa -bAY -bEw -bGi -bEw -bEw -bEw -bMB -bOc -bPs -bQP -bSa -bTs -bUC -bVX -bWS -bYd -bZA -caU -ccs -ccs -cdB -cgc -cgY -cig -cjp -cdB -bYa -bYa -clD -cdB -bYa -bYa -clD -cdB -bYa -bYa -clD -bWR -aaa -aaa -csG -cAt -cBp -csG -aaa -aaa -bDb -cGg -cza -bTG -bDb -bDb -bDb -csG -csG -csG -aaf -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -arN -aaa -aac -atL -aut -avh -avW -avi -ayo -atL -aAA -ave -aCA -avY -aEO -avY -avY -avY -avY -ave -aLA -aMU -aMU -aMU -aMU -aRW -aTD -aVa -aVa -aVa -aTG -bbs -aVa -aVa -bfB -bgP -bin -bcU -blm -bmL -bfv -bfv -bmI -aUZ -brM -bve -brM -bxS -bzD -bBb -bAY -bAY -bGj -bAY -bAY -bAY -bAY -bOd -bPt -bQQ -bSb -bTt -bUD -bVY -bWS -bYc -bZB -caV -ccs -ccs -cdB -cgd -cgY -cib -cjq -cdB -bYa -cmJ -clD -cdB -bYa -cqx -clD -cdB -bYa -cmJ -clD -bWR -aaa -aaa -csG -cAt -cBp -cCF -aaa -aaa -bDb -cGh -bTG -bTG -bTG -cGW -cGW -cKn -bTG -cLi -aaf -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aac -afJ -aaa -atL -auu -avi -avi -avi -ayp -azo -aAB -ave -ave -ave -ave -aBH -ave -aBG -ave -ave -aLB -aMV -aOc -aPx -aQP -aRX -aTE -aVa -aWS -aYv -bab -bbt -aWW -aVa -bfC -bgQ -aUZ -bjI -bln -bmM -bfv -bfv -brT -aUZ -brM -bve -brM -bxS -bzC -bBc -bCT -asz -bGk -bHR -bJF -bLh -atx -bOc -bPu -bQL -bSc -bTu -bUE -bVZ -bWS -bYc -bZC -caW -bZz -cdC -cdB -cge -cgY -cib -cjr -cdB -bYa -bYa -cnN -cdB -bYa -bYa -cnN -cdB -bYa -bYa -cnN -bWR -aaa -aaa -csG -cAt -cBp -csG -aaa -aaa -bDb -cyc -bTG -cHv -bDb -cIR -cGg -csG -csG -csG -aaf -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -afJ -aaa -atL -auv -avj -avX -axb -ayq -atL -avY -ave -avY -avY -avY -avY -avY -avY -aAC -avY -aLB -aMW -aFY -aBH -aHe -aRY -aTF -aVa -aWT -aYw -bac -bbu -aWW -aVa -aSf -aSf -aSf -aSf -aSf -aSf -boz -boz -aSf -aSf -btS -bve -brM -bxS -bxP -bxP -bxP -bxP -bxP -bHS -bJG -bLi -bHS -bHS -bOh -bQL -bSc -bSc -bSc -bSc -bWS -bWS -bZD -caX -bWS -bWS -ceW -cgf -cha -cih -cdB -cdB -cdB -cdB -cdB -cdB -cdB -cdB -bWR -bWR -bWR -bWR -bWR -bWR -bDb -bDb -bDb -cAu -cBs -bDb -bDb -bDb -bDb -bDb -crP -bDb -bDb -bDb -bDb -csG -aaa -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -afJ -aac -atL -atL -atL -atL -atL -atL -atL -aAC -avZ -avY -ave -ave -ave -aHj -aHj -aHj -aKr -aLB -aMX -aHj -aHj -aHj -aRZ -aTG -aVa -aWU -aYx -bad -bbv -aWW -aVa -bfD -aSg -bio -bjJ -blo -aSg -aXb -bqo -brU -aSf -btZ -bve -brM -bxT -bzE -bBd -bCU -bEy -bGl -bHT -bJH -bLj -bMD -bOe -bPv -bQR -bLj -bLj -bLj -bLj -bWT -bYe -bPv -caY -ccu -cdD -ceX -cgg -chb -cii -cjs -ckB -clK -cmP -cnO -coU -cpK -cqA -ckM -cmR -ctF -cuM -cmR -ckM -cxY -bTG -bDb -cAt -cBt -cCG -cDC -cEf -cFf -cGi -cCG -cHw -cEf -cIS -cJH -aac -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -abd -aac -aac -aac -aac -ave -avY -avY -avY -avY -avY -ave -avY -ave -aEP -aGa -aHj -aIl -aJn -aHj -aLC -aMY -aOd -aPy -aHj -aSa -aTH -aVa -aWV -aYy -bae -aWW -aWW -aWX -bfE -bgR -bfE -bjK -blp -bjK -aXb -bqp -aSg -bsX -brM -bve -brM -bxS -bzF -bBe -bCV -bCV -bGm -bHU -bJI -bCV -bME -bOf -bPw -bQS -bSd -bSd -bUF -bWa -bWU -bYf -bZE -caZ -ccv -cdE -ceY -ccv -chc -cij -cjt -ckC -ckD -ckD -cnP -coV -cpL -cqB -crE -csz -cmR -cmR -cmR -ckM -chm -cyU -cwT -cAv -cBu -bTG -cgq -bDb -bWW -bTG -bTG -bTG -bDb -aac -aac -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aac -aac -afJ -afJ -afJ -ave -avZ -ave -ave -ave -ave -ave -avY -ave -aEQ -aGb -aHj -aIm -aJo -aJo -aLD -aMZ -aOe -aOe -aHj -aSb -aTI -aVd -aWW -aWW -baf -aWW -aVa -aVa -bfF -bgS -bfF -bjL -blq -bjL -aXb -bqp -brV -bsX -brM -bve -brM -bxU -bzE -bBf -bCW -bEz -bGn -bHV -bJJ -bLk -bMF -bOg -bPx -bQT -bLk -bTv -bUG -bWb -bWV -bYg -bYg -bYg -bYg -bYg -ceZ -bYg -bYg -cik -cjs -ckD -ckC -ckD -ckD -ckC -cpM -cqC -crF -cmR -cmR -cuN -cvK -ckM -bEH -bRi -czy -cAt -bGw -bDb -bDb -bDb -bDb -bDb -bDb -bTG -bDb -bDb -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -abd -abd -aac -aaa -aad -ave -awb -awb -axd -azp -avY -aBG -avY -ave -ave -ave -aHj -aIn -aJo -aJo -aLE -aNa -aOf -aPz -aHj -aRZ -aTG -aVa -aWX -aYz -bag -aYz -aVa -beo -aSg -beo -aXb -aXb -aXb -aXb -aXb -bqp -aXb -bsX -brM -bve -brM -bxV -bxX -bxX -bxX -bxX -bxX -bHW -bHW -bHW -bMG -bOh -bPy -bPy -bPy -bTw -bUH -bPz -bPz -bYh -bZF -cba -ccw -cdF -cfa -cgh -cgh -cgh -cju -ckE -clL -ckC -ckC -ckD -ckC -cqD -crG -csA -cmR -cuO -cmR -ckM -cxZ -cyV -bDb -cAt -cBv -cCH -cDD -cEg -cFg -cGj -bDb -bTG -cyc -bDb -aac -aac -aac -aac -aac -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aac -aac -aac -aaa -aaa -aad -avk -awb -axc -ayr -azq -avY -ave -avY -avY -avY -avY -aHj -aHj -aHj -aKs -aLF -aJo -aOg -aPA -aHj -aSc -aTJ -aSg -aWY -aSg -bah -aSg -aSf -bep -aSg -beo -aXb -aXb -aXb -aXb -aXb -bqp -aXb -bsX -brM -bve -brM -bxS -bzG -bBg -bCX -bEA -bGo -bHX -bJK -bHW -bMH -bOh -bPy -bQU -bSe -bTx -bUI -bWc -bPz -bYi -bZG -cbb -bZG -bYi -bYi -aac -aac -aac -cju -ckF -clM -cmQ -cnQ -coW -cpN -cqE -ckM -cmR -cmR -cuP -cmR -ckM -cxZ -cyW -bDb -cAw -cBw -cCI -ctJ -ctJ -cFh -cGk -bDb -bTG -cIb -csG -aaa -aaa -aaa -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaf -aaf -aaf -aaa -aaa -aaa -ave -awb -awb -awb -awb -avY -ave -ave -ave -ave -avY -aHj -aIo -aJp -aKt -aLG -aJo -aOh -aPz -aHj -aSd -aTK -aVe -aWZ -aYA -bai -bbw -bcZ -beq -bfG -bgT -bfG -bjM -blr -bmN -boA -bqp -brV -bsX -brM -bve -brM -bxS -bzH -bBh -bBj -bEB -bGp -bHY -bJL -bLl -bMI -bOh -bPy -bQV -bSf -bTy -bUJ -bWd -bPz -bYj -bZH -bZH -bZH -cdG -bYs -cgi -cgi -cgi -bYs -ckG -ckG -cmR -ckG -coX -ckC -cqF -ckM -ckM -ckM -cuQ -ckM -ckM -ckM -ckM -ckM -cAx -cBx -bDb -bDb -bDb -cFi -cGk -bDb -bTG -cgq -csG -aaa -aaa -aaa -aaa -aaa -aaf -aac -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aac -aac -aac -aaf -aaa -aaa -aac -ave -awc -axd -awb -axd -avY -ave -avY -aDC -ave -aAC -aHj -aIp -aJq -aJn -aLH -aJo -aOe -aOe -aHj -aSe -aTL -aVf -aXa -aYB -baj -bbx -aVf -ber -bfH -bgU -bfH -bjN -bls -bjN -boB -bqq -aSg -bsX -brM -bvg -brM -bxW -bzG -bBg -bBj -bEC -bGq -bHZ -bJM -bLm -bMJ -bOi -bPz -bQW -bSg -bTz -bUJ -bWe -bPz -bYk -bZH -bZH -bZH -cdH -cJk -chd -chd -chd -cJk -ckH -clN -cmS -clP -coX -ckD -cqG -crH -crH -ctG -cuR -ctG -cwQ -cya -cyX -ckM -cAy -cBx -bDb -aaa -bDb -cAx -cGl -bDb -bTG -chk -bDb -aac -aac -aac -aac -aac -aaf -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -afJ -afJ -aac -aaf -aaa -aac -atm -ave -awd -axe -ays -azr -aAD -ave -aCB -aDD -ave -avY -aHj -aIq -aJr -aKu -aLI -aNb -aOi -aPB -aHj -aSf -aSf -aVg -aXb -aXb -bak -bby -aSg -bes -aSg -aSg -aSg -bjO -aSg -bmO -boC -bqr -brW -aSf -btQ -bvh -btQ -bxX -bxX -bBi -bCY -bED -bGr -bIa -bJN -bLn -bMK -bOj -bPz -bQX -bSh -bTA -bUK -bWf -bPz -bYl -bZH -bZH -ccx -cdI -cJk -cgk -chd -cil -cJk -ckI -clO -cmT -cnR -coX -ckD -cqG -crI -crI -ctG -cuS -ctG -cwQ -cya -cyX -ckM -cAz -cBx -csG -aaa -csG -cFi -cGk -bTG -bTG -bDb -bDb -aaa -aaa -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aac -ave -awb -awb -awb -awb -avY -aBH -avY -avY -ave -avY -aHj -aHj -aHj -aHj -aHj -aHj -aHj -aHj -aHj -aSg -aTM -aSg -aXb -aXb -bak -bby -aSf -aSf -aSf -aSf -aSf -aSf -aSf -aSf -boD -bqs -aSf -aSf -bua -bvi -bww -bxX -bzI -bBj -bCZ -bEE -bBj -bIb -bBj -bLl -bML -bOk -bPz -bQY -bSi -bTB -bUL -bWg -bPz -bYm -bZH -bZH -ccy -cdJ -bYs -cgl -che -cgl -bYs -ckH -clP -cmR -cmR -coX -cpO -cqH -crJ -csB -ctH -cuT -cvL -cwR -cwR -cyY -czz -cAA -cBy -csG -aaa -csG -cFi -bGw -bDb -bDb -bDb -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aii -aii -aii -aii -aii -aii -aii -aii -aii -ajd -aii -aii -aii -aii -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aaa -ave -awe -awb -ayt -awb -aAE -ave -aCD -aAD -ave -avY -avY -avY -avY -avY -avY -avY -aOj -avY -auR -aSg -aTN -aSg -aSg -aSg -bal -bby -bda -bet -bfI -bgV -bev -bjP -blt -bmP -boE -bqt -brX -bsY -bub -bvj -bwx -bxX -bzJ -bBj -bDa -bEF -bGs -bIc -bJO -bHW -bMM -bOl -bPz -bQZ -bSj -bTC -bUM -bWh -bPz -bYn -bZH -cbc -ccz -cdK -bYs -cgm -chf -cim -bYs -ckJ -clQ -cmU -cnS -coY -cpP -cqI -crK -csC -ctI -cuU -cvM -cwS -cyb -cyb -czA -cAB -cBz -bDb -bDb -bDb -cFi -bGw -cGX -bTG -bDb -bDb -aac -aac -aac -aac -aac -aaf -aii -aaa -aac -aaa -alY -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aac -aaa -ave -ave -ave -ave -ave -ave -ave -ave -ave -ave -aGc -aHi -aEO -aEO -aEO -avY -aAC -avY -avY -ave -aSh -aSf -aVh -aXc -aYC -bah -bby -bdb -bet -bfJ -bgW -bev -bjQ -bha -bha -boF -bqu -brY -bsZ -buc -bvk -bwy -bxX -bxX -bxX -bxX -bxX -bxX -bxX -bJP -bxX -bMN -bOm -bPz -bPz -bSk -bSk -bSk -bSk -bSk -bYo -bZH -cbd -bZH -cdL -bYs -cgl -chg -cgl -bYs -cju -cjs -cju -cju -cjs -cju -cjs -crL -csD -cju -cju -cju -ckM -ckM -ckM -ckM -bDb -cBA -bDb -cgq -cEh -cFi -bGw -cGY -bTG -cIc -bDb -aaa -aaa -aaa -aaa -aaa -aaf -aii -aaa -cMX -cNi -cNy -aaa -cMX -cNi -cNy -aaa -cMX -cNi -cNy -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -aaa -aaa -aac -abd -abd -abd -aac -aac -aaa -aaa -aaa -ave -ave -ave -avk -avk -avk -ave -aHe -aAE -aJi -ave -aSi -aTO -aVi -aVi -aYD -bam -bbz -bdc -bet -bfK -bgX -bip -bjR -blu -bjR -cIH -bqv -brZ -bta -bud -bvl -bwz -bxY -bzK -bBk -bBk -bBk -bGt -bId -bJQ -bxX -bMO -bOn -bPA -bRa -bJR -bTD -bTD -bTD -bJR -bYp -bZI -cbd -bZH -bZH -cfb -cgn -chh -cin -bYi -ckK -ckD -cmV -cnT -cnT -cnT -cqJ -crM -csE -cju -ckC -cvN -ckM -cyc -bDb -bWW -bDb -cBB -cCJ -bTG -bTG -cFj -aoI -bTG -bTG -cId -csG -aaa -aaa -aaa -aaa -aaa -aaf -ajd -aac -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aac -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aag -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aac -aac -aac -aac -aac -aac -aHk -aaa -aac -aac -ave -ave -ave -ave -ave -aSj -aSf -aSf -aSf -aSf -ban -bby -bdd -bet -bfL -bgY -biq -bjS -blv -cIF -cIG -boH -bsa -boH -bue -bvm -bjS -bxZ -bzL -bzL -bzL -bEG -bGu -bIe -bxX -bxX -bMP -bOo -bPB -bRb -bJR -bTD -bTD -bTD -bJR -bYq -bZJ -cbd -ccA -cdM -bZH -cgo -chi -cio -bYi -ckD -clR -ckD -cnT -cnT -cnT -coX -crN -ckC -ckC -ckC -cvO -ckM -bTG -bDb -bDb -bDb -cBC -ctJ -ctJ -cEi -cFk -bGw -cGZ -bTG -bTG -csG -aaa -aaa -aaa -aaa -aaa -aaf -aac -aaa -cMX -cNj -cNy -aac -cMX -cNj -cNy -aac -cMX -cNj -cNy -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aCE -akc -abd -aac -aHl -aaa -aaa -aac -aIy -aac -aaa -aIy -aaa -aaa -aaa -aVj -aXd -aYE -bah -bbA -aSf -bet -bfM -bgW -bev -bjT -blw -bmR -boI -boI -bsb -btb -buf -bha -bjT -bya -bev -aaa -bDb -bEH -bGv -bIf -bJR -bLo -bMQ -bOp -bPC -bRc -bSl -bTD -bUN -bTD -bJR -bYr -bZK -cbd -ccB -cdN -bZH -cgp -chj -cip -bYi -ckL -ckD -cmW -cnT -coZ -cnT -cqK -crO -csF -cju -cuV -cvO -ckM -bTG -cyZ -ctM -bDb -cBD -cCK -cDE -bzL -bzL -cGm -bDb -ctM -cIe -bDb -aac -aac -aac -aac -aac -aaf -aac -aac -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -afJ -afJ -afJ -afJ -aac -aaf -aaa -aaa -aHk -aaa -aaa -aaa -aIy -aaa -aaa -aHk -aaa -aaa -aaa -aVj -aXe -aYF -bao -bbB -bde -bet -bfN -bgZ -beu -bha -blw -bmS -boJ -bqw -boI -boI -bug -bha -bha -byb -bev -aac -bDb -bEI -bGw -bIg -bJR -bLp -bMR -bOq -bPD -bRd -bSl -bTD -bUO -bWi -bJR -bYs -bYs -cbe -ccC -bYs -bYs -bYs -bYs -bYs -bYs -ckM -ckM -ckM -ckM -ckM -ckM -ckM -cnT -ckM -ckM -ckM -ckM -ckM -bTG -cza -bTG -cAC -cBD -bGw -bDb -bDb -cFl -bTG -bDb -cHx -cHx -cHx -cHx -cKo -aaa -aaa -aaa -aaf -aac -aaa -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aaa -cMX -cNj -cNy -aaa -aac -aii -aii -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -afJ -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aam -aaa -aHk -aaa -aaa -aaa -aHk -aaa -aaa -aHk -aaa -aaa -aaa -aVj -aXd -aYE -aSg -bbC -bdf -bet -beu -beu -bet -bha -blw -bmT -boK -boK -boK -btc -buh -bha -bha -bet -bet -aaa -bDb -bEJ -bGw -bIg -bJR -bLq -bMR -bOq -bPC -bRe -bSl -bTD -bTD -bTD -bJR -bYt -bDb -cbf -ccD -cdO -bDb -cgq -chk -bTG -bTG -ckN -bWW -cju -cnU -cpa -cpa -cnT -cnT -cju -bTG -bWW -cvP -bDb -bWW -bWW -czB -bDb -cBD -cCL -bDb -bTG -bTG -bTG -cHa -cHx -cIf -cIT -cJI -cKo -cKo -cKo -aaa -aaf -aac -aaa -aaa -cNk -aaa -aaa -aaa -cNk -aaa -aaa -aaa -cOM -aaa -aaa -aaa -aac -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aac -aaf -aaa -aaa -aac -aaa -aaa -aaa -aHk -aaa -aaa -aHk -aaa -aaa -aaa -aVj -aXf -aYF -aSg -aSg -bdf -bet -bfO -bha -bir -bha -blw -bha -boL -boL -boL -boL -bha -bha -bha -bet -aac -aac -bDb -bEI -bGw -bIg -bJR -bLr -bMR -bOr -bPE -bRb -bJR -bTD -bTD -bTD -bJR -bYu -bZL -cbg -ccE -cdP -bZL -bRg -bRg -bRg -bRg -bRg -clS -cmX -cmX -cmX -cmX -cmX -cmX -cmX -ctJ -ctJ -ctJ -cwT -cwT -cwT -cwT -cwT -cBE -cCM -cDF -cEj -cFm -cEj -cEj -cHy -cIg -cIU -cJJ -cKp -cKH -cKp -cLI -cLI -cLI -cMF -cMY -cMY -cMY -cMY -cMY -cMY -cMY -cOr -cLI -cON -cLI -cLI -cLI -cOZ -aac -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aCE -aaf -aaf -aaf -aaa -aaa -aaa -aVj -aVj -aVj -aVj -aVj -aVj -beu -bfO -bha -bha -bha -blx -bjR -bjR -bqx -bha -bha -bha -bha -bwA -bet -aac -aaa -aac -aaf -bGw -bIg -bJR -bLs -bMS -bOs -bPC -bRf -bSm -bTD -bTD -bTD -bJR -bYv -bZM -cbh -ccF -cdQ -bzL -cgr -bEG -bEG -cjv -bEG -clT -cmY -cmY -cmY -cmY -cqL -cmY -cmY -cmY -cuW -cmY -cmY -cqL -cmY -cuW -cmY -cBF -cCN -bDb -cEk -cFn -bDb -bDb -cHz -cIh -cIV -cJK -cKo -cKo -cKo -aaa -aaf -aac -aaa -aaa -cNl -aaa -aaa -aaa -cNl -aaa -aaa -aaa -cOM -aaa -aaa -aaa -aac -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aPC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -beu -bfO -bha -bha -bha -bha -bha -bha -bha -bha -bha -bha -bha -bwB -bet -aaa -aaa -aac -aaf -bGw -bIg -bJR -bJR -bMT -bOt -bJR -bJR -bJR -bJR -bJR -bJR -bJR -bYv -bZN -cbi -ccG -cdR -bYi -bYi -bDb -bDb -bTG -bDb -bDb -bDb -bDb -bDb -bTG -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bTG -bDb -bDb -bDb -bDb -bDb -bDb -cFo -bDb -cHb -cHx -cHx -cHx -cHx -cKo -aaa -aaa -aaa -aaf -aac -aaa -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aaa -aac -aii -aii -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -bev -bev -bhb -bev -bjU -bev -bev -bev -bev -bev -bjV -bev -bvn -bev -bet -aaa -aaa -aac -aaf -bGw -bIh -bJS -cIJ -bMU -cJd -bPF -bRg -bRg -bRg -bRg -bRg -bRg -bYw -bZN -cbj -ccH -cdS -cfc -bYi -chl -bTG -bTG -bDb -aaa -aaa -aac -bDb -bTG -bTG -crP -bTG -ctK -cuX -bDb -cwU -cyd -bTG -bDb -bEH -ctL -cCO -bDb -cEl -cFp -bTG -bTG -bTG -bTG -cIW -bDb -aac -aac -aac -aac -aaf -aac -aac -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -bev -bhc -bev -bhc -bev -aaa -aac -aaa -bev -bhc -bev -bhc -bev -aaa -aaa -aaa -aac -aaf -bGx -bIi -bIi -cII -cIZ -cJb -bIi -bzL -bzL -bTE -bzL -bzL -bzL -bYx -bZO -cbk -ccI -cdT -cfd -bYi -chm -bTG -cjw -bDb -aaa -aaa -aac -bDb -bDb -bDb -bDb -bTG -ctL -cuY -bDb -cwV -bTG -bTG -czC -bTG -bTG -bTG -bDb -cEm -bTG -bTG -bTG -bTG -bTG -cIX -bDb -aaa -aaa -aaa -aaa -aaf -aac -aaa -cMX -cNm -cNy -aac -cMX -cNm -cNy -aac -cMX -cNm -cNy -aaa -aii -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -bev -bhc -bev -bhc -bev -aac -aac -aac -bev -bhc -bev -bhc -bev -aaa -aaa -aaa -aac -aaf -aac -bIj -bJT -bOw -bMW -bLv -bIj -bRh -bSn -bTF -bSn -bWj -bWW -bYi -bZP -cbl -ccJ -cdU -cfe -bYi -bDb -bDb -bDb -bDb -aaa -aaa -aac -aaa -aac -bDb -crQ -bTG -ctM -bTG -bTG -bTG -bTG -czb -bDb -bTG -bTG -cCP -bDb -cEn -bTG -bTG -bTG -bTG -bTG -cEn -bDb -aac -aac -aac -aac -aaf -aac -aac -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aaa -cMX -cNm -cNy -aac -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bev -bhb -bis -bjV -bev -aaa -aaa -aaa -bev -bjV -bis -bvn -bev -aaa -aaa -aaa -aac -aaf -aaa -bIj -bJU -bLw -bMW -bOx -bIj -bRi -bRi -bTG -bRi -bRi -bWX -bYi -bZG -bZG -bZG -bYi -cff -bYi -aac -aaa -aac -aHk -aaa -aaa -aac -aaa -aac -bDb -bDb -csG -csG -csG -bDb -bDb -bDb -bEI -bDb -bDb -bDb -bDb -bDb -bDb -cFq -bTG -bTG -bTG -cFq -bDb -bDb -aaa -aaa -aaa -aaa -aaf -ajd -aaa -cMX -cNn -cNy -aaa -cMX -cNn -cNy -aaa -cMX -cNn -cNy -aaa -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bjW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aac -bIj -bJV -bLx -bMX -bOy -bIj -bRj -bSo -bTG -bUP -bWk -bDb -bDb -aac -aac -aac -aac -aaa -aac -aac -aaa -aaa -aac -aaa -aaa -aac -aaa -aaa -aaf -aac -aaa -aaa -aaa -aac -aac -bDb -czc -bDb -aaa -aaa -aaa -aaa -bDb -bDb -cEn -cEn -cEn -bDb -bDb -aaa -aaa -aaa -aaa -aaa -aaf -aii -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -aac -aaa -ajd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -bIj -bJW -bJW -bMY -bJW -bIj -bDb -bDb -bDb -bDb -bDb -bDb -aac -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aac -aaa -aaa -aac -aaa -aaa -aaf -aac -aaa -aaa -aaa -aaa -aac -bDb -bEI -bDb -aac -aac -aac -aaa -aac -bDb -csG -csG -csG -bDb -aac -aaa -aaa -aaa -aaa -aac -aaf -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bLy -bMZ -bLy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aac -aCE -aaa -aaa -aaa -aaa -aac -aaa -aaf -aaf -aaf -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bLy -bMY -bLy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaf -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIk -bJX -bLz -bNa -bLz -bJX -bRk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaf -aaf -aaf -aaf -aCE -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -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 -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIl -bJY -bLA -bLA -bLB -bLA -bIl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aac -aac -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIm -bJZ -bLB -bLA -bLB -bLA -apw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -atm -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIl -bJY -bLA -bLA -bLB -bLA -bIl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -afJ -afJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -bIn -bJX -bLz -bNb -bLz -bJX -bRm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -bZR -cfg -bZR -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -ccK -bZR -cfh -bZR -ccK -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -bZR -bZR -cdV -cfg -cgs -bZR -bZR -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -bZQ -bZQ -ccL -cdW -cdW -cdW -chn -bZQ -bZQ -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -bZR -cbm -ccM -cdW -cfi -cdW -cho -ciq -bZR -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -bZQ -bZQ -ccN -cdW -cdW -cdW -chp -bZQ -bZQ -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -bZR -bZR -cdX -cfj -cgt -bZR -bZR -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -ccK -bZR -bZQ -bZR -ccK -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -bZR -bZQ -bZR -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aam -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} From 49dfb1fa9a56142896d584c60d97672d799da291 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 25 Dec 2016 18:33:17 -0800 Subject: [PATCH 47/55] Add files via upload --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 72441 ++++++++++++++++ 1 file changed, 72441 insertions(+) create mode 100644 _maps/map_files/TgStation2/tgstation.2.1.3.dmm diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm new file mode 100644 index 0000000..e73e055 --- /dev/null +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -0,0 +1,72441 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aag" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aah" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aai" = ( +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aak" = ( +/obj/machinery/door/poddoor{ + id = "executionspacevent" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aal" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aam" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/open/space, +/area/space) +"aan" = ( +/obj/machinery/flasher{ + id = "executionflasher"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/processing) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"aar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/security/transfer) +"aas" = ( +/obj/machinery/sparker{ + id = "executionsparker"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/chair, +/turf/open/floor/engine, +/area/security/transfer) +"aau" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aay" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northwest"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aaF" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + heat_proof = 1; + name = "Prisoner Transfer Chamber"; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"aaM" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 10000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaN" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaO" = ( +/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaP" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/razor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaR" = ( +/obj/machinery/button/flasher{ + id = "executionflasher"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionspacevent"; + name = "vent to space"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaS" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/weapon/tank/internals/anesthetic, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaV" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northeast"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaW" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaX" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaY" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aba" = ( +/obj/machinery/button/ignition{ + id = "executionsparker"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abd" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"abe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abf" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/transfer) +"abk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abq" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Transfer"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abw" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/clothing/head/helmet, +/obj/item/device/assembly/signaler, +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Transfer Center APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aby" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abz" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abF" = ( +/turf/closed/wall/r_wall, +/area/security/lockers) +"abG" = ( +/turf/closed/wall/r_wall, +/area/security/hos) +"abH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/hos) +"abI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abK" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Brig Interrogation" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/processing) +"abO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/hos) +"abQ" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"abT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/carpet, +/area/security/hos) +"abU" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"abV" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/lockers) +"abX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plasteel, +/area/security/lockers) +"abY" = ( +/turf/open/floor/plasteel, +/area/security/lockers) +"abZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Cappers! Fairly unremarkable really."; + name = "\improper Officer Cappers" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aca" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Camilla! He constantly seeks validation."; + name = "\improper Officer Camilla" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acg" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ach" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aci" = ( +/obj/structure/table, +/obj/item/weapon/lighter, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"ack" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"acl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acm" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Prison Shuttle Dock APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aco" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acp" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acr" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"act" = ( +/obj/structure/closet/ammunitionlocker, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/deputy, +/obj/item/weapon/storage/box/seccarts, +/turf/open/floor/carpet, +/area/security/hos) +"acx" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"acy" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acB" = ( +/turf/open/floor/carpet, +/area/security/hos) +"acC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acD" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acE" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acF" = ( +/obj/structure/table, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acG" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"acI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/security/hos) +"acQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/adamantine, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acR" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/security/hos) +"acS" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/carpet, +/area/security/hos) +"acT" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Locker Room West"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/lockers) +"acY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"ada" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"add" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"ade" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"adi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adj" = ( +/obj/structure/closet/ammunitionlocker, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/hos) +"adn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/security/hos) +"ado" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adp" = ( +/turf/closed/wall, +/area/security/transfer) +"adq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/transfer) +"ads" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Security Locker Room APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adw" = ( +/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/open/floor/plasteel, +/area/security/lockers) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"ady" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"adz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"adA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adE" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/obj/item/weapon/stamp/hos, +/turf/open/floor/carpet, +/area/security/hos) +"adF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Brig Riot Equipment"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"adI" = ( +/turf/closed/wall, +/area/security/hos) +"adJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adK" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/security/hos) +"adL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"adP" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adR" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/security/lockers) +"adT" = ( +/obj/structure/table, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/machinery/camera{ + c_tag = "Brig Locker Room East"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adU" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/isolation) +"adW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitered" + }, +/area/security/isolation) +"adX" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitered" + }, +/area/security/isolation) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"adZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aea" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor Northwest"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"aeg" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aei" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/camera/motion{ + c_tag = "Armory"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aej" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aek" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"ael" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aem" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/hos) +"aen" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/turf/open/floor/carpet, +/area/security/hos) +"aeo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/hos) +"aep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aer" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/main) +"aes" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"aet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"aeu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"aev" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Brig Medbay"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/isolation) +"aex" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"aey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aeG" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeK" = ( +/obj/machinery/button/door{ + id = "riotequipment"; + name = "Riot Equipment Shutters"; + pixel_x = 24; + pixel_y = 32; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeN" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/hos) +"aeQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"aeS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aeU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeV" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeW" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/main) +"afa" = ( +/obj/machinery/computer/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"afb" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afc" = ( +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afe" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"aff" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"afh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afi" = ( +/obj/structure/bed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"afj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fpmaint) +"afm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afp" = ( +/obj/structure/rack, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afq" = ( +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; + name = "\improper Officer Lock n Lode" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afs" = ( +/obj/structure/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Armory APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afv" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"afw" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"afx" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"afy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"afz" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afB" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afC" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"afF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afG" = ( +/obj/machinery/camera{ + c_tag = "Brig Medbay"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afI" = ( +/turf/closed/wall, +/area/security/main) +"afJ" = ( +/obj/structure/grille, +/turf/open/space, +/area/space) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 6" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afO" = ( +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Secure Cell 2"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afS" = ( +/obj/machinery/door/window/brigdoor{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afT" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afU" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/ecase, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afV" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/shotgun, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afW" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aga" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"agc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"age" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/security/main) +"agf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"agh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Security Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"agi" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agj" = ( +/obj/machinery/door/airlock{ + name = "Showers"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agl" = ( +/obj/machinery/camera{ + c_tag = "Brig Showers"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agm" = ( +/turf/open/floor/plasteel, +/area/security/main) +"agn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"ago" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/security/isolation) +"agp" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitered" + }, +/area/security/isolation) +"agq" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitered" + }, +/area/security/isolation) +"agr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ags" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Medbay APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"agu" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agv" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agw" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/pod_3) +"agx" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/pod_3) +"agz" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agA" = ( +/obj/machinery/flasher{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"agC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell2"; + name = "Secure Cell 2"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"agD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"agE" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"agJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agK" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/weapon/gun/energy/laser/practice, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"agM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/main) +"agP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Security Office West"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/open/floor/plasteel, +/area/security/main) +"agR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Security Office East"; + dir = 8; + network = list("SS13") + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"agT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aha" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahc" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahd" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc4" + }, +/area/shuttle/pod_3) +"ahe" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahf" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahg" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahi" = ( +/obj/structure/chair, +/obj/item/weapon/storage/pod{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahj" = ( +/obj/structure/chair, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahk" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahp" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aht" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahx" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"ahy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahA" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahB" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -31; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahC" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall1"; + dir = 2 + }, +/area/shuttle/labor) +"ahD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"ahF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahG" = ( +/obj/structure/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahR" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahS" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/door{ + id = "armorylockdown"; + name = "Brig Control Lockdown"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahV" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Brig Control APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahX" = ( +/turf/closed/wall, +/area/security/warden) +"ahY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahZ" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/item/device/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/main) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aib" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aid" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + dwidth = 2; + height = 9; + id = "pod3"; + name = "escape pod 3"; + width = 5 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aie" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aif" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig Escape Shuttle"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aig" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aih" = ( +/obj/docking_port/stationary/random{ + dir = 4; + dwidth = 2; + height = 9; + id = "asteroid_pod3"; + width = 5 + }, +/turf/open/space, +/area/space) +"aii" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aik" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/main) +"ail" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aim" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ain" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/main) +"aio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"air" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ais" = ( +/obj/structure/table, +/obj/item/baseball, +/obj/item/baseball, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ait" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiy" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 5" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiz" = ( +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Secure Cell 1"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"aiA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aiB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aiC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aiE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aiL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiM" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiN" = ( +/obj/machinery/flasher{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell1"; + name = "Secure Cell 1"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Brig APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/brig) +"aiR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aiY" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc1" + }, +/area/shuttle/pod_3) +"aiZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aja" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ajb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigshuttleflash"; + name = "Flash Control"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 0; + pixel_y = -31 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod3"; + shuttleId = "pod3" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajd" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajn" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"ajp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"ajs" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aju" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajv" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"ajx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice{ + pixel_y = 4 + }, +/obj/item/weapon/dice/d8{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajA" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ajB" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d20, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ajD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/brig) +"ajG" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajI" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajL" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajM" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aka" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/pod_3) +"akb" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/pod_3) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"akd" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ake" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aki" = ( +/obj/structure/table/wood, +/obj/item/weapon/gavelblock, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akj" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d12, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akk" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"akm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"akn" = ( +/turf/closed/wall, +/area/security/isolation) +"ako" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 4"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/labor) +"akr" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aks" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/labor) +"akt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + color = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aku" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akw" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aky" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akC" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akE" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"akG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akI" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akJ" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d10, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akL" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akM" = ( +/obj/structure/chair/comfy/brown, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/cheesie, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/mop, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/ian, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akP" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akX" = ( +/turf/closed/wall, +/area/maintenance/fsmaint) +"akY" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"akZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"ala" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"alc" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ald" = ( +/turf/closed/wall/r_wall, +/area/security/isolation) +"ale" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alf" = ( +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"alg" = ( +/obj/structure/grille, +/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ali" = ( +/obj/item/stack/teeth/lizard{ + amount = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"all" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aln" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alo" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alp" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "perma prison shuttle"; + port_angle = 90; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"alq" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/rack, +/obj/item/clothing/head/bowler, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/computer/security, +/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/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aly" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/crew_quarters/courtroom) +"alz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 8; + name = "Courtroom APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alB" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alC" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alD" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alE" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alF" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alG" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alH" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 3" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alJ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alK" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 1" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alN" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"alP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alQ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby Desk"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/flasher{ + id = "lobbyflash"; + pixel_y = -4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "lobbylockdown"; + name = "Lobby Lockdown"; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"alV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"alY" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/space) +"alZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ama" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amb" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/weapon/gun/magic/staff, +/obj/item/weapon/gun/magic/wand, +/obj/item/weapon/sord, +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amc" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/clothing/suit/armor/riot/knight, +/obj/item/clothing/head/helmet/knight, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/helmet/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/under/roman, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/under/kilt, +/obj/item/clothing/under/pirate, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amd" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ame" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ami" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"amj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aml" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"amm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"amn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ams" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amz" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Brig Lobby" + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amF" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amH" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"amJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"amN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amO" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amS" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amU" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"amV" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"amW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amZ" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ana" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anb" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"and" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/item/weapon/poster/legit, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ane" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ang" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anh" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ani" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ann" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ano" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anp" = ( +/obj/machinery/atmospherics/pipe/manifold, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ans" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ant" = ( +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anv" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"anw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"any" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anA" = ( +/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"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anE" = ( +/obj/structure/table, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anF" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/pill/morphine, +/obj/item/weapon/reagent_containers/pill/morphine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anG" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"anN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"anO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anP" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anS" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aob" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aoc" = ( +/turf/closed/wall, +/area/security/brig) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"aoe" = ( +/obj/machinery/camera{ + c_tag = "Cargo North"; + dir = 4; + network = list("perma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 8; + network = list("perma") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"aog" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aok" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aol" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aom" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aon" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aoo" = ( +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aop" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aor" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aos" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/main) +"aot" = ( +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aou" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aov" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/matches, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aow" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 1; + color = "red"; + dir = 1 + }, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aox" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoA" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoD" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoE" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aoH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"aoJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Port Engineering Hallway" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"aoK" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northwest"; + dir = 5; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoL" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northeast"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoN" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southwest"; + dir = 4; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoO" = ( +/obj/item/weapon/crowbar, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aoP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoQ" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoR" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoS" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Detective's Office"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoU" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aoX" = ( +/obj/structure/rack, +/obj/item/weapon/storage/backpack/satchel/sec, +/obj/item/weapon/storage/backpack/security, +/obj/item/weapon/storage/backpack/dufflebag/sec, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apb" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apd" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apf" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"apg" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"aph" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"api" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apl" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apm" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apn" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"apo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"app" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apr" = ( +/obj/machinery/button/door{ + id = "detshutters"; + name = "Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aps" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/brig) +"apu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apv" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"apw" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/outpost) +"apx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apy" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apF" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apM" = ( +/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" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Security Electrical Maintenance APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apP" = ( +/turf/closed/wall, +/area/maintenance/secelectrical) +"apQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"apU" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apW" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/adamantine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apY" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/wirecutters, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqe" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqf" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqi" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aql" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqo" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqu" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqx" = ( +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqA" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"aqB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aqE" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Northeast" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqG" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqH" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqL" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6; + icon_state = "tracks"; + tag = "icon-tracks (SOUTHWEST)" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqR" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqY" = ( +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ara" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"arc" = ( +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"are" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ari" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arp" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"ars" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"art" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aru" = ( +/obj/structure/closet/cardboard, +/obj/item/clothing/suit/jacket/miljacket, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"arv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arw" = ( +/obj/structure/table, +/obj/item/stack/ducttape, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c50, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ary" = ( +/obj/structure/table/wood, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arz" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arB" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office Backroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"arD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway North"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arN" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"arO" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod1" + }, +/turf/open/space, +/area/space) +"arP" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod2" + }, +/turf/open/space, +/area/space) +"arQ" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/labor) +"arR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"arS" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/labor) +"arT" = ( +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/engine/port_engineering) +"arU" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southeast"; + dir = 9; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"arV" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/weapon/crowbar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Red Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"arW" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asb" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asc" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"asd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/lawoffice) +"asf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawshutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"asg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ash" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ask" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ass" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ast" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"asu" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"asv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"asw" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"asx" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"asy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/labor) +"asz" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"asA" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"asB" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"asC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asE" = ( +/obj/structure/closet/crate, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plating, +/area/engine/port_engineering) +"asG" = ( +/obj/structure/table, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/engineering) +"asH" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"asI" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"asJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asL" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asM" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"asN" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/red, +/obj/item/clothing/glasses/orange, +/obj/item/clothing/glasses/gglasses, +/turf/open/floor/wood, +/area/lawoffice) +"asP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/lawoffice) +"asQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asR" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/carpet, +/area/lawoffice) +"asS" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"asT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/turf/open/floor/carpet, +/area/lawoffice) +"asU" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"asV" = ( +/obj/machinery/button/door{ + id = "lawshutters"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"asZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"ata" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ate" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Pool APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"atf" = ( +/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/open/floor/plating, +/area/maintenance/fpmaint2) +"atg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ath" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_1) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod1"; + shuttleId = "pod1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_2) +"atk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod2"; + shuttleId = "pod2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atl" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/space) +"atm" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atn" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ato" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"atr" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"ats" = ( +/obj/effect/decal/cleanable/oil, +/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" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"att" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/weapon/storage/firstaid/surgery, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"aty" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"atz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"atA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atL" = ( +/turf/closed/wall, +/area/maintenance/commiespy) +"atM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/open/floor/carpet, +/area/lawoffice) +"atT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atU" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atV" = ( +/obj/machinery/camera{ + c_tag = "Pool North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atW" = ( +/obj/structure/closet, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Law Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/lawoffice) +"atY" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atZ" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/device/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"aua" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/lawoffice) +"aub" = ( +/obj/structure/closet/crate, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/wood, +/area/lawoffice) +"auc" = ( +/obj/structure/closet, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/under/griffin, +/obj/item/clothing/head/griffin, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/pig, +/obj/item/clothing/head/chicken, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lawoffice) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet, +/area/lawoffice) +"aue" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/law, +/obj/item/weapon/pen/blue, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/med_data, +/turf/open/floor/carpet, +/area/lawoffice) +"aug" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/lawoffice) +"auh" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/lawoffice) +"aui" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/lawoffice) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (WEST)"; + icon_state = "yellowcornersiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"auk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aum" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auo" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aup" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auq" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/open/floor/engine, +/area/gateway) +"aur" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aus" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1351; + name = "Science intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "Supply intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1355; + name = "Medical intercom"; + pixel_x = -27; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"aut" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1353; + name = "Command intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Stronk Russian APC"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/soviet, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auw" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aux" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"auy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"auz" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"auA" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"auB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"auC" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"auD" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"auE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"auF" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/arrival) +"auG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auI" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"auJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"auK" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"auL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"auM" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"auN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"auO" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auQ" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"auR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_access_txt = list(27,12) + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"auW" = ( +/obj/machinery/gateway, +/turf/open/floor/engine, +/area/gateway) +"auX" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"auY" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"ava" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avb" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avc" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avd" = ( +/turf/closed/wall, +/area/lawoffice) +"ave" = ( +/turf/closed/wall, +/area/maintenance/fsmaint2) +"avf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating/airless, +/area/maintenance/fsmaint2) +"avg" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1447; + name = "AI Private intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/storage/photo_album, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avi" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/syndie, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avl" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"avm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avn" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avo" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"avr" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avu" = ( +/obj/machinery/door/window/southright{ + name = "Gateway Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"avv" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avw" = ( +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avx" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avy" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avG" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/camera{ + c_tag = "Arrivals Infirmary"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avM" = ( +/obj/structure/table/glass, +/obj/item/weapon/cultivator, +/obj/item/weapon/hatchet, +/obj/item/weapon/crowbar, +/obj/item/device/plant_analyzer, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avN" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"avO" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avP" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avS" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avT" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"avU" = ( +/obj/machinery/door/airlock/external{ + name = "Airlock"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avV" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1357; + name = "Engineering intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avW" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/clothing/tie/stethoscope, +/obj/item/device/camera, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer{ + desc = "These possibly cant be even letters, blyat!"; + name = "Russian computer" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avY" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awb" = ( +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awc" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awe" = ( +/obj/structure/rack, +/obj/item/weapon/gun/projectile/shotgun/toy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awg" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"awk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"awl" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awn" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awp" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awq" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aws" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"awu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"awv" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aww" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"awx" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/white, +/area/mime) +"awy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"awA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awB" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/hallway/secondary/entry) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awE" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"awG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"awI" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"awK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awP" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"awQ" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awS" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/library) +"awT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/storage/tools) +"awU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"awV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"awW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"awX" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"awY" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"awZ" = ( +/obj/item/weapon/garrote, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"axa" = ( +/obj/machinery/vending/sustenance, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axb" = ( +/obj/machinery/computer/crew, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axc" = ( +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axd" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axe" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axf" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axg" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"axh" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axi" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axj" = ( +/turf/closed/wall/shuttle{ + blocks_air = 6; + dir = 1; + icon_state = "swall13" + }, +/area/shuttle/arrival) +"axk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"axl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"axo" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axr" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2) +"axs" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axt" = ( +/obj/structure/table/wood, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axw" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/bandana/red, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axx" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axA" = ( +/obj/item/weapon/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"axC" = ( +/obj/item/weapon/storage/box, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"axD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"axJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axK" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/quartermaster/storage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axT" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"axU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/assembly/robotics) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axW" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"axX" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axY" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"axZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency) +"aya" = ( +/turf/open/floor/wood, +/area/lawoffice) +"ayb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency) +"ayc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency) +"ayd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ayf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ayi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayk" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayl" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aym" = ( +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayn" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayo" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayq" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayr" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"ays" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayB" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ayD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayE" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayG" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayL" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayM" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayN" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayP" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayR" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/labor) +"ayS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"ayT" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/labor) +"ayU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ayZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"aza" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"azc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/medical) +"azd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aze" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"azg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"azi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"azj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"azk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"azl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"azm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fsmaint2) +"azn" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fsmaint2) +"azo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"azp" = ( +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azq" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"azr" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azv" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azw" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azx" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azA" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azB" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azD" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azE" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azH" = ( +/obj/item/trash/sosjerky, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azL" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"azM" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azO" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azP" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azQ" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azS" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"azT" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"azU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azV" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"aAb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAc" = ( +/mob/living/simple_animal/bot/cleanbot{ + desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; + name = "\improper Dumpy"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aAd" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"aAj" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/engine/break_room) +"aAk" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/engine/break_room) +"aAl" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/engine/break_room) +"aAm" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aAn" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aAo" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aAp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Checkpoint"; + dir = 8; + network = list("perma") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aAq" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aAr" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/airless, +/area/space) +"aAs" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aAu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAy" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAC" = ( +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aAD" = ( +/obj/structure/table, +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAF" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAH" = ( +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod Hallway"; + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAK" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aAM" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aAN" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAO" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"aAP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAS" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/under/rank/bartender, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAW" = ( +/turf/closed/wall, +/area/maintenance/fpmaint) +"aAX" = ( +/obj/machinery/poolcontroller, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aBl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"aBz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aBA" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBC" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/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 = 32 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBE" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aBG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBH" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBJ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aBK" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBL" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBM" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aBN" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aBP" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHEAST)"; + icon_state = "intact"; + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBS" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBU" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBV" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBW" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBX" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/tile/wood{ + amount = 25 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBY" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBZ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCc" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aCr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"aCt" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCv" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCw" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/fsmaint2) +"aCx" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aCy" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"aCz" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCB" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCD" = ( +/obj/structure/closet, +/obj/item/ammo_box/foambox, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCE" = ( +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCG" = ( +/obj/structure/closet/wardrobe/blue, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCH" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCI" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCL" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCQ" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCT" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCV" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDc" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aDd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aDe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDv" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDx" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint2) +"aDz" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDG" = ( +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDH" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDJ" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDQ" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aDR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDU" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDW" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aEd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEk" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEl" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aEm" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aED" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEE" = ( +/obj/structure/grille, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEG" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aEI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aEJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEK" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEM" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEN" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/coin/gold, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEQ" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aER" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aET" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEU" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEV" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEW" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aEY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFe" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFf" = ( +/obj/machinery/monkey_recycler, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFg" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFh" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFs" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/bodybags, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFt" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFA" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFD" = ( +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFL" = ( +/turf/closed/wall, +/area/crew_quarters/pool) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFQ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"aFR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFS" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFZ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGa" = ( +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGb" = ( +/obj/structure/closet, +/obj/item/weapon/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"aGm" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aGq" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGs" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aGw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aGH" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aGI" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aGM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/sleep) +"aGN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/sleep) +"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHb" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHf" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHh" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHj" = ( +/turf/closed/wall, +/area/maintenance/electrical) +"aHk" = ( +/turf/closed/wall, +/area/space) +"aHl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space) +"aHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHt" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aHw" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aHx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHy" = ( +/obj/structure/chair/withwheels/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aHz" = ( +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHB" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHC" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aHN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aHO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aHP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHS" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aHV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/toy/carpplushie, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHY" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding"; + icon_state = "yellowcornersiding" + }, +/area/crew_quarters/pool) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aIg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIh" = ( +/obj/structure/table, +/obj/item/weapon/shard, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIi" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIj" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIk" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIl" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIm" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIn" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIo" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/electrical) +"aIq" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/maintenance/electrical) +"aIr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aIs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIx" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged3" + }, +/area/space) +"aIy" = ( +/turf/open/floor/plating/airless, +/area/space) +"aIz" = ( +/obj/item/weapon/paper/crumpled, +/turf/open/floor/plasteel/airless{ + icon_state = "damaged2" + }, +/area/space) +"aIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIC" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aID" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIE" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIF" = ( +/obj/machinery/button/door{ + id = "hobodorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aII" = ( +/obj/machinery/button/door{ + id = "hobodorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/fpmaint) +"aIJ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIN" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aIU" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIY" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aIZ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/poolfilter{ + pixel_y = 11 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aJb" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJf" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJn" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJo" = ( +/turf/open/floor/plating, +/area/maintenance/electrical) +"aJp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aJt" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"aJu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aJv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"aJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJA" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/chair, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJF" = ( +/obj/item/weapon/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space, +/area/space) +"aJG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJI" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm1"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aJK" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/weapon/bedsheet/brown, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aJL" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/open/floor/plasteel, +/area/maintenance/fpmaint) +"aJM" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/fpmaint) +"aJN" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm2"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aJY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aKa" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKb" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aKj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aKk" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/toy/poolnoodle/blue, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKl" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aKn" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aKs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKu" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKx" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/weapon/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKz" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged5" + }, +/area/space) +"aKA" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKF" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKK" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKV" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"aKW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLf" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLg" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLh" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aLn" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/ladder, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLo" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/drain, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLp" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/Lboard, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLr" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aLs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLt" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLw" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLy" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLz" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLI" = ( +/obj/structure/table, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-West"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLP" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-East"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLY" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMs" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/item/clothing/head/welding, +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/off, +/obj/item/device/assembly/timer, +/obj/structure/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMx" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMy" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMz" = ( +/obj/item/device/aicard, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMB" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMC" = ( +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aME" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aMF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMG" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMI" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMJ" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aML" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aMP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNb" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNc" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNi" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNj" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNk" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNl" = ( +/obj/structure/table/glass, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aNz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNA" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aND" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNE" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNG" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNH" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aNI" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aNK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aNQ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/clothing/under/shorts/red, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aNR" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOg" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOh" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aOl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOm" = ( +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aOn" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOp" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aOv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aOw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOy" = ( +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOD" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOH" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/patriot, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aOK" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/open/floor/engine, +/area/gateway) +"aOM" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/open/floor/engine, +/area/gateway) +"aON" = ( +/turf/open/floor/engine, +/area/gateway) +"aOO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOY" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aOZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aPa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 2 + }, +/area/crew_quarters/sleep) +"aPb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPe" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/toilet) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPr" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPs" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPv" = ( +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPx" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPy" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aPA" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPB" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/space) +"aPD" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPE" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPF" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/security/checkpoint2) +"aPG" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPI" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint2) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aPK" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPT" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPV" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/primary) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQb" = ( +/obj/structure/bed/dogbed, +/obj/item/weapon/reagent_containers/food/drinks/flask/det{ + desc = "A Space Veteran's only friend."; + name = "space veteran's flask" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQc" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aQe" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/open/floor/engine, +/area/gateway) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"aQg" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aQi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQw" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aQx" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"aQy" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aQA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/table/glass, +/obj/item/clothing/under/shorts/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQD" = ( +/obj/machinery/camera{ + c_tag = "Pool South"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQH" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQI" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/crew_quarters/pool) +"aQJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQM" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQN" = ( +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aQS" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/security/checkpoint2) +"aQT" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQW" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQX" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint2) +"aQY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRe" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRf" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRj" = ( +/turf/closed/wall, +/area/storage/primary) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"aRn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRo" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/open/floor/engine, +/area/gateway) +"aRq" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aRs" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRv" = ( +/obj/item/weapon/pen{ + desc = "Writes upside down!"; + name = "astronaut pen" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRx" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRy" = ( +/obj/machinery/camera{ + c_tag = "EVA East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aRA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aRB" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRD" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRI" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aRM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRO" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aRP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/weapon/lighter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = 9; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSf" = ( +/turf/closed/wall, +/area/chapel/main) +"aSg" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSh" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"aSi" = ( +/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 = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"aSj" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/open/floor/plating, +/area/chapel/main) +"aSm" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSo" = ( +/turf/closed/wall, +/area/security/checkpoint2) +"aSp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSq" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSB" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSC" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSE" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSF" = ( +/obj/structure/table, +/obj/item/device/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSG" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSH" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSL" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSM" = ( +/turf/closed/wall, +/area/mime) +"aSO" = ( +/turf/closed/wall, +/area/clown) +"aSP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSS" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aST" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aTa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Command EVA"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aTc" = ( +/obj/machinery/door/airlock/command{ + name = "Command EVA"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTd" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aTg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTn" = ( +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTo" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aTr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j1s"; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTu" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTw" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/chapel/main) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTM" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTN" = ( +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/main) +"aTP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aTS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTT" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Green Arrivals"; + name = "Nothing To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTU" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTV" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTW" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTZ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aUa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aUb" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aUj" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/plants{ + lootcount = 10; + name = "10plant_spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUk" = ( +/obj/machinery/door/airlock{ + name = "Garden"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUl" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Mime Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/mime, +/turf/open/floor/plasteel/black, +/area/mime) +"aUn" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aUo" = ( +/obj/item/weapon/bedsheet/mime, +/obj/structure/bed, +/turf/open/floor/plasteel/black, +/area/mime) +"aUp" = ( +/obj/machinery/camera{ + c_tag = "Clown Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/clown, +/turf/open/floor/plasteel/green, +/area/clown) +"aUq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aUr" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed, +/turf/open/floor/plasteel/green, +/area/clown) +"aUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUt" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUu" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/gateway) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUA" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUD" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + c_tag_order = 999; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aUF" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUH" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUK" = ( +/obj/structure/dresser, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUM" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUZ" = ( +/turf/closed/wall, +/area/library) +"aVa" = ( +/turf/closed/wall, +/area/chapel/office) +"aVc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aVd" = ( +/obj/structure/falsewall, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVg" = ( +/obj/machinery/camera{ + c_tag = "Chapel North"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVh" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVi" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"aVk" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals No-Declare Lane"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aVl" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aVn" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Green Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = -22; + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVo" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVq" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aVr" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aVs" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals Declare Lane"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aVQ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mime Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/mime) +"aVR" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVS" = ( +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/open/floor/plasteel/green, +/area/clown) +"aVT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aVY" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aWa" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWb" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWc" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/storage/eva) +"aWe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWh" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWk" = ( +/obj/structure/toilet{ + tag = "icon-toilet00 (WEST)"; + icon_state = "toilet00"; + dir = 8 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWl" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/weapon/lipstick/random, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWn" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWr" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aWJ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 17 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/library) +"aWM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"aWN" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/library) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/wood, +/area/library) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/library) +"aWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"aWS" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWU" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWV" = ( +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWW" = ( +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWX" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aWY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXb" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"aXc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aXd" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aXe" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXg" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/open/space, +/area/space) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXn" = ( +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXo" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXq" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/obj/item/weapon/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXr" = ( +/obj/structure/window, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/black, +/area/mime) +"aXs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aXt" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/frame/computer{ + anchored = 1; + desc = "What, you can't see the screen?"; + name = "Mime's Computer" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"aXu" = ( +/obj/structure/reagent_dispensers/honk_cooler, +/turf/open/floor/plasteel/green, +/area/clown) +"aXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aXw" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/obj/item/weapon/bikehorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aXx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Clown Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/clown) +"aXy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aXA" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/gateway) +"aXB" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aXC" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aXK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXM" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXO" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXP" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXQ" = ( +/obj/structure/closet, +/obj/item/weapon/dnainjector/smilemut, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXR" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXU" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXY" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/bar) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYj" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hydroponics) +"aYk" = ( +/turf/closed/wall, +/area/hydroponics) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYn" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"aYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) +"aYp" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/library) +"aYu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aYv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYw" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYx" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/office) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aYF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aYG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aYN" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aYO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYQ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge"; + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYT" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYU" = ( +/obj/structure/table/glass, +/obj/item/weapon/hatchet, +/obj/item/weapon/cultivator, +/obj/item/weapon/crowbar, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYV" = ( +/obj/item/weapon/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/device/plant_analyzer, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYW" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYY" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZb" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/storage/primary) +"aZc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/storage/primary) +"aZd" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZe" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/mime) +"aZg" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/mime) +"aZh" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aZj" = ( +/obj/structure/statue/bananium/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"aZk" = ( +/obj/machinery/button/door{ + dir = 2; + id = "gateway_shutters"; + name = "Gateway Access Button"; + pixel_x = 0; + pixel_y = -27; + req_access_txt = "47" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aZl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZm" = ( +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aZp" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZs" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZt" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_evac (EAST)" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZu" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZv" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aZx" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/primary/central) +"aZz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZD" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aZF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aZG" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aZH" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/structure/table/wood, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZJ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZK" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/bar) +"aZL" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/hydroponics) +"aZQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"aZR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZS" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/paper/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/library) +"aZU" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aZV" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"aZW" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"aZX" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"aZY" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/library) +"baa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bab" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bac" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bad" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"baf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bah" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"ban" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bao" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bap" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"baq" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bar" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bau" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"baw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"bax" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bay" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/mime) +"baz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/freezer{ + desc = "..."; + name = "Mime Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"baA" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/mime) +"baB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"baC" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/clown) +"baD" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown Office"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"baE" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/clown) +"baF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baG" = ( +/obj/machinery/door/airlock/research{ + name = "Gateway Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"baJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baL" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"baM" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"baN" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/lipstick, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baR" = ( +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baS" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baZ" = ( +/obj/machinery/camera{ + c_tag = "Bar Storage" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bba" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbb" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbe" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hydroponics) +"bbg" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbi" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbk" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbm" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/weapon/watertank, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"bbo" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bbp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/library) +"bbr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbD" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bbE" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbF" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbH" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbL" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + name = "Port Hall APC"; + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcd" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bce" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West"; + dir = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bch" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bci" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bcj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bck" = ( +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bcl" = ( +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bcm" = ( +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bcn" = ( +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bco" = ( +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bcp" = ( +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bcq" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bcv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcw" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East"; + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcA" = ( +/obj/structure/piano, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcG" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcL" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcT" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcU" = ( +/turf/open/floor/wood, +/area/library) +"bcV" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"bcW" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bcY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"bda" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdb" = ( +/obj/machinery/light, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdd" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bde" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdf" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdg" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdk" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint South" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdn" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdo" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdp" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdr" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bds" = ( +/turf/open/floor/goonplaque, +/area/hallway/secondary/entry) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdK" = ( +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bdL" = ( +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bdM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bdN" = ( +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bdP" = ( +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bdQ" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdU" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdX" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdY" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bea" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"beb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bec" = ( +/obj/machinery/vending/coffee, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bed" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bef" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"bei" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"bej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bek" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/library) +"bel" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bem" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/library) +"beo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"beq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bes" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bet" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"beu" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bew" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bex" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0; + verted = -1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bey" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Red Arrivals"; + name = "Items to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bez" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0; + verted = -1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"beA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beB" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beD" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beI" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beJ" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beY" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfd" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfe" = ( +/obj/machinery/light, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bff" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfi" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bfj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bfk" = ( +/obj/structure/closet/chefcloset, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfp" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfq" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bft" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfu" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/open/floor/wood, +/area/library) +"bfv" = ( +/turf/open/floor/carpet, +/area/library) +"bfw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/library) +"bfx" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/open/floor/wood, +/area/library) +"bfy" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bfA" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfB" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bfE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfI" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Escape Arm Holding Area"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bfJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bfO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bfP" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bfQ" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"bfR" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"bfS" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bfV" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bfW" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bga" = ( +/turf/closed/wall, +/area/maintenance/port) +"bgb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgc" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bgd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bge" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/turf/closed/wall, +/area/storage/art) +"bgg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/art) +"bgh" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/art) +"bgj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bgk" = ( +/turf/closed/wall, +/area/storage/emergency2) +"bgl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgm" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgq" = ( +/turf/closed/wall, +/area/storage/tools) +"bgr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bgt" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bgu" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgw" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgx" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgy" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgH" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bgI" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hydroponics) +"bgK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"bgM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bgN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bgO" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgP" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgR" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgS" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgV" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bgW" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgZ" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bha" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bhb" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhc" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhd" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bhk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bhl" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bho" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhp" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhs" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"bhx" = ( +/turf/open/floor/plasteel, +/area/storage/art) +"bhy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bhz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bhA" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bhB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bhD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/turf/open/floor/plasteel, +/area/bridge) +"bhF" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/bridge) +"bhG" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/bridge) +"bhH" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/bridge) +"bhI" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bhJ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bhL" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/bridge) +"bhM" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "green" + }, +/area/bridge) +"bhN" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/bridge) +"bhO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/bridge) +"bhP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhS" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhU" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhV" = ( +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhY" = ( +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bhZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bia" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bib" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bic" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 2 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bie" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bif" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bih" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bij" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"bik" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bil" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bim" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/library) +"bin" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bio" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bip" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"biq" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bir" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bis" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bit" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"biu" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biD" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway Central"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biL" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biO" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"biP" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biQ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"biS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency2) +"biT" = ( +/turf/open/floor/plating, +/area/storage/emergency2) +"biU" = ( +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency2) +"biV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tools) +"bjc" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjd" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bje" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjf" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/bridge) +"bjg" = ( +/obj/structure/chair{ + dir = 1; + name = "Command Station" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/bridge) +"bji" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/bridge) +"bjj" = ( +/obj/structure/chair{ + dir = 1; + name = "Crew Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/bridge) +"bjl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/bridge) +"bjm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjr" = ( +/obj/item/stack/spacecash/c10{ + amount = 10 + }, +/obj/item/stack/spacecash/c100{ + amount = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjs" = ( +/mob/living/carbon/monkey{ + name = "Pun Pun"; + real_name = "Pun Pun"; + unique_name = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjt" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjv" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjA" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjB" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bjC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bjD" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bjH" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"bjI" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/library) +"bjJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjP" = ( +/obj/machinery/vending/cola, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bjQ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/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 = 32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjV" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/open/space, +/area/space) +"bjX" = ( +/turf/closed/wall/r_wall, +/area/rec_room) +"bjY" = ( +/turf/closed/wall, +/area/rec_room) +"bjZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/rec_room) +"bka" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bkb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkc" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkh" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkk" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkm" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkn" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bko" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkq" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/open/floor/plasteel, +/area/storage/art) +"bkr" = ( +/obj/structure/table, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bkt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency2) +"bku" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bky" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkA" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"bkB" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkC" = ( +/turf/closed/wall, +/area/bridge) +"bkD" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/bridge) +"bkE" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/bridge) +"bkF" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/bridge) +"bkG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/bridge) +"bkH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkI" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bkJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/bridge) +"bkL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/bridge) +"bkM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/bridge) +"bkO" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/bridge) +"bkP" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/bridge) +"bkQ" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/bridge) +"bkR" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkS" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkT" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkU" = ( +/obj/item/clothing/head/that{ + throwforce = 1; + throwing = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkV" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkW" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("SS13") + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkY" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkZ" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bla" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/crew_quarters/kitchen) +"bld" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/hydroponics) +"ble" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"blf" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"blg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"blh" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bli" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"blj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/open/floor/wood, +/area/library) +"blk" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/library) +"blm" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/wood, +/area/library) +"bln" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/library) +"blo" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"blp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"blq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bls" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blt" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"blu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bly" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Recreation Room APC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"blz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/carpet, +/area/rec_room) +"blA" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/rec_room) +"blB" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/hallway/secondary/entry) +"blC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blE" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/secondary/entry) +"blF" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"blG" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blI" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blJ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blN" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blR" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blY" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bma" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bmc" = ( +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmd" = ( +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/bridge) +"bme" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/bridge) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bmi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bml" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmn" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/bridge) +"bmq" = ( +/obj/structure/chair{ + dir = 1; + name = "Logistics Station" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmr" = ( +/obj/machinery/camera{ + c_tag = "Bridge East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/bridge) +"bms" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmu" = ( +/obj/machinery/camera{ + c_tag = "Bridge East Entrance"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bmw" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmy" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmz" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmA" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmC" = ( +/obj/machinery/processor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmE" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"bmH" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/open/floor/wood, +/area/library) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bmK" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"bmL" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/library) +"bmM" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/library) +"bmN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bmO" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bmP" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bmR" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmS" = ( +/obj/machinery/door/window/northright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmT" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmV" = ( +/turf/open/floor/carpet, +/area/rec_room) +"bmW" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/rec_room) +"bmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmZ" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/rec_room) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bnb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnd" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bnf" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bng" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bni" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnj" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnk" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"bnl" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnn" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bny" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bnA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bnC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bnD" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"bnE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bnJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bnL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bnN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/bridge) +"bnQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnR" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnV" = ( +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnY" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Bridge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/bridge) +"boa" = ( +/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; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bob" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"boc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"boe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bof" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bog" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bol" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bom" = ( +/obj/item/weapon/lighter, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bon" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boo" = ( +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bop" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"boq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"box" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/library) +"boz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"boC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"boF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"boH" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boI" = ( +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boK" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boN" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/wood, +/area/rec_room) +"boP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/rec_room) +"boQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/bikehorn/airhorn, +/turf/open/floor/wood, +/area/rec_room) +"boR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boS" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boT" = ( +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"boU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"boW" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"boZ" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"bpe" = ( +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bph" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpk" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/crew_quarters/locker) +"bpl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/crew_quarters/locker) +"bpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpo" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tools) +"bpz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tools) +"bpA" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpC" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/hallway/primary/central) +"bpE" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bpF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bpG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpI" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpP" = ( +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bpT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/hallway/primary/central) +"bpV" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Central Hall APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bpY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bpZ" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqe" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bqf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/library) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/library) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqw" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "Scaley."; + name = "Robusts-Many-Faces" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqy" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/rec_room) +"bqz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/rec_room) +"bqA" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder/empty, +/turf/open/floor/wood, +/area/rec_room) +"bqB" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bqC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bqD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bqF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqH" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bqJ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqM" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqQ" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqR" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqS" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/female{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqT" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqZ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"brb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"brc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brg" = ( +/turf/closed/wall, +/area/quartermaster/office) +"brh" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bri" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room) +"brk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"brl" = ( +/turf/closed/wall, +/area/bridge/meeting_room) +"brm" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brn" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brp" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brr" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bru" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brv" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brw" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brx" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bry" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brz" = ( +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brA" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brC" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brE" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"brF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brH" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brM" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"brP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/library) +"brQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"brS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"brT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/library) +"brU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brV" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"brW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Escape Hallway APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape shuttle Hallway"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"brY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bsa" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsb" = ( +/mob/living/simple_animal/cow, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bsd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bsf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bsg" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsh" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsi" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bso" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bss" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/office) +"bst" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/office) +"bsw" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsx" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsy" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Conference Room"; + dir = 2 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsA" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsB" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsF" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsH" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsN" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsP" = ( +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsQ" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsR" = ( +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsS" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bsT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsU" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsW" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/library) +"bsX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"bsY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btb" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "A Lizard Wizard!"; + name = "Merlin" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btc" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btd" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bte" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-l"; + icon_state = "stairs-l" + }, +/area/hallway/secondary/entry) +"btf" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"bth" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-stairs-r"; + icon_state = "stairs-r" + }, +/area/hallway/secondary/entry) +"bti" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/vacantoffice) +"btj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"btk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bto" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btq" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btr" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"bts" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btu" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"btv" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 5 + }, +/area/quartermaster/office) +"btw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btx" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bty" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btA" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btD" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btE" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btG" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btH" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btK" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btN" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btP" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36; + tag = "icon-direction_sec (NORTH)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btQ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btR" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btZ" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bud" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bue" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buf" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bug" = ( +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buh" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bui" = ( +/obj/structure/window, +/obj/machinery/vending/cola, +/turf/open/floor/carpet, +/area/rec_room) +"buj" = ( +/obj/structure/window, +/obj/machinery/vending/snack, +/turf/open/floor/carpet, +/area/rec_room) +"buk" = ( +/obj/structure/window, +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/carpet, +/area/rec_room) +"bul" = ( +/obj/structure/window, +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/rec_room) +"bum" = ( +/obj/structure/window, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/rec_room) +"bun" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bup" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bus" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"but" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"buv" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"buy" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"buB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"buC" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buD" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"buH" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"buI" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"buK" = ( +/obj/item/weapon/hand_labeler, +/obj/item/device/assembly/timer, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buL" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buM" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buN" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buQ" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"buS" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"buT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"buU" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"buV" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"buW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"buX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bva" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bvo" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/turf/open/floor/carpet, +/area/rec_room) +"bvp" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/rec_room) +"bvq" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/rec_room) +"bvr" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"bvu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bvw" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvy" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port) +"bvz" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker) +"bvB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bvC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvE" = ( +/obj/structure/closet/crate, +/obj/machinery/doorButtons, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvF" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvI" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bvJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bvM" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvN" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvO" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvP" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvQ" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/corp, +/obj/item/weapon/aiModule/core/full/paladin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/aiModule/core/full/robocop, +/obj/item/weapon/aiModule/core/full/custom, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvS" = ( +/obj/machinery/computer/upload/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvT" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvU" = ( +/obj/machinery/computer/upload/borg, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvV" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvW" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/reset/purge, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/aiModule/supplied/protectStation, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwd" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/item/weapon/storage/lockbox/medal{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bwf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_sci (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwi" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwj" = ( +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwl" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/hallway/primary/starboard) +"bwo" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bws" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwv" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bww" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bwA" = ( +/obj/machinery/camera{ + c_tag = "Escape Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/easel, +/turf/open/floor/carpet, +/area/rec_room) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/rec_room) +"bwH" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwI" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwK" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bwL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwO" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwU" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwV" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bxa" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxb" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxc" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxd" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bxf" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bxg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxj" = ( +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxn" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxr" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxv" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxy" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxA" = ( +/obj/structure/table/wood, +/obj/item/weapon/pinpointer, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxB" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bxC" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay) +"bxD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bxE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxG" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bxH" = ( +/turf/closed/wall, +/area/medical/morgue) +"bxI" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bxJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxL" = ( +/turf/closed/wall, +/area/storage/emergency) +"bxM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/assembly/chargebay) +"bxO" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "loadingarea" + }, +/area/hallway/primary/starboard) +"bxP" = ( +/turf/closed/wall/r_wall, +/area/assembly/robotics) +"bxR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxS" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxT" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxU" = ( +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxV" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxX" = ( +/turf/closed/wall/r_wall, +/area/toxins/lab) +"bxY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bxZ" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bya" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byc" = ( +/obj/structure/easel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"byd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/rec_room) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"byf" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byg" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byh" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/plants, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"byk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byo" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"byw" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byz" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/storage) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/office) +"byC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"byF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"byI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"byK" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Bridge Delivery"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/bridge/meeting_room) +"byL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byM" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"byQ" = ( +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byS" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"byV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byW" = ( +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byX" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/coin/plasma, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/camera, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bza" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzb" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzd" = ( +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bze" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzf" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzg" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzh" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bzl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bzm" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bzn" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bzo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzp" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzu" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bzv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bzw" = ( +/turf/closed/wall, +/area/assembly/chargebay) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bzy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/assembly/chargebay) +"bzz" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzA" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzC" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + closingLayer = 3.2; + dir = 2; + icon_state = "left"; + layer = 3.2; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzE" = ( +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"bzF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bzG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bzH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + closingLayer = 3.2; + layer = 3.2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/toxins/lab) +"bzI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bzL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bzN" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bzP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/rec_room) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + verted = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"bAj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAk" = ( +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/quartermaster/office) +"bAl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bAo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bAp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bAs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bAt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/bridge/meeting_room) +"bAu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bAv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/maintcentral) +"bAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAz" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAA" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAB" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/weapon/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAC" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAE" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bAJ" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bAK" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bAL" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAO" = ( +/turf/open/floor/plating, +/area/storage/emergency) +"bAP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency) +"bAQ" = ( +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency) +"bAR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bAS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAT" = ( +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/assembly/chargebay) +"bAV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/chargebay) +"bAW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAY" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bBa" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBc" = ( +/obj/machinery/vending/robotics, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBf" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 2; + network = list("SS13") + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"bBg" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBi" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/toxins/lab) +"bBj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bBl" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + density = 0; + dir = 4; + icon_state = "rightopen"; + layer = 3 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bBw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBy" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBz" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bBA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBB" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBI" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBK" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBL" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBO" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBP" = ( +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bBT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bridge Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBV" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBW" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBY" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bBZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCc" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bCd" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCe" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCl" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bCm" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bCn" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCs" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bCT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bCU" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDb" = ( +/turf/closed/wall, +/area/maintenance/asmaint2) +"bDc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space, +/area/space) +"bDd" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + layer = 2.5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3; + name = "disposal exit vent" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bDn" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bDt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDy" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDF" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"bDG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Personnel APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bDL" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Confrence Room South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bDO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bDQ" = ( +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDR" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bDS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"bDW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bDX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bEf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEi" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bEl" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bEm" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bEn" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/assembly/chargebay) +"bEo" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bEp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bEs" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEw" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bEy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEB" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEC" = ( +/obj/machinery/r_n_d/protolathe, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bED" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bEE" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEJ" = ( +/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 = 32 + }, +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEL" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEO" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bER" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bET" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bEZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bFa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFf" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bFi" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/office) +"bFj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bFl" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bFm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bFn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bFp" = ( +/turf/closed/wall, +/area/crew_quarters/heads) +"bFq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads) +"bFr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads) +"bFt" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/champion, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bFu" = ( +/obj/item/weapon/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bFv" = ( +/turf/closed/wall, +/area/crew_quarters/captain) +"bFw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFz" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFA" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFE" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFI" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFJ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFK" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFM" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/medical) +"bFP" = ( +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"bFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bFY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGc" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bGf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/robotics) +"bGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bGj" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGl" = ( +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGm" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGo" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGp" = ( +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGq" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bGs" = ( +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bGz" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"bGE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bGF" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + icon_state = "switch-rev"; + id = "garbage"; + name = "disposal coveyor"; + position = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGG" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGH" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGI" = ( +/obj/structure/closet, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGJ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bGQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGS" = ( +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGT" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGU" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGV" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGW" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bGX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bGY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGZ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/central) +"bHa" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bHb" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHf" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bHg" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault" + }, +/area/ai_monitored/nuke_storage) +"bHi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"bHj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/gun/projectile/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bHk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bHl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHn" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHq" = ( +/obj/structure/table/glass, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHs" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHt" = ( +/turf/closed/wall, +/area/medical/medbay) +"bHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bHx" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHy" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/medical) +"bHA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bHB" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bHD" = ( +/turf/closed/wall, +/area/medical/genetics) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bHK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bHO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHP" = ( +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHR" = ( +/obj/structure/table, +/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/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bHS" = ( +/turf/closed/wall, +/area/assembly/robotics) +"bHT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHW" = ( +/turf/closed/wall, +/area/toxins/lab) +"bHX" = ( +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"bIb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bIc" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/lab) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/lab) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"bIj" = ( +/turf/closed/wall, +/area/toxins/shuttledock) +"bIk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/outpost) +"bIl" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/outpost) +"bIm" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bIn" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/outpost) +"bIo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bIp" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIq" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bIr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bIs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIx" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/office) +"bIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bIC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/primary/central) +"bIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hallway/primary/central) +"bIG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bIN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIQ" = ( +/obj/machinery/door/airlock/vault{ + icon_state = "door_locked"; + locked = 1; + req_access_txt = "53" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bIR" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIW" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/bikehorn/rubberducky, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJb" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJc" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJd" = ( +/obj/structure/bed/roller, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bJe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJo" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJp" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTHEAST)"; + icon_state = "whiteblue"; + dir = 5 + }, +/area/medical/genetics) +"bJq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bJr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJt" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bJu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJv" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJw" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bJx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bJy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJD" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bJF" = ( +/obj/structure/table, +/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/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bJG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bJH" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/research{ + name = "Research Division" + }) +"bJJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJK" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJO" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/toxins/lab) +"bJQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/lab) +"bJR" = ( +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bJT" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Science Outpost Dock APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bJX" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/outpost) +"bJY" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bJZ" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bKa" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_ss13"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/open/space, +/area/space) +"bKb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKc" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKi" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKj" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKm" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKo" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKp" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bKq" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bKr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bKs" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bKt" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bKu" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKv" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Vault Access"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bKy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKz" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"bKD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKF" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bKH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKJ" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bKK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKM" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor2"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKU" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKW" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKX" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bKY" = ( +/turf/open/floor/plasteel, +/area/medical/genetics) +"bKZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 14 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bLa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bLb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLf" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"bLh" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/assembly/robotics) +"bLj" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bLm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLo" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLp" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Experimentor Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLq" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLr" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLs" = ( +/obj/structure/closet/emcloset{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLw" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bLz" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bLA" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLD" = ( +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLE" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bLF" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/storage) +"bLG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bLH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/device/multitool, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bLQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/ai_monitored/nuke_storage) +"bLR" = ( +/turf/closed/wall, +/area/teleporter) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLT" = ( +/obj/structure/table, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bLU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLW" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLY" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bMc" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMn" = ( +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bMp" = ( +/obj/structure/table/glass, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor2"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMr" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bMs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bMt" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMu" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMw" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/chargebay) +"bMx" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 4 + }, +/area/assembly/robotics) +"bMy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMz" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMB" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bMD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bML" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/explab) +"bMO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMP" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"bMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bMZ" = ( +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bNa" = ( +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "7" + }, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bNb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost_home"; + name = "outpost shuttle bay"; + width = 7 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost"; + name = "outpost shuttle"; + port_angle = 90; + width = 7 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall3" + }, +/area/shuttle/outpost) +"bNc" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bNd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bNe" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/folder/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bNl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bNm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNn" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/coin/gold, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNq" = ( +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"bNr" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/ai_monitored/nuke_storage) +"bNs" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bNw" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNx" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/ai_monitored/nuke_storage) +"bNy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bNA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bNC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bND" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bNI" = ( +/obj/structure/table, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNS" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNU" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/medical_cloning, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bNZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOa" = ( +/obj/structure/window/reinforced, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOb" = ( +/turf/closed/wall/r_wall, +/area/assembly/chargebay) +"bOc" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bOd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bOe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOk" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOr" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOy" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/white, +/area/toxins/shuttledock) +"bOz" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/open/space, +/area/space) +"bOA" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bOC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bOG" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bOH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOI" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bON" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOQ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bOR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/teleporter) +"bOS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOT" = ( +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOU" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/teleporter) +"bOV" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOW" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/teleporter) +"bOY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPb" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPc" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bPd" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/sleeper) +"bPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera{ + c_tag = "Medbay Hallway"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPh" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPj" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/disks, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPk" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 12 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bPn" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPp" = ( +/obj/machinery/camera{ + c_tag = "Research Division West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bPz" = ( +/turf/closed/wall, +/area/crew_quarters/hor) +"bPA" = ( +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPC" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPD" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bPG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPI" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light, +/obj/machinery/status_display{ + density = 0; + pixel_y = -30; + supply_display = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPK" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bPL" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPM" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #4" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bPN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPO" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPR" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"bPS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bPU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bPV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bPW" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bPX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQc" = ( +/obj/machinery/button/door{ + id = "vaultshut"; + name = "Vault Shutters Control"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQg" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bQi" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/teleporter) +"bQj" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/teleporter) +"bQk" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/teleporter) +"bQl" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/teleporter) +"bQm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/medbay) +"bQo" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/medbay) +"bQp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQs" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQt" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQu" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bQv" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/sleeper) +"bQx" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQy" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQz" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bQF" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQG" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = 23 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQI" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/disk/tech_disk/gooncode, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQV" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQW" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQX" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bQY" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/crew_quarters/hor) +"bQZ" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/crew_quarters/hor) +"bRa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"bRb" = ( +/turf/closed/wall, +/area/toxins/explab) +"bRc" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/book/manual/experimentor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRd" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/toxins/explab) +"bRe" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRf" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/explab) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRi" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/outpost) +"bRm" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/outpost) +"bRn" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bRo" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bRq" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bRt" = ( +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/supply) +"bRv" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"bRw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/supply) +"bRx" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bRB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bRC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Vault Access"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/ai_monitored/nuke_storage) +"bRD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South-East"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/sleeper) +"bRF" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bRG" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRH" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/sleeper) +"bRJ" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRN" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRP" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Research"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRS" = ( +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bRT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bRU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRV" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRW" = ( +/turf/closed/wall/r_wall, +/area/toxins/server) +"bRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bRY" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bSa" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/science) +"bSb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bSe" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/item/weapon/coin/uranium, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSf" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSg" = ( +/obj/machinery/computer/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSh" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSi" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/crew_quarters/hor) +"bSj" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSk" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/hor) +"bSl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSo" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSp" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSs" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSu" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSz" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bSC" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"bSD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSE" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSM" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bSN" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSO" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSQ" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSS" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bST" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSU" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSV" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bTa" = ( +/obj/machinery/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTb" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTc" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTd" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (SOUTHEAST)"; + icon_state = "whiteblue"; + dir = 6 + }, +/area/medical/genetics) +"bTe" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTg" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"bTk" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bTn" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTo" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTq" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/science) +"bTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTt" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of your own office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTu" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/science) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bTw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bTx" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen/blue, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTz" = ( +/obj/machinery/computer/mecha, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTA" = ( +/obj/structure/rack, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTB" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTD" = ( +/turf/open/floor/engine, +/area/toxins/explab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTG" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTH" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTK" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTN" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bUa" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUh" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUl" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bUm" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUs" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUu" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUv" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUy" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUA" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/science) +"bUC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUD" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/science) +"bUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUH" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUM" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUN" = ( +/obj/machinery/r_n_d/experimentor, +/turf/open/floor/engine, +/area/toxins/explab) +"bUO" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bUP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bUQ" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/status_display{ + density = 0; + pixel_x = -32; + pixel_y = 0; + supply_display = 1 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUS" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUT" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUU" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUV" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bVa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bVb" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/supply) +"bVd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"bVe" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/supply) +"bVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bVg" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVu" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVw" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVA" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVE" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bVF" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVI" = ( +/turf/closed/wall, +/area/medical/cmo) +"bVJ" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVK" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVP" = ( +/obj/machinery/r_n_d/server/core, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVR" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bVS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVT" = ( +/obj/machinery/computer/rdservercontrol, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVV" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/science) +"bVX" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVY" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVZ" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/science) +"bWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/item/weapon/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWd" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/computer/card/minor/rd, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWe" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("SS13","RD") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWi" = ( +/obj/machinery/camera{ + c_tag = "Experimentor Lab Chamber"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWo" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bWp" = ( +/turf/closed/wall, +/area/storage/tech) +"bWq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/central) +"bWt" = ( +/turf/closed/wall, +/area/janitor) +"bWu" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bWv" = ( +/turf/closed/wall, +/area/maintenance/asmaint) +"bWw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWx" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"bWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWz" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWA" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWB" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWC" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWD" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bWF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWG" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWH" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bWM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/cmo) +"bWN" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWO" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWR" = ( +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"bWS" = ( +/turf/closed/wall, +/area/toxins/storage) +"bWT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWV" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWW" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"bWZ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXl" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/storage/tech) +"bXm" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXn" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 2 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Tech Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXo" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXp" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXq" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bXt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bXu" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/plasteel, +/area/janitor) +"bXv" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/vehicle/janicart, +/turf/open/floor/plasteel, +/area/janitor) +"bXx" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/janitor) +"bXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bXz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXA" = ( +/turf/open/floor/plasteel, +/area/janitor) +"bXB" = ( +/obj/machinery/door/window/westleft{ + name = "Janitoral Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/janitor) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/janitor) +"bXD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "surgery"; + name = "Surgery Shutter Control"; + pixel_x = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXH" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXJ" = ( +/obj/structure/table, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bXL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bXO" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXR" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXW" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXX" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXY" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/obj/item/clothing/tie/stethoscope, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bYa" = ( +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYb" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Misc Research APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYg" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYi" = ( +/turf/closed/wall, +/area/toxins/mixing) +"bYj" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/plasmaresearch, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYo" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"bYr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"bYs" = ( +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"bYt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/mixing) +"bYy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/labor) +"bYz" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/aft) +"bYJ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYL" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYN" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/open/floor/plating, +/area/storage/tech) +"bYO" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bYR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bYT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bYY" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"bYZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/janitor) +"bZa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 6 + }, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZc" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZi" = ( +/obj/structure/table/optable, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bZq" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZt" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZy" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZz" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZA" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/storage) +"bZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZF" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/mixing) +"bZH" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZP" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/mixing) +"bZQ" = ( +/turf/closed/indestructible, +/area/toxins/test_area) +"bZR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"bZS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZT" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bZV" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"bZW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZY" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"caa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cab" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cac" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cad" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cae" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"caf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"cag" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cah" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/pandemic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/computer/rdconsole, +/obj/item/weapon/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/destructive_analyzer, +/obj/item/weapon/circuitboard/machine/protolathe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/computer/aifixer, +/obj/item/weapon/circuitboard/computer/teleporter, +/obj/item/weapon/circuitboard/machine/circuit_imprinter, +/obj/item/weapon/circuitboard/machine/mechfab, +/turf/open/floor/plating, +/area/storage/tech) +"cai" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/mining, +/obj/item/weapon/circuitboard/machine/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/computer/arcade/battle, +/turf/open/floor/plating, +/area/storage/tech) +"caj" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/telecomms/processor, +/obj/item/weapon/circuitboard/machine/telecomms/receiver, +/obj/item/weapon/circuitboard/machine/telecomms/server, +/obj/item/weapon/circuitboard/machine/telecomms/bus, +/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, +/obj/item/weapon/circuitboard/computer/message_monitor{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cak" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cal" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"cam" = ( +/obj/structure/table, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"can" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/janitor) +"cao" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/janitor) +"cap" = ( +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"caq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/janitor) +"car" = ( +/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/open/floor/plating, +/area/maintenance/asmaint) +"cas" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cat" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cav" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"cax" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cay" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"caA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caB" = ( +/obj/machinery/vending/wallmed{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("SS13") + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caG" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv4"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caH" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv4"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caL" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Medical Officer"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caN" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/cmo) +"caQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caS" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"caZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cba" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"cbb" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cbf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/mixing) +"cbg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"cbi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbk" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cbl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cbm" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cbn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cbo" = ( +/obj/item/weapon/ore/iron, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbq" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cbs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbt" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbu" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cby" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbA" = ( +/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 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/janitor) +"cbI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/janitor) +"cbJ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbL" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbS" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating"; + dir = 1; + network = list("SS13"); + pixel_x = 22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbV" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbW" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbX" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbY" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cca" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccb" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccc" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccd" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cce" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccg" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cch" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cci" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"cck" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/cartridge/medical, +/obj/item/weapon/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccl" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccn" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"cco" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"ccp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ccq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"cct" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccw" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible, +/area/toxins/test_area) +"ccL" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccN" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "48" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_angle = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"ccP" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"ccQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccU" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccW" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"ccX" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/storage/tech) +"ccY" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/cloning{ + pixel_x = 0 + }, +/obj/item/weapon/circuitboard/computer/med_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/clonescanner, +/obj/item/weapon/circuitboard/machine/clonepod, +/obj/item/weapon/circuitboard/computer/scan_consolenew, +/turf/open/floor/plating, +/area/storage/tech) +"ccZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cda" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/powermonitor{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/computer/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdb" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cde" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdn" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cds" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cdt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdv" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cdw" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdx" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdy" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdA" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdB" = ( +/turf/closed/wall, +/area/toxins/xenobiology) +"cdC" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cdD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdG" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdI" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdJ" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdK" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdO" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/mixing) +"cdP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cdS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/mixing) +"cdT" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdU" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdW" = ( +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cdX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdY" = ( +/obj/item/weapon/ore/silver, +/obj/item/weapon/ore/silver, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cdZ" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cea" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"ceb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cec" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/pickaxe{ + pixel_x = 5 + }, +/obj/item/weapon/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ced" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cee" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cef" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cej" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/storage/tech) +"cek" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/storage/tech) +"cel" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cem" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tech) +"ceo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ceq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"ces" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"cet" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"ceu" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cev" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cex" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cey" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceF" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay) +"ceG" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceH" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room 2"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay) +"ceK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "CM Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceP" = ( +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceQ" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceR" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceS" = ( +/obj/machinery/door/window/southleft{ + name = "Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceU" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceW" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/toxins/xenobiology) +"ceX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceZ" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cfa" = ( +/obj/structure/sign/fire, +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"cfb" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cfc" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfd" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/toxins/mixing) +"cff" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfg" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfh" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfi" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cfj" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfk" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"cfl" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cfm" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfp" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/storage/tech) +"cfq" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfr" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/open/floor/plating, +/area/storage/tech) +"cfs" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cft" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfu" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"cfw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cfA" = ( +/turf/closed/wall/r_wall, +/area/atmos) +"cfB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/atmos) +"cfG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfK" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfX" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfZ" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cga" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgb" = ( +/obj/machinery/smartfridge/extract, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgc" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cge" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgf" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cgh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cgi" = ( +/obj/machinery/door/poddoor{ + id = "mixvent2"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgk" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cgm" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor2"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump2"; + exterior_door_tag = "tox_airlock_exterior2"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior2"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cgo" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cgp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cgq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgs" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgu" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cgw" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/primary/aft) +"cgx" = ( +/turf/closed/wall, +/area/atmos) +"cgy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/atmos) +"cgz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgD" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/atmos) +"cgE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cgF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "wloop_atm_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 2 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgL" = ( +/turf/open/floor/plasteel, +/area/atmos) +"cgM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgN" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgO" = ( +/turf/closed/wall, +/area/medical/virology) +"cgP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cgQ" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cha" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"chb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"chd" = ( +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"che" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior2"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chf" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump2" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chg" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior2"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chi" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"chk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chl" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cho" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chq" = ( +/turf/closed/wall, +/area/construction) +"chr" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction) +"chs" = ( +/turf/open/floor/plating, +/area/construction) +"cht" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/construction) +"chu" = ( +/turf/open/floor/plasteel, +/area/construction) +"chv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/construction) +"chw" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"chx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"chB" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"chF" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chG" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chN" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/atmos) +"chO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"chP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chQ" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chS" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/virology) +"chU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/virology) +"chW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chX" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cia" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cic" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cid" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cig" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cih" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cik" = ( +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cil" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cim" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent2"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker2"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cio" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cip" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ciq" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cir" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"cis" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction) +"cit" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/construction) +"ciu" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"civ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ciw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/aft) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/atmos) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciD" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/atmos) +"ciF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/autolathe/atmos, +/turf/open/floor/plasteel, +/area/atmos) +"ciG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/atmos) +"ciH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciI" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste In"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciN" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"ciO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/atmos) +"ciR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ciT" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"ciU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciW" = ( +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ciY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ciZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cja" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cjg" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cji" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjj" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjk" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjn" = ( +/obj/structure/table, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjp" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjq" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cjt" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cju" = ( +/turf/closed/wall, +/area/toxins/misc_lab) +"cjv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjw" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjy" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjz" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cjC" = ( +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cjD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjE" = ( +/obj/structure/girder, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"cjG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjH" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjM" = ( +/obj/structure/closet/crate, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/construction) +"cjO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"cjQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cjU" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cjV" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cjW" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cka" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ckb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckl" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckm" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"ckn" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/atmos) +"ckp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor"; + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cks" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckt" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cku" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckx" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cky" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckB" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckC" = ( +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckD" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"ckE" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Testing Lab North"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + req_access = null + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckM" = ( +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"ckN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ckO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckQ" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cla" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"clc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cle" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clf" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"clg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/atmos) +"cli" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cll" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Unfiltered to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cls" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"clt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"clv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "waste_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"clw" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cly" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"clB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clE" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clK" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"clM" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clN" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clR" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/target_stake, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"clS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"clT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"clU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/rack, +/obj/item/clothing/head/cone, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/aft) +"clW" = ( +/obj/item/weapon/storage/secure/safe, +/turf/closed/wall, +/area/maintenance/aft) +"clX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clY" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + tag = "icon-connector_map (WEST)"; + icon_state = "connector_map"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cma" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cme" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmf" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmg" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/construction) +"cmh" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/construction) +"cmi" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/construction) +"cmj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cmk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cml" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plating, +/area/atmos) +"cmm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cmo" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"cmp" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/atmos) +"cmq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/open/floor/plasteel, +/area/atmos) +"cmr" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cmt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmv" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmH" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Module" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmI" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmJ" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmL" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cmN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmR" = ( +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmU" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmV" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/toxins/misc_lab) +"cmY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cmZ" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses/garb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cna" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/clothing/tie/black, +/obj/item/clothing/tie/red, +/obj/item/clothing/mask/bandana/red, +/obj/item/clothing/mask/bandana/skull, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cne" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cng" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cni" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"cnj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnl" = ( +/obj/machinery/power/apc{ + name = "Aft Hall APC"; + dir = 8; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cnm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnn" = ( +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/atmos) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/atmos) +"cnq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnt" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/atmos) +"cny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tanks" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnA" = ( +/turf/open/floor/engine/n2o, +/area/atmos) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/medical/virology) +"cnE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnI" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnK" = ( +/obj/structure/disposalpipe/segment, +/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/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cnL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnM" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnS" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnT" = ( +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnU" = ( +/obj/structure/target_stake, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cnW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnX" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/storage/box/cups, +/turf/open/floor/plating, +/area/maintenance/aft) +"coa" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cob" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coc" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cog" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cok" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"col" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Telecoms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"com" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/atmos) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"coq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cou" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cox" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/atmos) +"coy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coD" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/atmos) +"coE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coF" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/atmos) +"coG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coK" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coM" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"coO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coP" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"coQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall, +/area/toxins/xenobiology) +"coS" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coT" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coV" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coW" = ( +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"coX" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coZ" = ( +/obj/machinery/camera{ + c_tag = "Testing Firing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpa" = ( +/obj/structure/target_stake, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpb" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/maintenance/aft) +"cpc" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpd" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cpg" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cph" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cpk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/atmos) +"cpp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/atmos) +"cps" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/atmos) +"cpt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/atmos) +"cpu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cpw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpx" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/atmos) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cpA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cpB" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cpJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpK" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpM" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cpP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/misc_lab) +"cpQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpR" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cpS" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cpT" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cpU" = ( +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpW" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpY" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpZ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqa" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqb" = ( +/obj/machinery/computer/message_monitor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cqc" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqe" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cqg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqj" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cqk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cql" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 8; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqo" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cqp" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqr" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqs" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"cqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqv" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqx" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqy" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqC" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqE" = ( +/obj/structure/rack, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Test"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet, +/obj/item/pipe{ + dir = 4; + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cqJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/weapon/paper/range, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHEAST)"; + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/misc_lab) +"cqK" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHWEST)"; + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/misc_lab) +"cqL" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cqM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqO" = ( +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/aft) +"cqP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/pill/mannitol, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqR" = ( +/turf/closed/wall, +/area/maintenance/strangeroom) +"cqS" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cqT" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqW" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqZ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cra" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"crf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"crg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/atmos) +"crh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"cri" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"crj" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"crk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crl" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"crm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"crn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"cro" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/atmos) +"crq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Plasma Tank" + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crs" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cru" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"crv" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + anchored = 1; + density = 0; + pixel_x = -30 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cry" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"crA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"crD" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crE" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crF" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crL" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"crP" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crQ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crT" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"crU" = ( +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crV" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crW" = ( +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crX" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crY" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csa" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csd" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csn" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"cso" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/atmos) +"csp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"csq" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Toxin Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/atmos) +"csr" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor"; + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"css" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"csu" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csv" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"csx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology South"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"csD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"csE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"csH" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csK" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"csP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csV" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/tcommsat/computer) +"csW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csX" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"ctc" = ( +/turf/closed/wall, +/area/engine/break_room) +"ctd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cte" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cth" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cti" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"ctj" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ctk" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"ctl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/item/weapon/wrench, +/turf/open/floor/plasteel, +/area/atmos) +"cto" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"ctp" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"ctr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cts" = ( +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"ctt" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"ctu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"ctx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/weapon/wrench, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/maintenance/asmaint) +"cty" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ctz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint) +"ctA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctD" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ctE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctF" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ctG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"ctH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/misc_lab) +"ctI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctK" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctM" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/r_arm, +/obj/item/weapon/shard, +/obj/item/weapon/hatchet, +/obj/item/weapon/staplegun, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctO" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/l_leg, +/obj/item/bodypart/l_arm, +/obj/item/weapon/restraints/handcuffs, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"ctR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"ctS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ctU" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/bluegrid{ + dir = 8; + icon_state = "vault"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cua" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cub" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cuc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cud" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/tcommsat/computer) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cuf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Telecoms Monitoring"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cui" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cuj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuk" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cul" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cum" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"cun" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cuo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cup" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cuq" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"cur" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/engineering) +"cus" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"cut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cuu" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuv" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/atmos) +"cux" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/maintenance/asmaint) +"cuG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cuH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/asmaint) +"cuI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuN" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuS" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cuU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cuV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cuW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cuX" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuY" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuZ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel{ + tag = "icon-damaged5"; + icon_state = "damaged5" + }, +/area/maintenance/strangeroom) +"cva" = ( +/obj/machinery/camera{ + c_tag = "Telecoms Server Room"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cvb" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvc" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/tcommsat/computer) +"cve" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cvi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cvk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cvp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/plasteel, +/area/atmos) +"cvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/atmos) +"cvr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"cvs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvt" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/weapon/cigbutt, +/turf/open/floor/plasteel, +/area/atmos) +"cvu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/atmos) +"cvw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank" + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvy" = ( +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvG" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cvI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cvJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvK" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("Test","RD"); + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cvL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"cvM" = ( +/obj/machinery/camera{ + c_tag = "Testing Lab South"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvN" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvO" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cvQ" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cvS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvT" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/strangeroom) +"cvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/strangeroom) +"cvW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cvX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cvY" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/chem_pile, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cvZ" = ( +/obj/machinery/message_server, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwa" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwc" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwe" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cwg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"cwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwt" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwu" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cwv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cwy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwz" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/atmos) +"cwA" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor"; + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwF" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwP" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cwR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cwU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cwX" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/spirit_board, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cxd" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/restraints/handcuffs, +/obj/item/weapon/pen, +/obj/item/weapon/paper{ + info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; + name = "Strange Paper" + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/strangeroom) +"cxe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"cxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gibber, +/turf/open/floor/plasteel, +/area/maintenance/strangeroom) +"cxg" = ( +/obj/machinery/vending/cart{ + desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; + icon_state = "cart-broken"; + name = "Old Machine"; + product_slogans = "Bzzzt..-6-4-!"; + products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cxh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxi" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxj" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxk" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxl" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cxm" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxx" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxC" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxD" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cxF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cxG" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 3; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/atmos) +"cxK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cxY" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxZ" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyc" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cye" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cym" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cyn" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"cyo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyr" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyt" = ( +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyv" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/break_room) +"cyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyB" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cyI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/atmos) +"cyK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cyL" = ( +/obj/structure/sign/fire{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cyN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyP" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyX" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyZ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cza" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czc" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czd" = ( +/obj/item/clothing/under/rank/vice, +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"czi" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czj" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/chiefs_office) +"czl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/engine/break_room) +"czm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/break_room) +"czn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/engine/break_room) +"czo" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"czp" = ( +/turf/closed/wall, +/area/maintenance/incinerator) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/incinerator) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"czs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/minimeteor, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czt" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/snacks/donkpocket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/c_tube, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/caution, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"czB" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/maintenance/portsolar) +"czE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"czF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"czG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czN" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/engine/chiefs_office) +"czO" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czQ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czS" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"czV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/engineering) +"czW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/atmos) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/atmos) +"czY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAa" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAd" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAe" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/kitchenspike_frame, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAh" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAi" = ( +/obj/structure/table/wood, +/obj/item/weapon/retractor/alien, +/obj/item/weapon/reagent_containers/glass/bowl, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAj" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"cAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cAE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAF" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAG" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"cAI" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAP" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAT" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAW" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/atmos) +"cAY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/atmos) +"cAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/atmos) +"cBa" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/atmos) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/atmos) +"cBc" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/atmos) +"cBd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/atmos) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 10 + }, +/area/atmos) +"cBf" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "arrival" + }, +/area/atmos) +"cBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 6 + }, +/area/atmos) +"cBh" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cBi" = ( +/turf/open/floor/plating, +/area/atmos) +"cBj" = ( +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBk" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/incinerator) +"cBl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/incinerator) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/lighter/greyscale, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBq" = ( +/obj/structure/chair, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBr" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cBv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBE" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cBH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBZ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCd" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCg" = ( +/turf/closed/wall, +/area/engine/engineering) +"cCh" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCi" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCk" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/coin/plasma, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCn" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCq" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCr" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCy" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCC" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical, +/obj/item/pizzabox/mushroom, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCE" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCH" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cCJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCN" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCO" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/switchblade{ + force = 12 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCQ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCS" = ( +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCY" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cCZ" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cDa" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cDb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDd" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDi" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/computer/card/minor/ce, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDj" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDl" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space) +"cDq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space, +/area/space) +"cDr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space) +"cDs" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/maintenance/incinerator) +"cDt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/tie/black, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDx" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/shard, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDB" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDC" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDD" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cDH" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDI" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cDJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDU" = ( +/obj/item/weapon/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/item/weapon/cartridge/atmos, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDV" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cEa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEb" = ( +/obj/item/clothing/head/cone, +/obj/item/weapon/restraints/handcuffs/cable/orange, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Biohazard Disposals"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEf" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEk" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEl" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEm" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEn" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEA" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/weapon/circuitboard/computer/solar_control, +/obj/item/weapon/electronics/tracker, +/obj/item/weapon/paper/solar, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEB" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cED" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEF" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cEG" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"cEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEM" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEP" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cER" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cES" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1443; + icon_state = "vent_map"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cEU" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEV" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/incinerator) +"cEW" = ( +/obj/item/clothing/suit/toggle/labcoat/mad, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEX" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cEY" = ( +/obj/structure/table/wood, +/obj/item/organ/internal/butt/xeno, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFa" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (NORTH)"; + icon_state = "manifold"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFf" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFl" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFr" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFs" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cFv" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cFw" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cFx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engine/engineering) +"cFz" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cFC" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/wrench, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cFJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFK" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFM" = ( +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics O2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFP" = ( +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Air-mix Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFS" = ( +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFT" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFU" = ( +/obj/item/weapon/kitchen/knife, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFV" = ( +/obj/structure/table/wood, +/obj/item/weapon/scalpel, +/obj/item/weapon/wirecutters, +/obj/item/organ/brain/alien, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFW" = ( +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFX" = ( +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGe" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGh" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cGn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGo" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGp" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGq" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/engine/engineering) +"cGs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cGt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGE" = ( +/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/open/floor/plasteel, +/area/engine/engineering) +"cGF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGI" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cGJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cGK" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cGL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hatchet, +/obj/item/weapon/lighter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cGM" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGN" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/crowbar, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGO" = ( +/obj/item/weapon/bedsheet/cult, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGP" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGT" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGU" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGW" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGX" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGY" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGZ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHa" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cHd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHe" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cHf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cHg" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cHh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "SMES Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHi" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/engine/engineering) +"cHk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Middle"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cHl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHp" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cHr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Waste Out"; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHt" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cHv" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cHz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHC" = ( +/obj/machinery/door/window{ + name = "SMES Chamber"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHD" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cHG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "SMES Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/engine/engineering) +"cHJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHY" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/airlock_painter, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cIa" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cIb" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIc" = ( +/turf/open/floor/plating, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cId" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donkpockets, +/turf/open/floor/plating, +/area/space) +"cIf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIh" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIn" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIq" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engineering) +"cIs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"cIC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIF" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIG" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cII" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engineering) +"cIM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cIN" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIO" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIP" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cIQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space, +/area/space) +"cIR" = ( +/obj/structure/table_frame, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint2) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space) +"cIT" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIV" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIW" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cIZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"cJa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cJb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cJc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJj" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"cJk" = ( +/obj/structure/window, +/turf/open/floor/plating, +/area/toxins/mixing) +"cJl" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "0"; + req_one_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cJm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/engine/engineering) +"cJt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"cJu" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cJv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJz" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engineering) +"cJA" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cJB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod4"; + shuttleId = "pod4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"cJF" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "asteroid_pod4" + }, +/turf/open/space, +/area/space) +"cJG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJI" = ( +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJK" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/engine/engineering) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJN" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJO" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cJR" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJS" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJT" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJV" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJW" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/engineering) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/engine/engineering) +"cJZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engine/engineering) +"cKa" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKd" = ( +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cKe" = ( +/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_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKf" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cKh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKj" = ( +/obj/structure/sign/pods{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engineering) +"cKk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Escape Pod"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cKl" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKm" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKn" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKs" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/camera{ + c_tag = "Engineering Materials"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKt" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKu" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cKw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKz" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKM" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "32" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering) +"cKU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKZ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLa" = ( +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLb" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Port Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering North" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLe" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLf" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLh" = ( +/obj/structure/transit_tube{ + tag = "icon-Block"; + icon_state = "Block" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLi" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/sign/securearea{ + name = "EXTERNAL AIRLOCK"; + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cLk" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/item/weapon/lighter{ + lit = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Entrance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLo" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLr" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/weapon/storage/backpack/industrial, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLt" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLz" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLF" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLH" = ( +/obj/structure/transit_tube/station{ + dir = 8; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/obj/structure/transit_tube_pod, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cLJ" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLM" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLO" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLP" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Supermatter Control Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cLS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLX" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMa" = ( +/obj/structure/table, +/obj/item/weapon/pocketknife, +/obj/item/weapon/reagent_containers/food/snacks/beans{ + bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); + desc = "Smells kind of funny." + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMb" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMd" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMg" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMh" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMn" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/reagent_containers/pill/charcoal, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"cMp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMq" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cMr" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMv" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/engine/supermatter) +"cMw" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMx" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMz" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/engine/supermatter) +"cMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/engine/engineering) +"cMD" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/turf/open/space, +/area/space) +"cME" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/open/space, +/area/space) +"cMF" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/weapon/paper/gravity_gen{ + layer = 3 + }, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMM" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMQ" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cMR" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/turf/open/space, +/area/space) +"cMS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMT" = ( +/obj/structure/transit_tube, +/turf/open/space, +/area/space) +"cMU" = ( +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/open/space, +/area/space) +"cMV" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/open/space, +/area/space) +"cMW" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMX" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMZ" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNa" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNc" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNd" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNe" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNf" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNg" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNh" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNk" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNl" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNp" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNs" = ( +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/space) +"cNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNu" = ( +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/space) +"cNv" = ( +/obj/item/weapon/crowbar, +/turf/open/space, +/area/space) +"cNw" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNx" = ( +/turf/closed/wall/r_wall, +/area/aisat) +"cNy" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cNz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cNA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/engine/engine_smes) +"cNC" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cND" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cNE" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cNF" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/aisat) +"cNG" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/aisat) +"cNH" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/aisat) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNJ" = ( +/obj/item/weapon/weldingtool, +/turf/open/space, +/area/space) +"cNK" = ( +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/space) +"cNM" = ( +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/space) +"cNN" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNO" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/open/space, +/area/space) +"cNP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNQ" = ( +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNS" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNT" = ( +/obj/structure/transit_tube{ + tag = "icon-S-NW"; + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNU" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNV" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNW" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNZ" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cOd" = ( +/turf/closed/wall, +/area/aisat) +"cOe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/aisat) +"cOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Teleporter Room"; + req_access_txt = "17;65" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cOk" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cOl" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOr" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOs" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cOt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOv" = ( +/obj/structure/transit_tube/station{ + dir = 4; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOy" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/aisat) +"cOz" = ( +/turf/open/floor/plating, +/area/aisat) +"cOA" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cOB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cOF" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block"; + tag = "icon-Block (NORTH)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOI" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cOM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cON" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "MiniSat Entrance"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat External Power APC"; + pixel_x = -27; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOW" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOY" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOZ" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/aisat) +"cPc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cPd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/aisat) +"cPe" = ( +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/closed/wall, +/area/aisat) +"cPj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cPm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPo" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPw" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cPx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cPz" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cPA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cPB" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPC" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPI" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPN" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/aisat) +"cPP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPR" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPT" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPU" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + cell_type = 2500; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space, +/area/space) +"cPW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cPY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cPZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQb" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cQc" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQd" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Antechamber"; + dir = 1; + network = list("MiniSat") + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cQh" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQj" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQk" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_locked"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQp" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQq" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + dir = 2; + network = list("MiniSat","RD"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQr" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQw" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQy" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQA" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQC" = ( +/turf/closed/wall, +/area/turret_protected/ai) +"cQD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQE" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQF" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQH" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQI" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQJ" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber South"; + dir = 2; + network = list("RD","MiniSat") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQN" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQV" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cQW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQY" = ( +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cQZ" = ( +/obj/structure/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/secure) +"cRc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRd" = ( +/obj/structure/rack, +/obj/item/weapon/crowbar/red, +/obj/item/weapon/wrench, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cRf" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cRg" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat Maint APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air Out"; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/ai_monitored/storage/secure) +"cRj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/ai_monitored/storage/secure) +"cRk" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/ai_monitored/storage/secure) +"cRl" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRm" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cRn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/aisat) +"cRo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/aisat) +"cRy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRB" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cRF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cRG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cRH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRI" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRJ" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRK" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cRP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRS" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRU" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 2; + name = "SMES room APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRV" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cRW" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cRZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cSa" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSb" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Supermatter Control Room"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cSc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSf" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSg" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSi" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera{ + c_tag = "Port Engineering North-East"; + dir = 5; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSo" = ( +/obj/machinery/vending/tool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSp" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cSB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSC" = ( +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cSE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/engine/supermatter) +"cSG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSH" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "smblast"; + name = "Control Room Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/engine/supermatter) +"cSJ" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSK" = ( +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSL" = ( +/obj/item/device/radio/off, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSM" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSN" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSO" = ( +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSP" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSQ" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSS" = ( +/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 = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cST" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTe" = ( +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cTg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cTi" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTo" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smblast" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTr" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTB" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTD" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTF" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTG" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTI" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTJ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTK" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTL" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + layer = 3 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Center" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTQ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Supermatter APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTS" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTY" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/port_engineering) +"cTZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUa" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cUe" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUh" = ( +/obj/machinery/atmospherics/components/binary/volume_pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/power/emitter, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUs" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUx" = ( +/turf/closed/wall, +/area/engine/port_engineering) +"cUA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUF" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUG" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space) +"cUJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cUL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUN" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Filtering Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUO" = ( +/obj/machinery/camera{ + c_tag = "Filtering Room" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters"; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVb" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVc" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cVf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVg" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space) +"cVl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVn" = ( +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVp" = ( +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVv" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVw" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "superinput" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVC" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/port_engineering) +"cVG" = ( +/obj/item/weapon/wirecutters, +/turf/open/space, +/area/space) +"cVH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVL" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVM" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVN" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVO" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVP" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVQ" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVR" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Filtering Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVT" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVU" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/supermatter) +"cVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVY" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/supermatter) +"cVZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cWe" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWj" = ( +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWl" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWo" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWp" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWq" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWu" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWv" = ( +/obj/machinery/mass_driver{ + id = "engicannon" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + tag = "smin"; + volume_rate = 700 + }, +/obj/machinery/power/supermatter_shard{ + anchored = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWx" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWz" = ( +/turf/open/floor/plating, +/area/engine/supermatter) +"cWA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space) +"cWE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWF" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWG" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWI" = ( +/obj/machinery/particle_accelerator/control_box{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 0; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWK" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWL" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage1"; + name = "secure storage" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/port_engineering) +"cWM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWQ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWV" = ( +/obj/structure/sign/securearea{ + color = ""; + desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; + name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWX" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space) +"cWY" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space) +"cXc" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXd" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXe" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXf" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXg" = ( +/obj/machinery/camera{ + c_tag = "Engineering PA"; + dir = 9; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 2; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXi" = ( +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXj" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/camera{ + c_tag = "Port Engineering Secure Storage"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cXl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXn" = ( +/obj/machinery/door/poddoor{ + id = "engicannon" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cXo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXq" = ( +/obj/structure/window{ + color = "red"; + desc = "A window, break in case of emergency."; + dir = 1; + icon_state = "window"; + tag = "icon-window (NORTH)" + }, +/obj/machinery/button/massdriver{ + id = "engicannon"; + name = "\improper JETTISON ENGINE"; + pixel_y = -22; + req_access_txt = "32" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/supermatter) +"cXr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXt" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXw" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage1"; + name = "Secure Storage"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "10" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering Middle"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXx" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + volume_rate = 5000 + }, +/turf/open/floor/plating/airless, +/area/space) +"cXz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/space) +"cXA" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXE" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXI" = ( +/obj/machinery/field/generator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXM" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Port Engineering South" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXY" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYb" = ( +/obj/item/device/multitool, +/turf/open/space, +/area/space) +"cYd" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYe" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYf" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYh" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYi" = ( +/obj/structure/grille, +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYk" = ( +/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 = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYq" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYr" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYD" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/space, +/area/space) + +( +1, +1, +1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} + From 389159b6f18841a521ea0ceb45e144af060f84f9 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 25 Dec 2016 18:50:04 -0800 Subject: [PATCH 48/55] Mapshit --- _maps/map_files/TgStation2/tgstation.2.1.3.dmm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index e73e055..b729b4f 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -55162,7 +55162,7 @@ "cpx" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = 4; + filter_type = "n2o"; on = 1 }, /turf/open/floor/plasteel, @@ -57011,6 +57011,7 @@ "ctp" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; + filter_type = "plasma"; on = 1 }, /turf/open/floor/plasteel, @@ -59219,7 +59220,7 @@ "cxI" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; - filter_type = 3; + filter_type = "co2"; on = 1 }, /turf/open/floor/plasteel, @@ -59913,7 +59914,7 @@ "czo" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 2; - filter_type = 2; + filter_type = "n2"; on = 1 }, /turf/open/floor/plasteel, @@ -60231,7 +60232,7 @@ "cAa" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; - filter_type = 1; + filter_type = "o2"; on = 1 }, /turf/open/floor/plasteel, From ee41b299f1daf616d9ddb9768102a71853d42355 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 25 Dec 2016 18:52:59 -0800 Subject: [PATCH 49/55] Add files via upload --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 144883 ++++++++------- 1 file changed, 72442 insertions(+), 72441 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index e73e055..f65c7f0 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -1,72441 +1,72442 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aad" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aae" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aag" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aah" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aai" = ( -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aak" = ( -/obj/machinery/door/poddoor{ - id = "executionspacevent" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aal" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aam" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/open/space, -/area/space) -"aan" = ( -/obj/machinery/flasher{ - id = "executionflasher"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aao" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/processing) -"aap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/processing) -"aar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/security/transfer) -"aas" = ( -/obj/machinery/sparker{ - id = "executionsparker"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aat" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/chair, -/turf/open/floor/engine, -/area/security/transfer) -"aau" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aax" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aay" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northwest"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/processing) -"aaD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaE" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aaF" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaH" = ( -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - heat_proof = 1; - name = "Prisoner Transfer Chamber"; - req_access_txt = "2" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaL" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"aaM" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 10000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaN" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaO" = ( -/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaP" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/razor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaR" = ( -/obj/machinery/button/flasher{ - id = "executionflasher"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "executionspacevent"; - name = "vent to space"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaS" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/weapon/tank/internals/anesthetic, -/obj/item/weapon/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaV" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northeast"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaW" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaX" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaY" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aba" = ( -/obj/machinery/button/ignition{ - id = "executionsparker"; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abd" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"abe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abf" = ( -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"abg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abi" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/transfer) -"abk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/door/window/northleft{ - dir = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abq" = ( -/obj/machinery/door/airlock/security{ - name = "Prisoner Transfer"; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abw" = ( -/obj/structure/table, -/obj/item/device/electropack, -/obj/item/clothing/head/helmet, -/obj/item/device/assembly/signaler, -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Transfer Center APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aby" = ( -/obj/structure/closet/secure_closet/injection, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abz" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abF" = ( -/turf/closed/wall/r_wall, -/area/security/lockers) -"abG" = ( -/turf/closed/wall/r_wall, -/area/security/hos) -"abH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/hos) -"abI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abK" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Brig Interrogation" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/processing) -"abO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/carpet, -/area/security/hos) -"abQ" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"abT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/carpet, -/area/security/hos) -"abU" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"abV" = ( -/obj/machinery/computer/card/minor/hos, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abW" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/lockers) -"abX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/plasteel, -/area/security/lockers) -"abY" = ( -/turf/open/floor/plasteel, -/area/security/lockers) -"abZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Cappers! Fairly unremarkable really."; - name = "\improper Officer Cappers" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aca" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Camilla! He constantly seeks validation."; - name = "\improper Officer Camilla" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acb" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acd" = ( -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ace" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acg" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ach" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aci" = ( -/obj/structure/table, -/obj/item/weapon/lighter, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"ack" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"acl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acm" = ( -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Prison Shuttle Dock APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aco" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acp" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acr" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"act" = ( -/obj/structure/closet/ammunitionlocker, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acu" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acw" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/deputy, -/obj/item/weapon/storage/box/seccarts, -/turf/open/floor/carpet, -/area/security/hos) -"acx" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"acy" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acz" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acA" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acB" = ( -/turf/open/floor/carpet, -/area/security/hos) -"acC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acD" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acE" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acF" = ( -/obj/structure/table, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acG" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"acI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acP" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/recharger, -/turf/open/floor/carpet, -/area/security/hos) -"acQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/adamantine, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acR" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/security/hos) -"acS" = ( -/obj/structure/closet/secure_closet/hos, -/turf/open/floor/carpet, -/area/security/hos) -"acT" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Brig Locker Room West"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/lockers) -"acY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"ada" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"add" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"ade" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"adi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adj" = ( -/obj/structure/closet/ammunitionlocker, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/security/hos) -"adn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/security/hos) -"ado" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adp" = ( -/turf/closed/wall, -/area/security/transfer) -"adq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/transfer) -"ads" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Security Locker Room APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adw" = ( -/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/open/floor/plasteel, -/area/security/lockers) -"adx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/brig) -"ady" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"adz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"adA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adE" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/red, -/obj/item/weapon/stamp/hos, -/turf/open/floor/carpet, -/area/security/hos) -"adF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Brig Riot Equipment"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -24 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"adI" = ( -/turf/closed/wall, -/area/security/hos) -"adJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adK" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/carpet, -/area/security/hos) -"adL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adM" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adO" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"adP" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adQ" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adR" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/metal{ - amount = 20 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/security/lockers) -"adT" = ( -/obj/structure/table, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/machinery/camera{ - c_tag = "Brig Locker Room East"; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adU" = ( -/obj/machinery/vending/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/isolation) -"adW" = ( -/obj/machinery/vending/medical{ - pixel_x = -2; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitered" - }, -/area/security/isolation) -"adX" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitered" - }, -/area/security/isolation) -"adY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"adZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aea" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aed" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aef" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor Northwest"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"aeg" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/storage/box/flashbangs, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeh" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/teargas, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aei" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/camera/motion{ - c_tag = "Armory"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aej" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aek" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"ael" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aem" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/hos) -"aen" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/turf/open/floor/carpet, -/area/security/hos) -"aeo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/hos) -"aep" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aer" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/main) -"aes" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"aet" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"aeu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"aev" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aew" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Brig Medbay"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/isolation) -"aex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"aey" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aez" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aeG" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/chemimp, -/obj/item/weapon/storage/box/trackimp, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeK" = ( -/obj/machinery/button/door{ - id = "riotequipment"; - name = "Riot Equipment Shutters"; - pixel_x = 24; - pixel_y = 32; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeN" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/hos) -"aeQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"aeS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aeT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aeU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeV" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeW" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/main) -"afa" = ( -/obj/machinery/computer/security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"afb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afc" = ( -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afd" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afe" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"aff" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"afh" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afi" = ( -/obj/structure/bed, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"afj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fpmaint) -"afm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afp" = ( -/obj/structure/rack, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afq" = ( -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; - name = "\improper Officer Lock n Lode" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afs" = ( -/obj/structure/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aft" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Armory APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afv" = ( -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"afw" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"afx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"afy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"afz" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afA" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afB" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afC" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afD" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"afF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afG" = ( -/obj/machinery/camera{ - c_tag = "Brig Medbay"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afI" = ( -/turf/closed/wall, -/area/security/main) -"afJ" = ( -/obj/structure/grille, -/turf/open/space, -/area/space) -"afK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 6" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afO" = ( -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Secure Cell 2"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afR" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afS" = ( -/obj/machinery/door/window/brigdoor{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afT" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afU" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/ecase, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afV" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/shotgun, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afW" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "2" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aga" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"agc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"age" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/main) -"agf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"agh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Security Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"agi" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agj" = ( -/obj/machinery/door/airlock{ - name = "Showers"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agl" = ( -/obj/machinery/camera{ - c_tag = "Brig Showers"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agm" = ( -/turf/open/floor/plasteel, -/area/security/main) -"agn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"ago" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitered" - }, -/area/security/isolation) -"agp" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitered" - }, -/area/security/isolation) -"agq" = ( -/obj/structure/table, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitered" - }, -/area/security/isolation) -"agr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"ags" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"agt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Medbay APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"agu" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agv" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agw" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall14"; - dir = 2 - }, -/area/shuttle/pod_3) -"agx" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/pod_3) -"agz" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agA" = ( -/obj/machinery/flasher{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"agC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell2"; - name = "Secure Cell 2"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"agE" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"agJ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agK" = ( -/obj/vehicle/secway, -/obj/item/key/security, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agL" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/weapon/gun/energy/laser/practice, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"agM" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/main) -"agP" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Security Office West"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/open/floor/plasteel, -/area/security/main) -"agR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/camera{ - c_tag = "Security Office East"; - dir = 8; - network = list("SS13") - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"agT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aha" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahc" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahd" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc4" - }, -/area/shuttle/pod_3) -"ahe" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahf" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahg" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahi" = ( -/obj/structure/chair, -/obj/item/weapon/storage/pod{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahj" = ( -/obj/structure/chair, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahk" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aho" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahp" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aht" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahx" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"ahy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahA" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahB" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -31; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahC" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall1"; - dir = 2 - }, -/area/shuttle/labor) -"ahD" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"ahF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahG" = ( -/obj/structure/rack, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahR" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahS" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/button/door{ - id = "armorylockdown"; - name = "Brig Control Lockdown"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahV" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahW" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Brig Control APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahX" = ( -/turf/closed/wall, -/area/security/warden) -"ahY" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahZ" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/item/device/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/main) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aib" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aid" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - dwidth = 2; - height = 9; - id = "pod3"; - name = "escape pod 3"; - width = 5 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aie" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aif" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Brig Escape Shuttle"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aig" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aih" = ( -/obj/docking_port/stationary/random{ - dir = 4; - dwidth = 2; - height = 9; - id = "asteroid_pod3"; - width = 5 - }, -/turf/open/space, -/area/space) -"aii" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aij" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aik" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window/westleft{ - name = "Security Delivery"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/main) -"ail" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aim" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ain" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/main) -"aio" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aip" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiq" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"air" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ais" = ( -/obj/structure/table, -/obj/item/baseball, -/obj/item/baseball, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ait" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiv" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiy" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 5" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiz" = ( -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Secure Cell 1"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"aiA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aiB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aiC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aiE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aiL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiM" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiN" = ( -/obj/machinery/flasher{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell1"; - name = "Secure Cell 1"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Brig APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) -"aiR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aiY" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc1" - }, -/area/shuttle/pod_3) -"aiZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aja" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ajb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "brigshuttleflash"; - name = "Flash Control"; - pixel_x = -4; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 0; - pixel_y = -31 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod3"; - shuttleId = "pod3" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajd" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajn" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"ajp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"ajs" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aju" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Courtroom North"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajv" = ( -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/courtroom) -"ajx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice{ - pixel_y = 4 - }, -/obj/item/weapon/dice/d8{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajy" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajA" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ajB" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d20, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ajD" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/brig) -"ajG" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajI" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajL" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajM" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ajZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aka" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall13"; - dir = 2 - }, -/area/shuttle/pod_3) -"akb" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/pod_3) -"akc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"akd" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"ake" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akg" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aki" = ( -/obj/structure/table/wood, -/obj/item/weapon/gavelblock, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akj" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d12, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akk" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"akm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"akn" = ( -/turf/closed/wall, -/area/security/isolation) -"ako" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 4"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akq" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall7"; - dir = 2 - }, -/area/shuttle/labor) -"akr" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 3"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"aks" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall11"; - dir = 2 - }, -/area/shuttle/labor) -"akt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aku" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akv" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 1"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akw" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Evidence"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aky" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akC" = ( -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akE" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"akG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akI" = ( -/obj/structure/table/wood/poker, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akJ" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d10, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akL" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akM" = ( -/obj/structure/chair/comfy/brown, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/cheesie, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/weapon/mop, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akO" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/ian, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akP" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akS" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akX" = ( -/turf/closed/wall, -/area/maintenance/fsmaint) -"akY" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"akZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"ala" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Front Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/crew_quarters/courtroom) -"alc" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ald" = ( -/turf/closed/wall/r_wall, -/area/security/isolation) -"ale" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alf" = ( -/obj/item/weapon/dice/d4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"alg" = ( -/obj/structure/grille, -/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ali" = ( -/obj/item/stack/teeth/lizard{ - amount = 3 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"all" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aln" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alo" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alp" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "perma prison shuttle"; - port_angle = 90; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"alq" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alr" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/rack, -/obj/item/clothing/head/bowler, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/computer/security, -/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/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aly" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/crew_quarters/courtroom) -"alz" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 8; - name = "Courtroom APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alB" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alD" = ( -/obj/item/trash/can, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alE" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigars, -/obj/item/weapon/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alF" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 4"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alG" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 4" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alH" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 3" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alI" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 3"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alJ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alK" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 1" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alM" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alN" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"alP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alQ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/camera{ - c_tag = "Brig Lobby Desk"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/flasher{ - id = "lobbyflash"; - pixel_y = -4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "lobbylockdown"; - name = "Lobby Lockdown"; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"alV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"alY" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/space) -"alZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ama" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amb" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/weapon/gun/magic/staff, -/obj/item/weapon/gun/magic/wand, -/obj/item/weapon/sord, -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amc" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/clothing/suit/armor/riot/knight, -/obj/item/clothing/head/helmet/knight, -/obj/item/clothing/head/wizard/fake, -/obj/item/clothing/suit/wizrobe/fake, -/obj/item/clothing/head/helmet/roman, -/obj/item/clothing/shoes/roman, -/obj/item/clothing/under/roman, -/obj/item/clothing/suit/space/pirate, -/obj/item/clothing/under/kilt, -/obj/item/clothing/under/pirate, -/obj/item/clothing/under/gladiator, -/obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amd" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ame" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amg" = ( -/obj/structure/grille, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ami" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"amj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aml" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"amm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"amn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ams" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amt" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amw" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amx" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amz" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Brig Lobby" - }, -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amF" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amH" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"amJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"amN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amO" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amS" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amU" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"amV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"amW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amY" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amZ" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ana" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anb" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"and" = ( -/obj/structure/table, -/obj/item/weapon/stamp, -/obj/item/weapon/poster/legit, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ane" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ang" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anh" = ( -/obj/structure/rack, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ani" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ano" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anp" = ( -/obj/machinery/atmospherics/pipe/manifold, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ans" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ant" = ( -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anv" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"anw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"any" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Courtroom"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anA" = ( -/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"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anE" = ( -/obj/structure/table, -/obj/item/clothing/glasses/monocle, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anF" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/pill/morphine, -/obj/item/weapon/reagent_containers/pill/morphine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anG" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"anN" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"anO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anP" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anQ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anS" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aob" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aoc" = ( -/turf/closed/wall, -/area/security/brig) -"aod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"aoe" = ( -/obj/machinery/camera{ - c_tag = "Cargo North"; - dir = 4; - network = list("perma") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"aof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology North"; - dir = 8; - network = list("perma") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"aog" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoi" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aok" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aol" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aom" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aon" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aoo" = ( -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aop" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aoq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aor" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aos" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/main) -"aot" = ( -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aou" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aov" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/matches, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aow" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 1; - color = "red"; - dir = 1 - }, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aox" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/bag/tray{ - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoy" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/photo_album, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoA" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoC" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoD" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoE" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoG" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"aoH" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"aoJ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Port Engineering Hallway" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"aoK" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northwest"; - dir = 5; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoL" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northeast"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoN" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southwest"; - dir = 4; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoO" = ( -/obj/item/weapon/crowbar, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aoP" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoQ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoR" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoS" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoT" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Detective's Office"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoU" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aoX" = ( -/obj/structure/rack, -/obj/item/weapon/storage/backpack/satchel/sec, -/obj/item/weapon/storage/backpack/security, -/obj/item/weapon/storage/backpack/dufflebag/sec, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aoZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apb" = ( -/obj/machinery/vending/snack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apd" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apf" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"apg" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"aph" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"api" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apl" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apm" = ( -/obj/structure/closet/cardboard, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apn" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"apo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"app" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Detective" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"apr" = ( -/obj/machinery/button/door{ - id = "detshutters"; - name = "Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aps" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apt" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/brig) -"apu" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apv" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"apw" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/outpost) -"apx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apy" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"apC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apD" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apF" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Security Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apM" = ( -/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" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Security Electrical Maintenance APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apP" = ( -/turf/closed/wall, -/area/maintenance/secelectrical) -"apQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"apU" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apW" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/adamantine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apX" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apY" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqa" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "4" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/wirecutters, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqe" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqf" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqi" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aqj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqk" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aql" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqm" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqo" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqu" = ( -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqx" = ( -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqA" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"aqB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aqC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aqE" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Northeast" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqG" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqH" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqJ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqL" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqM" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqN" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6; - icon_state = "tracks"; - tag = "icon-tracks (SOUTHWEST)" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqR" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqU" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqY" = ( -/obj/machinery/door/airlock/security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ara" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arb" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"arc" = ( -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/space) -"ard" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ari" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ark" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arl" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arq" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arr" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"ars" = ( -/obj/structure/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"art" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aru" = ( -/obj/structure/closet/cardboard, -/obj/item/clothing/suit/jacket/miljacket, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"arv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arw" = ( -/obj/structure/table, -/obj/item/stack/ducttape, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/gold, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c50, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ary" = ( -/obj/structure/table/wood, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arz" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arA" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arB" = ( -/obj/machinery/camera{ - c_tag = "Detective's Office Backroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"arD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway North"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arN" = ( -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"arO" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod1" - }, -/turf/open/space, -/area/space) -"arP" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod2" - }, -/turf/open/space, -/area/space) -"arQ" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/labor) -"arR" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"arS" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/labor) -"arT" = ( -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/engine/port_engineering) -"arU" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southeast"; - dir = 9; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"arV" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/weapon/crowbar, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Red Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = 22; - pixel_y = -10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"arW" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel, -/area/bridge) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asb" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asc" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"asd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/lawoffice) -"asf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawshutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"asg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ash" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ask" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Dormitory APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aso" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ass" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_1) -"ast" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"asu" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_1) -"asv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_2) -"asw" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_2) -"asx" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_2) -"asy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/labor) -"asz" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"asA" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/stack/cable_coil, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"asB" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"asC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asE" = ( -/obj/structure/closet/crate, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asF" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plating, -/area/engine/port_engineering) -"asG" = ( -/obj/structure/table, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/engineering) -"asH" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"asI" = ( -/obj/structure/table, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"asJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asL" = ( -/obj/structure/sign/atmosplaque{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asM" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/lawoffice) -"asN" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/paicard, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asO" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/orange, -/obj/item/clothing/glasses/gglasses, -/turf/open/floor/wood, -/area/lawoffice) -"asP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/lawoffice) -"asQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asR" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor/carpet, -/area/lawoffice) -"asS" = ( -/turf/open/floor/carpet, -/area/lawoffice) -"asT" = ( -/obj/structure/rack, -/obj/item/weapon/storage/briefcase, -/obj/item/weapon/storage/briefcase, -/turf/open/floor/carpet, -/area/lawoffice) -"asU" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"asV" = ( -/obj/machinery/button/door{ - id = "lawshutters"; - name = "Privacy Shutters"; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"asZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"ata" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ate" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Pool APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"atf" = ( -/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/open/floor/plating, -/area/maintenance/fpmaint2) -"atg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ath" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_1) -"ati" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod1"; - shuttleId = "pod1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_2) -"atk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod2"; - shuttleId = "pod2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atl" = ( -/obj/item/stack/rods, -/turf/open/space, -/area/space) -"atm" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"atn" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ato" = ( -/obj/structure/closet/masks, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atp" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"atr" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"ats" = ( -/obj/effect/decal/cleanable/oil, -/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" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"att" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atu" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atx" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/item/weapon/storage/firstaid/surgery, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"aty" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/morphine, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/storage/firstaid/surgery{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"atz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"atA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atL" = ( -/turf/closed/wall, -/area/maintenance/commiespy) -"atM" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"atN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"atQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/turf/open/floor/carpet, -/area/lawoffice) -"atT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atU" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atV" = ( -/obj/machinery/camera{ - c_tag = "Pool North" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atW" = ( -/obj/structure/closet, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atX" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Law Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/lawoffice) -"atY" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue, -/obj/item/weapon/pen/red, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atZ" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/device/taperecorder, -/turf/open/floor/wood, -/area/lawoffice) -"aua" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/lawoffice) -"aub" = ( -/obj/structure/closet/crate, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/wood, -/area/lawoffice) -"auc" = ( -/obj/structure/closet, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/under/griffin, -/obj/item/clothing/head/griffin, -/obj/item/clothing/shoes/griffin, -/obj/item/clothing/suit/toggle/owlwings/griffinwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/pig, -/obj/item/clothing/head/chicken, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/wood, -/area/lawoffice) -"aud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet, -/area/lawoffice) -"aue" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/law, -/obj/item/weapon/pen/blue, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"auf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/med_data, -/turf/open/floor/carpet, -/area/lawoffice) -"aug" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/lawoffice) -"auh" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/lawoffice) -"aui" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/lawoffice) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (WEST)"; - icon_state = "yellowcornersiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"auk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aul" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aum" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"auo" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aup" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auq" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/open/floor/engine, -/area/gateway) -"aur" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aus" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1351; - name = "Science intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "Supply intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1355; - name = "Medical intercom"; - pixel_x = -27; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"aut" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1353; - name = "Command intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Stronk Russian APC"; - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/soviet, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auw" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aux" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_1) -"auy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod1"; - name = "escape pod 1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"auz" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_1) -"auA" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_2) -"auB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod2"; - name = "escape pod 2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"auC" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_2) -"auD" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/arrival) -"auE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) -"auF" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/arrival) -"auG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auH" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auI" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"auJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"auK" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"auL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Garden APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"auM" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/engine, -/area/gateway) -"auN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"auO" = ( -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auQ" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"auR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_access_txt = list(27,12) - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"auW" = ( -/obj/machinery/gateway, -/turf/open/floor/engine, -/area/gateway) -"auX" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway South"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"auY" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"ava" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avb" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avc" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avd" = ( -/turf/closed/wall, -/area/lawoffice) -"ave" = ( -/turf/closed/wall, -/area/maintenance/fsmaint2) -"avf" = ( -/obj/structure/falsewall, -/turf/open/floor/plating/airless, -/area/maintenance/fsmaint2) -"avg" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1447; - name = "AI Private intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/storage/photo_album, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avi" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/syndie, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avl" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"avm" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avn" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avo" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avp" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"avr" = ( -/obj/machinery/vending/boozeomat{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avs" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avt" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avu" = ( -/obj/machinery/door/window/southright{ - name = "Gateway Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"avv" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avw" = ( -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avx" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/diamond, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avG" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel Office APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/sleeper{ - dir = 4; - icon_state = "sleeper-open" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avL" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/camera{ - c_tag = "Arrivals Infirmary"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avM" = ( -/obj/structure/table/glass, -/obj/item/weapon/cultivator, -/obj/item/weapon/hatchet, -/obj/item/weapon/crowbar, -/obj/item/device/plant_analyzer, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avN" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"avO" = ( -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avP" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avS" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avT" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"avU" = ( -/obj/machinery/door/airlock/external{ - name = "Airlock"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avV" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1357; - name = "Engineering intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avW" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/clothing/tie/stethoscope, -/obj/item/device/camera, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer{ - desc = "These possibly cant be even letters, blyat!"; - name = "Russian computer" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avY" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avZ" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"awa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awb" = ( -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awc" = ( -/obj/item/trash/candy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awe" = ( -/obj/structure/rack, -/obj/item/weapon/gun/projectile/shotgun/toy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 1"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awg" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/arrival) -"awk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"awl" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awn" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awp" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awq" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aws" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"awu" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"awv" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aww" = ( -/obj/effect/landmark/start{ - name = "Mime" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"awx" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/white, -/area/mime) -"awy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/office) -"awA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awB" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/hallway/secondary/entry) -"awC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awE" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"awG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"awI" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"awK" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awP" = ( -/obj/machinery/door/window/northright{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"awQ" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"awS" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/library) -"awT" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/storage/tools) -"awU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"awV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"awW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"awX" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"awY" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"awZ" = ( -/obj/item/weapon/garrote, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"axa" = ( -/obj/machinery/vending/sustenance, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axb" = ( -/obj/machinery/computer/crew, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axc" = ( -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axd" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axe" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axf" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axg" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"axh" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axi" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axj" = ( -/turf/closed/wall/shuttle{ - blocks_air = 6; - dir = 1; - icon_state = "swall13" - }, -/area/shuttle/arrival) -"axk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/arrival) -"axl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"axm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"axo" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axr" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2) -"axs" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axt" = ( -/obj/structure/table/wood, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/rag, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axw" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/bandana/red, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axx" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"axz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axA" = ( -/obj/item/weapon/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axB" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"axC" = ( -/obj/item/weapon/storage/box, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"axD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"axJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axK" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/quartermaster/storage) -"axR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axT" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"axU" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/button/door{ - dir = 2; - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/assembly/robotics) -"axV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axW" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"axX" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axY" = ( -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"axZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency) -"aya" = ( -/turf/open/floor/wood, -/area/lawoffice) -"ayb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency) -"ayc" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency) -"ayd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency) -"aye" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"ayf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ayi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayk" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayl" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aym" = ( -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayn" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayo" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayq" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayr" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"ays" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayv" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayB" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"ayD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayE" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayG" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayL" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayM" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayN" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayP" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayR" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/labor) -"ayS" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"ayT" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/labor) -"ayU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ayZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"aza" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"azc" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/medical) -"azd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aze" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"azf" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"azg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"azi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"azj" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"azk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"azl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"azm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fsmaint2) -"azn" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fsmaint2) -"azo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"azp" = ( -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azq" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"azr" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azt" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azv" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azw" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azx" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark{ - name = "JoinLate" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azA" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azB" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Port Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Fore Port Solar Control"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azD" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azE" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - tag = "icon-manifold (WEST)"; - icon_state = "manifold"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azH" = ( -/obj/item/trash/sosjerky, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azL" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"azM" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azN" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azP" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azQ" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azS" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"azT" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"azU" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azV" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"aAb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAc" = ( -/mob/living/simple_animal/bot/cleanbot{ - desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; - name = "\improper Dumpy"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aAd" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Maint Bar Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"aAj" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "caution" - }, -/area/engine/break_room) -"aAk" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/engine/break_room) -"aAl" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/engine/break_room) -"aAm" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"aAn" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aAo" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aAp" = ( -/obj/machinery/camera{ - c_tag = "Engineering Checkpoint"; - dir = 8; - network = list("perma") - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"aAq" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aAr" = ( -/obj/machinery/the_singularitygen, -/turf/open/floor/plating/airless, -/area/space) -"aAs" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/space) -"aAt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aAu" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAw" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAx" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAy" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aAA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAC" = ( -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aAD" = ( -/obj/structure/table, -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAF" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAH" = ( -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod Hallway"; - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAK" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAL" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aAM" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aAN" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAO" = ( -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"aAP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAR" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAS" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAU" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/under/rank/bartender, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAW" = ( -/turf/closed/wall, -/area/maintenance/fpmaint) -"aAX" = ( -/obj/machinery/poolcontroller, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"aBz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aBA" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBC" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/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 = 32 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBD" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBE" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aBG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBH" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBJ" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aBK" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBL" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aBN" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBP" = ( -/obj/machinery/camera{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHEAST)"; - icon_state = "intact"; - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBS" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBU" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBV" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBW" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBX" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/tile/wood{ - amount = 25 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBY" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBZ" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCc" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aCr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/lawoffice) -"aCt" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCv" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCw" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/fsmaint2) -"aCx" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aCy" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"aCz" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCB" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCD" = ( -/obj/structure/closet, -/obj/item/ammo_box/foambox, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCE" = ( -/obj/structure/lattice, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aCF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCG" = ( -/obj/structure/closet/wardrobe/blue, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCH" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCI" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCL" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCQ" = ( -/obj/structure/bed, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCR" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCT" = ( -/obj/structure/table/wood/poker, -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCV" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDc" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aDd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aDe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aDh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDv" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Starboard Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDx" = ( -/obj/machinery/camera{ - c_tag = "Fore Starboard Solars"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint2) -"aDz" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDD" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aDG" = ( -/obj/structure/closet/wardrobe/pink, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDH" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDJ" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDK" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDP" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDQ" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aDR" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDT" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDU" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDW" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aEd" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEg" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEk" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEl" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aEm" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEA" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aEC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aED" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEE" = ( -/obj/structure/grille, -/obj/effect/landmark{ - name = "Syndicate Breach Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aEI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aEJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEK" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEM" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEN" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/weapon/coin/gold, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEQ" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aER" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aES" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"aET" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEU" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEV" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEW" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aEY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHWEST)"; - icon_state = "intact"; - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFe" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North Maintenance APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFf" = ( -/obj/machinery/monkey_recycler, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFg" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFh" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFs" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/bodybags, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFt" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFA" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFD" = ( -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFG" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFH" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFI" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFJ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFL" = ( -/turf/closed/wall, -/area/crew_quarters/pool) -"aFM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFQ" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"aFR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFS" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFX" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFY" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFZ" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGa" = ( -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGb" = ( -/obj/structure/closet, -/obj/item/weapon/coin/iron, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGc" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fpmaint2) -"aGm" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGo" = ( -/obj/structure/mineral_door/wood, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aGq" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGr" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGs" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGt" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aGw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aGH" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aGI" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aGM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/crew_quarters/sleep) -"aGN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/crew_quarters/sleep) -"aGO" = ( -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGQ" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHb" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHc" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHe" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHf" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHh" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHi" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHj" = ( -/turf/closed/wall, -/area/maintenance/electrical) -"aHk" = ( -/turf/closed/wall, -/area/space) -"aHl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space) -"aHm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHs" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHt" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHu" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aHw" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aHx" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHy" = ( -/obj/structure/chair/withwheels/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aHz" = ( -/obj/structure/closet/crate, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHA" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHB" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHC" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHE" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aHN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aHO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aHP" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHS" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aHV" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHW" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/toy/carpplushie, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aHZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding"; - icon_state = "yellowcornersiding" - }, -/area/crew_quarters/pool) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aIg" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIh" = ( -/obj/structure/table, -/obj/item/weapon/shard, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/shard{ - icon_state = "small" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIi" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIj" = ( -/obj/machinery/button/door{ - id = "maint3"; - name = "Blast Door Control C"; - pixel_x = 0; - pixel_y = 24; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIk" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIl" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIm" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10; - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIn" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIo" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIp" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/maintenance/electrical) -"aIq" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/maintenance/electrical) -"aIr" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aIs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIx" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space) -"aIy" = ( -/turf/open/floor/plating/airless, -/area/space) -"aIz" = ( -/obj/item/weapon/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/space) -"aIA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIB" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIC" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aID" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIF" = ( -/obj/machinery/button/door{ - id = "hobodorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIH" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aII" = ( -/obj/machinery/button/door{ - id = "hobodorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/fpmaint) -"aIJ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIN" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aIP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aIU" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIV" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aIX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIY" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aIZ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/poolfilter{ - pixel_y = 11 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aJb" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Holodeck" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJf" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJh" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJn" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJo" = ( -/turf/open/floor/plating, -/area/maintenance/electrical) -"aJp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aJt" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/arrival) -"aJu" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aJv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/arrival) -"aJx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJA" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJB" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJC" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/circuitboard/computer/operating, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJD" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/chair, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJF" = ( -/obj/item/weapon/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/space, -/area/space) -"aJG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJI" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm1"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aJK" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/item/weapon/bedsheet/brown, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aJL" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/weapon/bedsheet/orange, -/turf/open/floor/plasteel, -/area/maintenance/fpmaint) -"aJM" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/fpmaint) -"aJN" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm2"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJX" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aJY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aKa" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKb" = ( -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Dormitory North" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aKi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aKj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aKk" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/toy/poolnoodle/blue, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKl" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aKn" = ( -/obj/machinery/computer/holodeck, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKo" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aKs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKu" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKx" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/weapon/surgical_drapes, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKz" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"aKA" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKF" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKK" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKQ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKV" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"aKW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLb" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLe" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLf" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLg" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLh" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLi" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aLm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aLn" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/ladder, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLo" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/drain, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLp" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/Lboard, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLr" = ( -/obj/structure/table, -/obj/item/weapon/paper{ - desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aLs" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLt" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLu" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLw" = ( -/obj/machinery/button/door{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_x = -28; - pixel_y = 4; - req_access_txt = "0" - }, -/obj/machinery/button/door{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -28; - pixel_y = -6; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLx" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLy" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLz" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLI" = ( -/obj/structure/table, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aLL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-West"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLP" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLQ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-East"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLY" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLZ" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMa" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/bag/trash, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aMc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMs" = ( -/obj/structure/closet/crate/rcd, -/obj/machinery/camera/motion{ - c_tag = "EVA Motion Sensor"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/hand_labeler, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/item/clothing/head/welding, -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Storage APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMw" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/device/radio/off, -/obj/item/device/assembly/timer, -/obj/structure/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMx" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMy" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMz" = ( -/obj/item/device/aicard, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMB" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMC" = ( -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aME" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aMF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMG" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMI" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/violin, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMJ" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMK" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aML" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aMP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNb" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNc" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNd" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNi" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNj" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNk" = ( -/obj/structure/table/glass, -/obj/item/weapon/hemostat, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNl" = ( -/obj/structure/table/glass, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aNy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aNz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNA" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"aNC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aND" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNE" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNG" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/assembly/signaler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNH" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aNI" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aNK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aNQ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/clothing/under/shorts/red, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aNR" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOg" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOh" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOi" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aOl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOm" = ( -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aOn" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOo" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOp" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aOs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aOu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aOv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aOw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOy" = ( -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOD" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOH" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/patriot, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aOK" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/open/floor/engine, -/area/gateway) -"aOM" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/open/floor/engine, -/area/gateway) -"aON" = ( -/turf/open/floor/engine, -/area/gateway) -"aOO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOY" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aOZ" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aPa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 2 - }, -/area/crew_quarters/sleep) -"aPb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPe" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPf" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/toilet) -"aPi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPr" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPs" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPv" = ( -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPx" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPy" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aPA" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPB" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/space) -"aPD" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPE" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPF" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/security/checkpoint2) -"aPG" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPI" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint2) -"aPJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aPK" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPQ" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPT" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPV" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPY" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/primary) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQb" = ( -/obj/structure/bed/dogbed, -/obj/item/weapon/reagent_containers/food/drinks/flask/det{ - desc = "A Space Veteran's only friend."; - name = "space veteran's flask" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQc" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aQe" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/open/floor/engine, -/area/gateway) -"aQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/gateway) -"aQg" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aQh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aQi" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQj" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aQv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQw" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aQx" = ( -/turf/closed/wall, -/area/crew_quarters/toilet) -"aQy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aQA" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/table/glass, -/obj/item/clothing/under/shorts/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQD" = ( -/obj/machinery/camera{ - c_tag = "Pool South"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQH" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQI" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/bruise_pack, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/crew_quarters/pool) -"aQJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aQL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQN" = ( -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aQS" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/security/checkpoint2) -"aQT" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQW" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQX" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint2) -"aQY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRe" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRf" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRj" = ( -/turf/closed/wall, -/area/storage/primary) -"aRk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/primary) -"aRn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRo" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/turf/open/floor/engine, -/area/gateway) -"aRq" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"aRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aRs" = ( -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRv" = ( -/obj/item/weapon/pen{ - desc = "Writes upside down!"; - name = "astronaut pen" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRx" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRy" = ( -/obj/machinery/camera{ - c_tag = "EVA East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aRA" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aRB" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRD" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRI" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aRM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRO" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aRP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRT" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/weapon/lighter, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 8; - pixel_y = 9; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSf" = ( -/turf/closed/wall, -/area/chapel/main) -"aSg" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSh" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/chapel/main) -"aSi" = ( -/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 = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/chapel/main) -"aSj" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/turf/open/floor/plating, -/area/chapel/main) -"aSm" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSo" = ( -/turf/closed/wall, -/area/security/checkpoint2) -"aSp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSq" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSA" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSB" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSC" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSE" = ( -/obj/structure/table, -/obj/item/weapon/wirecutters, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSF" = ( -/obj/structure/table, -/obj/item/device/t_scanner, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSG" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSH" = ( -/obj/structure/table, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/item/device/multitool, -/obj/item/device/multitool{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSL" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSM" = ( -/turf/closed/wall, -/area/mime) -"aSO" = ( -/turf/closed/wall, -/area/clown) -"aSP" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSS" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aST" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSU" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aTa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Command EVA"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aTc" = ( -/obj/machinery/door/airlock/command{ - name = "Command EVA"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aTg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTj" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTm" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTn" = ( -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTo" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage" - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aTr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j1s"; - sortType = 18 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTu" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTw" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/chapel/main) -"aTF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aTH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTM" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTN" = ( -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/main) -"aTP" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aTS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTT" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Green Arrivals"; - name = "Nothing To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTU" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTV" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTW" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTX" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTZ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aUa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aUb" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aUj" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/plants{ - lootcount = 10; - name = "10plant_spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUk" = ( -/obj/machinery/door/airlock{ - name = "Garden"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUl" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aUm" = ( -/obj/machinery/camera{ - c_tag = "Mime Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/mime, -/turf/open/floor/plasteel/black, -/area/mime) -"aUn" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aUo" = ( -/obj/item/weapon/bedsheet/mime, -/obj/structure/bed, -/turf/open/floor/plasteel/black, -/area/mime) -"aUp" = ( -/obj/machinery/camera{ - c_tag = "Clown Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/clown, -/turf/open/floor/plasteel/green, -/area/clown) -"aUq" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aUr" = ( -/obj/item/weapon/bedsheet/clown, -/obj/structure/bed, -/turf/open/floor/plasteel/green, -/area/clown) -"aUs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUt" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUu" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/gateway) -"aUw" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper/pamphlet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUA" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUD" = ( -/obj/machinery/camera{ - c_tag = "Dormitory South"; - c_tag_order = 999; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aUF" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUK" = ( -/obj/structure/dresser, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUM" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUS" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUZ" = ( -/turf/closed/wall, -/area/library) -"aVa" = ( -/turf/closed/wall, -/area/chapel/office) -"aVc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aVd" = ( -/obj/structure/falsewall, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aVe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVg" = ( -/obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVh" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVi" = ( -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"aVk" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals No-Declare Lane"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aVl" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aVn" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Green Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = -22; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVo" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVq" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aVr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aVs" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals Declare Lane"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"aVQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mime Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/mime) -"aVR" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVS" = ( -/obj/effect/landmark/start{ - name = "Clown" - }, -/turf/open/floor/plasteel/green, -/area/clown) -"aVT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVX" = ( -/turf/open/floor/plasteel, -/area/gateway) -"aVY" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aWa" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWb" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWc" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/storage/eva) -"aWe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWh" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWi" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWk" = ( -/obj/structure/toilet{ - tag = "icon-toilet00 (WEST)"; - icon_state = "toilet00"; - dir = 8 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWl" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/weapon/lipstick/random, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWm" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWn" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWr" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aWJ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - sortType = 17 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/library) -"aWM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"aWN" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/library) -"aWO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/wood, -/area/library) -"aWP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/library) -"aWR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"aWS" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWU" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWV" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWW" = ( -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWX" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aWY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXb" = ( -/turf/open/floor/carpet, -/area/chapel/main) -"aXc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aXd" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aXe" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXf" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, -/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXg" = ( -/obj/effect/landmark{ - name = "Marauder Entry" - }, -/turf/open/space, -/area/space) -"aXh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXm" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXn" = ( -/obj/item/weapon/reagent_containers/spray/plantbgone, -/obj/item/weapon/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXo" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXq" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/obj/item/weapon/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXr" = ( -/obj/structure/window, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/black, -/area/mime) -"aXs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aXt" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/frame/computer{ - anchored = 1; - desc = "What, you can't see the screen?"; - name = "Mime's Computer" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"aXu" = ( -/obj/structure/reagent_dispensers/honk_cooler, -/turf/open/floor/plasteel/green, -/area/clown) -"aXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aXw" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/obj/item/weapon/bikehorn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aXx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Clown Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/clown) -"aXy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aXz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aXA" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel, -/area/gateway) -"aXB" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aXC" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aXK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aXL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXM" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXO" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXP" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXQ" = ( -/obj/structure/closet, -/obj/item/weapon/dnainjector/smilemut, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXR" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXU" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Bar APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXY" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/bar) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aYa" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYj" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hydroponics) -"aYk" = ( -/turf/closed/wall, -/area/hydroponics) -"aYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hydroponics) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYn" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/library) -"aYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library) -"aYp" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/camera{ - c_tag = "Library North"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/library) -"aYu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aYv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYw" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYx" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/office) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYD" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYE" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aYF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aYG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYJ" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aYN" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aYO" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYQ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Lounge"; - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYS" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYT" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYU" = ( -/obj/structure/table/glass, -/obj/item/weapon/hatchet, -/obj/item/weapon/cultivator, -/obj/item/weapon/crowbar, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYV" = ( -/obj/item/weapon/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/device/plant_analyzer, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYW" = ( -/obj/structure/table, -/obj/item/weapon/wrench, -/obj/item/device/analyzer, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYY" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZb" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/storage/primary) -"aZc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/storage/primary) -"aZd" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZe" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/mime) -"aZg" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/mime) -"aZh" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aZj" = ( -/obj/structure/statue/bananium/clown, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"aZk" = ( -/obj/machinery/button/door{ - dir = 2; - id = "gateway_shutters"; - name = "Gateway Access Button"; - pixel_x = 0; - pixel_y = -27; - req_access_txt = "47" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aZl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZm" = ( -/obj/machinery/camera{ - c_tag = "EVA South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZn" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aZp" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZs" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZt" = ( -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 40; - tag = "icon-direction_sec (NORTH)" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = 32; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 24; - tag = "icon-direction_evac (EAST)" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZu" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZv" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZw" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aZx" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"aZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/primary/central) -"aZz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"aZA" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZB" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZD" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aZF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aZG" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aZH" = ( -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/gun/projectile/revolver/doublebarrel, -/obj/structure/table/wood, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZJ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZK" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/bar) -"aZL" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZO" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/kitchen) -"aZP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/hydroponics) -"aZQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"aZR" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZS" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/paper/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/library) -"aZU" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aZV" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"aZW" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"aZX" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"aZY" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/library) -"baa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bab" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bac" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bad" = ( -/obj/structure/table/wood, -/obj/item/weapon/nullrod, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bae" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"baf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"bah" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bai" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bal" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"ban" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bao" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bap" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"baq" = ( -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bar" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bas" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bat" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bau" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"baw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"bax" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bay" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/mime) -"baz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/freezer{ - desc = "..."; - name = "Mime Office"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"baA" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/mime) -"baB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"baC" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/clown) -"baD" = ( -/obj/machinery/door/airlock/clown{ - name = "Clown Office"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"baE" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/clown) -"baF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baG" = ( -/obj/machinery/door/airlock/research{ - name = "Gateway Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/gateway) -"baJ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baL" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"baM" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"baN" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/lipstick, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baQ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baR" = ( -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baS" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Theatre Stage"; - dir = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baX" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baZ" = ( -/obj/machinery/camera{ - c_tag = "Bar Storage" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bba" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bbb" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbe" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/kitchen) -"bbf" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hydroponics) -"bbg" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbi" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbj" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbk" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbm" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/weapon/watertank, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbn" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/library) -"bbo" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bbp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/library) -"bbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbD" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bbE" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbF" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbH" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbL" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - name = "Port Hall APC"; - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcd" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bce" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-West"; - dir = 2 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bch" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bci" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bcj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bck" = ( -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"bcl" = ( -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"bcm" = ( -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"bcn" = ( -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"bco" = ( -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"bcp" = ( -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"bcq" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L13"; - name = "floor" - }, -/area/hallway/primary/central) -"bcr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bct" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bcv" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcw" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-East"; - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcz" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcA" = ( -/obj/structure/piano, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcG" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcI" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcL" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcM" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/wrench, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/wirecutters, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcT" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcU" = ( -/turf/open/floor/wood, -/area/library) -"bcV" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library) -"bcW" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bcY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bcZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"bda" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdb" = ( -/obj/machinery/light, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdc" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdd" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bde" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdf" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdg" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdk" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint South" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdn" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bdo" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdp" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdq" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdr" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bds" = ( -/turf/open/floor/goonplaque, -/area/hallway/secondary/entry) -"bdt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdK" = ( -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"bdL" = ( -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"bdM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"bdN" = ( -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"bdO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"bdP" = ( -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"bdQ" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L14" - }, -/area/hallway/primary/central) -"bdR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdU" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdX" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdY" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bea" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"beb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bec" = ( -/obj/machinery/vending/coffee, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bed" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bef" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics) -"bei" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"bej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bek" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/library) -"bel" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bem" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/library) -"beo" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bep" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"beq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"ber" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bes" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bet" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"beu" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bev" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bew" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bex" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0; - verted = -1 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bey" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Red Arrivals"; - name = "Items to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bez" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0; - verted = -1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"beA" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"beB" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beC" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beD" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beI" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 3"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beJ" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beK" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beP" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beY" = ( -/obj/structure/sign/directions/security{ - dir = 4; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_sec (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfd" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfe" = ( -/obj/machinery/light, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bff" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfi" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bfj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bfk" = ( -/obj/structure/closet/chefcloset, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfn" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfo" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfp" = ( -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfq" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/camera{ - c_tag = "Hydroponics North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bft" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfu" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/turf/open/floor/wood, -/area/library) -"bfv" = ( -/turf/open/floor/carpet, -/area/library) -"bfw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/library) -"bfx" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/turf/open/floor/wood, -/area/library) -"bfy" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bfA" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfB" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/device/camera, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfC" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfD" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bfE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfI" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Escape Arm Holding Area"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/hallway/secondary/exit) -"bfJ" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfK" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/exit) -"bfO" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bfP" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bfQ" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"bfR" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"bfS" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bfV" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bfW" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bga" = ( -/turf/closed/wall, -/area/maintenance/port) -"bgb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bgc" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"bgd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bge" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bgf" = ( -/turf/closed/wall, -/area/storage/art) -"bgg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/art) -"bgh" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/art) -"bgj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bgk" = ( -/turf/closed/wall, -/area/storage/emergency2) -"bgl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgm" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgq" = ( -/turf/closed/wall, -/area/storage/tools) -"bgr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bgt" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bgu" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgv" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgw" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgx" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgy" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgz" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgD" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgE" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgH" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bgI" = ( -/obj/machinery/door/airlock{ - name = "Kitchen cold room"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hydroponics) -"bgK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bgL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hydroponics) -"bgM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bgN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"bgO" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgP" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgQ" = ( -/obj/structure/cult/tome, -/obj/item/clothing/under/suit_jacket/red, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgR" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgS" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgV" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/hallway/secondary/exit) -"bgW" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgZ" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/exit) -"bha" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bhb" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhc" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhd" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhj" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bhk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bhl" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bho" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhp" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhs" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bht" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhv" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"bhx" = ( -/turf/open/floor/plasteel, -/area/storage/art) -"bhy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bhz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bhA" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bhB" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bhD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/turf/open/floor/plasteel, -/area/bridge) -"bhF" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/bridge) -"bhG" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/bridge) -"bhH" = ( -/obj/machinery/computer/monitor{ - name = "bridge power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/bridge) -"bhI" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bhJ" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bhK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bhL" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/bridge) -"bhM" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "green" - }, -/area/bridge) -"bhN" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/bridge) -"bhO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/wrench, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/bridge) -"bhP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhR" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhS" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhU" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhV" = ( -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhX" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhY" = ( -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bhZ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bia" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bib" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bic" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 2 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bid" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bie" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bif" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"big" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bih" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bij" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"bik" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bil" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bim" = ( -/obj/machinery/camera{ - c_tag = "Library South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/library) -"bin" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bio" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bip" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"biq" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bir" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bis" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bit" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"biu" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"biA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biD" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway Central"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"biI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biK" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biL" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biN" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biO" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"biP" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biQ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biR" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"biS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency2) -"biT" = ( -/turf/open/floor/plating, -/area/storage/emergency2) -"biU" = ( -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency2) -"biV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 24 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biY" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bja" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tools) -"bjc" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjd" = ( -/obj/structure/chair{ - dir = 1; - name = "Engineering Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bje" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjf" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/bridge) -"bjg" = ( -/obj/structure/chair{ - dir = 1; - name = "Command Station" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/keycard_auth{ - pixel_x = 29; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjh" = ( -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/bridge) -"bji" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/bridge) -"bjj" = ( -/obj/structure/chair{ - dir = 1; - name = "Crew Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/bridge) -"bjl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/bridge) -"bjm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Diner" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bjn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjr" = ( -/obj/item/stack/spacecash/c10{ - amount = 10 - }, -/obj/item/stack/spacecash/c100{ - amount = 5 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjs" = ( -/mob/living/carbon/monkey{ - name = "Pun Pun"; - real_name = "Pun Pun"; - unique_name = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjt" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bju" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjv" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjA" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bjB" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bjC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bjD" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bjH" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"bjI" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/library) -"bjJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjK" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjP" = ( -/obj/machinery/vending/cola, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bjQ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjU" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/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 = 32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjV" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 9; - height = 11; - id = "emergency_home"; - name = "emergency evac bay"; - width = 22 - }, -/turf/open/space, -/area/space) -"bjX" = ( -/turf/closed/wall/r_wall, -/area/rec_room) -"bjY" = ( -/turf/closed/wall, -/area/rec_room) -"bjZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/rec_room) -"bka" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bkb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkc" = ( -/turf/closed/wall, -/area/security/vacantoffice) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bke" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bkf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkh" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bki" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkj" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkk" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkm" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bko" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkp" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkq" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/turf/open/floor/plasteel, -/area/storage/art) -"bkr" = ( -/obj/structure/table, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bks" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bkt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency2) -"bku" = ( -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkv" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkw" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bky" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkA" = ( -/turf/open/floor/plasteel, -/area/storage/tools) -"bkB" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkC" = ( -/turf/closed/wall, -/area/bridge) -"bkD" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/bridge) -"bkE" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/bridge) -"bkF" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/bridge) -"bkG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/bridge) -"bkH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkI" = ( -/turf/open/floor/plasteel, -/area/bridge) -"bkJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/bridge) -"bkL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/bridge) -"bkM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/bridge) -"bkO" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/bridge) -"bkP" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/bridge) -"bkQ" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/bridge) -"bkR" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Bar West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkS" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkT" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkU" = ( -/obj/item/clothing/head/that{ - throwforce = 1; - throwing = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkV" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkW" = ( -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 8; - network = list("SS13") - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkX" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkY" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkZ" = ( -/obj/structure/table, -/obj/item/weapon/kitchen/rollingpin, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bla" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/chef_recipes, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/crew_quarters/kitchen) -"bld" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/hydroponics) -"ble" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"blf" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/hydroponics) -"blg" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"blh" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bli" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"blj" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/open/floor/wood, -/area/library) -"blk" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/library) -"blm" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/wood, -/area/library) -"bln" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/library) -"blo" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"blp" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"blq" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blr" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bls" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blt" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"blu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bly" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Recreation Room APC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"blz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/carpet, -/area/rec_room) -"blA" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/rec_room) -"blB" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/hallway/secondary/entry) -"blC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blE" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/hallway/secondary/entry) -"blF" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) -"blG" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blH" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blI" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blJ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blN" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/requests_console{ - department = "Locker Room"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blR" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blS" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blT" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blU" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blY" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bma" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmb" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bmc" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmd" = ( -/obj/machinery/camera{ - c_tag = "Bridge West"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/bridge) -"bme" = ( -/obj/structure/chair{ - dir = 1; - name = "Security Station" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/bridge) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bmi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bml" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmn" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/bridge) -"bmq" = ( -/obj/structure/chair{ - dir = 1; - name = "Logistics Station" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmr" = ( -/obj/machinery/camera{ - c_tag = "Bridge East"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/bridge) -"bms" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmu" = ( -/obj/machinery/camera{ - c_tag = "Bridge East Entrance"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmv" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bmw" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bmx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/weapon/reagent_containers/food/snacks/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar"; - name = "Bar Shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmy" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmz" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmA" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmC" = ( -/obj/machinery/processor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmE" = ( -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"bmH" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper, -/turf/open/floor/wood, -/area/library) -"bmI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bmK" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"bmL" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/library) -"bmM" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/library) -"bmN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bmO" = ( -/obj/machinery/camera{ - c_tag = "Chapel South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bmP" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bmR" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmS" = ( -/obj/machinery/door/window/northright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmT" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmU" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmV" = ( -/turf/open/floor/carpet, -/area/rec_room) -"bmW" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/rec_room) -"bmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmZ" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/rec_room) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bnb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnd" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bne" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bnf" = ( -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bng" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bni" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnj" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnk" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bnl" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnn" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnq" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bns" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Art Storage"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bny" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bnA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bnC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bnD" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port) -"bnE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"bnJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bnL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bnN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/bridge) -"bnQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnR" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnS" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnT" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnV" = ( -/obj/machinery/turretid{ - control_area = "AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Center"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnX" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnY" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Bridge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/bridge) -"boa" = ( -/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; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bob" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"boc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"boe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bof" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bog" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bok" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bol" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bom" = ( -/obj/item/weapon/lighter, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bon" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boo" = ( -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bop" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"boq" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bor" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 16 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bov" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bow" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"box" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"boy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/library) -"boz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"boC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"boF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"boH" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boI" = ( -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boK" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boL" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boN" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/wood, -/area/rec_room) -"boP" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/rec_room) -"boQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/bikehorn/airhorn, -/turf/open/floor/wood, -/area/rec_room) -"boR" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boS" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boT" = ( -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"boU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"boW" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"boZ" = ( -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"bpe" = ( -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpg" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bph" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpk" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/crew_quarters/locker) -"bpl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/crew_quarters/locker) -"bpn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpo" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Locker Room Maintenance APC"; - pixel_x = -27; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tools) -"bpz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/storage/tools) -"bpA" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpC" = ( -/obj/machinery/camera{ - c_tag = "Bridge West Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpD" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/hallway/primary/central) -"bpE" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bpF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bpG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpI" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bpK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_closed"; - locked = 0; - name = "AI Upload Access"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bpO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpP" = ( -/obj/machinery/ai_status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bpT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpU" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/hallway/primary/central) -"bpV" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Central Hall APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpX" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bpY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bpZ" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/button/door{ - id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqd" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqe" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bqf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/hydroponics) -"bqi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/library) -"bqn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/library) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqw" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "Scaley."; - name = "Robusts-Many-Faces" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bqx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqy" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/rec_room) -"bqz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/rec_room) -"bqA" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder/empty, -/turf/open/floor/wood, -/area/rec_room) -"bqB" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bqC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bqD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bqF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqH" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bqJ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqM" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqO" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqQ" = ( -/obj/structure/table, -/obj/item/weapon/razor, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqR" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqS" = ( -/obj/structure/closet, -/obj/item/clothing/under/suit_jacket/female{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/under/suit_jacket/really_black{ - pixel_x = -2; - pixel_y = 0 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqT" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bqW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqZ" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"brb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"brc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brg" = ( -/turf/closed/wall, -/area/quartermaster/office) -"brh" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bri" = ( -/turf/closed/wall/r_wall, -/area/bridge/meeting_room) -"brj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/bridge/meeting_room) -"brk" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = null; - req_access_txt = "19" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"brl" = ( -/turf/closed/wall, -/area/bridge/meeting_room) -"brm" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brn" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bro" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brp" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brq" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brr" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bru" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brv" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brw" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brx" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bry" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brz" = ( -/obj/machinery/camera{ - c_tag = "Bar South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brA" = ( -/obj/structure/noticeboard{ - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brB" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brC" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brE" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"brF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brH" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"brJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brM" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brO" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/library) -"brP" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/library) -"brQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"brS" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"brT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/library) -"brU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brV" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"brW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Escape shuttle Hallway"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"brY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"brZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsa" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsb" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsc" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bsd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bse" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bsf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bsg" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsh" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsi" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/crew_quarters/locker/locker_toilet) -"bsl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bso" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/stock_parts/cell{ - maxcharge = 2000 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsr" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bss" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/office) -"bst" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsu" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsv" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/office) -"bsw" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsx" = ( -/obj/machinery/button/door{ - id = "heads_meeting"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsy" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsz" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Conference Room"; - dir = 2 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsA" = ( -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsB" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsF" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/reset, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsH" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsI" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsN" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsP" = ( -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsQ" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsR" = ( -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsS" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bsT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsU" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsW" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/library) -"bsX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"bsY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bta" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btb" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "A Lizard Wizard!"; - name = "Merlin" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btc" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btd" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bte" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-l"; - icon_state = "stairs-l" - }, -/area/hallway/secondary/entry) -"btf" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"bth" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-stairs-r"; - icon_state = "stairs-r" - }, -/area/hallway/secondary/entry) -"bti" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Vacant Office APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/vacantoffice) -"btj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"btk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"btl" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btn" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bto" = ( -/obj/machinery/washing_machine, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btq" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btr" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"bts" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"btu" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"btv" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 5 - }, -/area/quartermaster/office) -"btw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btx" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bty" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btA" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btD" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btE" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btF" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btG" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/freeform, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload East"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btK" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btL" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btM" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btN" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btP" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 28; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 36; - tag = "icon-direction_sec (NORTH)" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btQ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btR" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btU" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btZ" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"buc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bud" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bue" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buf" = ( -/obj/structure/window, -/obj/structure/flora/ausbushes, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bug" = ( -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buh" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bui" = ( -/obj/structure/window, -/obj/machinery/vending/cola, -/turf/open/floor/carpet, -/area/rec_room) -"buj" = ( -/obj/structure/window, -/obj/machinery/vending/snack, -/turf/open/floor/carpet, -/area/rec_room) -"buk" = ( -/obj/structure/window, -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/carpet, -/area/rec_room) -"bul" = ( -/obj/structure/window, -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/rec_room) -"bum" = ( -/obj/structure/window, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/rec_room) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bup" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bur" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bus" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"but" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"buv" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"buy" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"buB" = ( -/obj/machinery/camera{ - c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"buC" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buD" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"buH" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"buI" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"buK" = ( -/obj/item/weapon/hand_labeler, -/obj/item/device/assembly/timer, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buL" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buM" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buN" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buO" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buQ" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"buS" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai_upload) -"buT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"buU" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"buV" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"buW" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"buX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bva" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bve" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvn" = ( -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bvo" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/turf/open/floor/carpet, -/area/rec_room) -"bvp" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/rec_room) -"bvq" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/rec_room) -"bvr" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"bvu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bvw" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvx" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvy" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port) -"bvz" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/item/clothing/suit/ianshirt, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker) -"bvB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bvC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvE" = ( -/obj/structure/closet/crate, -/obj/machinery/doorButtons, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvF" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvG" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvI" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bvJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bvM" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvN" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvO" = ( -/obj/item/weapon/folder/blue, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvQ" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/core/full/asimov, -/obj/item/weapon/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/corp, -/obj/item/weapon/aiModule/core/full/paladin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/aiModule/core/full/robocop, -/obj/item/weapon/aiModule/core/full/custom, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvR" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvS" = ( -/obj/machinery/computer/upload/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvT" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Upload APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvU" = ( -/obj/machinery/computer/upload/borg, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvW" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/oxygen, -/obj/item/weapon/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/weapon/aiModule/reset/purge, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/antimov, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/aiModule/supplied/protectStation, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwd" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/item/weapon/storage/lockbox/medal{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bwf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwg" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/science{ - dir = 4; - icon_state = "direction_sci"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_sci (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwi" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwj" = ( -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwl" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/hallway/primary/starboard) -"bwo" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwq" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bws" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwv" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bww" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/exit) -"bwx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwy" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bwA" = ( -/obj/machinery/camera{ - c_tag = "Escape Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwC" = ( -/obj/structure/easel, -/turf/open/floor/carpet, -/area/rec_room) -"bwD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwG" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/rec_room) -"bwH" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwI" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Recreation Room"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwK" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bwL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwM" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwN" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwO" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage"; - verted = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwU" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwV" = ( -/obj/machinery/camera{ - c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Locker Room APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bwX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bxa" = ( -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxb" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxc" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxd" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bxf" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bxg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxj" = ( -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxn" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxr" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxs" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxv" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxw" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxx" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxy" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxA" = ( -/obj/structure/table/wood, -/obj/item/weapon/pinpointer, -/obj/item/weapon/disk/nuclear, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxB" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bxC" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/medbay) -"bxD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bxE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxF" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxG" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bxH" = ( -/turf/closed/wall, -/area/medical/morgue) -"bxI" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bxJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxL" = ( -/turf/closed/wall, -/area/storage/emergency) -"bxM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/assembly/chargebay) -"bxO" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "loadingarea" - }, -/area/hallway/primary/starboard) -"bxP" = ( -/turf/closed/wall/r_wall, -/area/assembly/robotics) -"bxR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxS" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxT" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxU" = ( -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxV" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxX" = ( -/turf/closed/wall/r_wall, -/area/toxins/lab) -"bxY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bxZ" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bya" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byc" = ( -/obj/structure/easel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"byd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/rec_room) -"bye" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"byf" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byg" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byh" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/plants, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"byk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Disposal APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byo" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bys" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"byw" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byz" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/storage) -"byB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/office) -"byC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"byE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"byF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"byG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"byH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"byI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway West"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"byK" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Bridge Delivery"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/bridge/meeting_room) -"byL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byM" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"byQ" = ( -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byS" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"byV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Captain" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byW" = ( -/obj/machinery/computer/communications, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byX" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/coin/plasma, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byZ" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/camera, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bza" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzb" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Chemistry APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzd" = ( -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bze" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzf" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzg" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzh" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bzl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26; - req_access_txt = "5" - }, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/medical) -"bzm" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/medical) -"bzn" = ( -/obj/structure/filingcabinet, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/medical) -"bzo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzp" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzu" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bzv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bzw" = ( -/turf/closed/wall, -/area/assembly/chargebay) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bzy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/assembly/chargebay) -"bzz" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzA" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzB" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzC" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - closingLayer = 3.2; - dir = 2; - icon_state = "left"; - layer = 3.2; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzE" = ( -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"bzF" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bzG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bzH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - closingLayer = 3.2; - layer = 3.2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "rnd"; - name = "research lab shutters" - }, -/turf/open/floor/plating, -/area/toxins/lab) -"bzI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bzL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bzM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bzN" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bzP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/rec_room) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzS" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzV" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage"; - verted = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bAh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"bAj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAk" = ( -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/quartermaster/office) -"bAl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bAo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bAp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bAs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bAt" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/bridge/meeting_room) -"bAu" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bAv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/maintcentral) -"bAw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = -28 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAA" = ( -/obj/machinery/computer/card, -/obj/item/weapon/card/id/captains_spare, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAB" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/weapon/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAC" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAE" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bAG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bAJ" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bAK" = ( -/obj/machinery/computer/secure_data, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bAL" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAO" = ( -/turf/open/floor/plating, -/area/storage/emergency) -"bAP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency) -"bAQ" = ( -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency) -"bAR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bAS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAT" = ( -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAU" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/assembly/chargebay) -"bAV" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/chargebay) -"bAW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAY" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bBa" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBc" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBf" = ( -/obj/machinery/camera{ - c_tag = "Research Division Access"; - dir = 2; - network = list("SS13") - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/research{ - name = "Research Division" - }) -"bBg" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBh" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBi" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/button/door{ - dir = 2; - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/toxins/lab) -"bBj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bBl" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/secondary/entry) -"bBs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - density = 0; - dir = 4; - icon_state = "rightopen"; - layer = 3 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bBw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBy" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBz" = ( -/obj/machinery/mineral/stacking_unit_console{ - dir = 2; - machinedir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bBA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBB" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBH" = ( -/obj/structure/table, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBI" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBK" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBL" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBO" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = 24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBP" = ( -/obj/machinery/photocopier, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bBT" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bridge Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBV" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBW" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBY" = ( -/obj/structure/closet/secure_closet/freezer/money, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bBZ" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCc" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/folder/documents, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bCd" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCe" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCi" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCl" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bCm" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bCn" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCs" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bCT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bCU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCX" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDb" = ( -/turf/closed/wall, -/area/maintenance/asmaint2) -"bDc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 12; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space, -/area/space) -"bDd" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bDe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bDg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"bDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDk" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDl" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage"; - layer = 2.5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - layer = 3; - name = "disposal exit vent" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bDn" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bDt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDy" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDB" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDF" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"bDG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Head of Personnel APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bDL" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Conference Room APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bDN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Confrence Room South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bDO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bDQ" = ( -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDR" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bDS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bDU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"bDW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bDX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bDY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bEf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEg" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEi" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bEl" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bEm" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bEn" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/assembly/chargebay) -"bEo" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bEp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bEs" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEu" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEw" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bEy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEA" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEB" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEC" = ( -/obj/machinery/r_n_d/protolathe, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bEE" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEF" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEJ" = ( -/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 = 32 - }, -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bEL" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEM" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEO" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bER" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bES" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bET" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEW" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/port) -"bEY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bEZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bFa" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFf" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bFh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bFi" = ( -/obj/machinery/status_display{ - density = 0; - pixel_y = 2; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/office) -"bFj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bFl" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bFm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bFn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bFp" = ( -/turf/closed/wall, -/area/crew_quarters/heads) -"bFq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads) -"bFr" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads) -"bFs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads) -"bFt" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/champion, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bFu" = ( -/obj/item/weapon/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/weapon/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bFv" = ( -/turf/closed/wall, -/area/crew_quarters/captain) -"bFw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFz" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFA" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFE" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFH" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFI" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFJ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFK" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - req_access_txt = "5" - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFM" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/medical) -"bFP" = ( -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/medical) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"bFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bFY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bGf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bGg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/robotics) -"bGi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bGj" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGl" = ( -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGm" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bGn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGo" = ( -/obj/machinery/computer/rdconsole/core, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGp" = ( -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGq" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bGs" = ( -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bGz" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bGA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGB" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 3 & 4"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bGE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal) -"bGF" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - icon_state = "switch-rev"; - id = "garbage"; - name = "disposal coveyor"; - position = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGG" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGH" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGI" = ( -/obj/structure/closet, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGJ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGO" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bGQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGS" = ( -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGT" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGU" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGV" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGW" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bGX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bGY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGZ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/central) -"bHa" = ( -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 36 - }, -/obj/machinery/pdapainter, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bHb" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHc" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bed/dogbed{ - anchored = 1; - desc = "Ian's bed! Looks comfy."; - name = "Ian's bed" - }, -/mob/living/simple_animal/pet/dog/corgi/Ian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHf" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bHg" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bHh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault" - }, -/area/ai_monitored/nuke_storage) -"bHi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"bHj" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/gun/projectile/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bHk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bHl" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHn" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHq" = ( -/obj/structure/table/glass, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHs" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHt" = ( -/turf/closed/wall, -/area/medical/medbay) -"bHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bHx" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHy" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/medical) -"bHA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bHB" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6;5" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bHD" = ( -/turf/closed/wall, -/area/medical/genetics) -"bHE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bHJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bHK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHN" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bHO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHP" = ( -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHR" = ( -/obj/structure/table, -/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/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bHS" = ( -/turf/closed/wall, -/area/assembly/robotics) -"bHT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHV" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHW" = ( -/turf/closed/wall, -/area/toxins/lab) -"bHX" = ( -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/lab) -"bIb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bIc" = ( -/obj/item/weapon/stock_parts/console_screen, -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bId" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/lab) -"bIe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/lab) -"bIf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"bIj" = ( -/turf/closed/wall, -/area/toxins/shuttledock) -"bIk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s6"; - dir = 2 - }, -/area/shuttle/outpost) -"bIl" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/outpost) -"bIm" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bIn" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/outpost) -"bIo" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bIp" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIq" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bIr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bIs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bIu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIx" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/office) -"bIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bIC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bID" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/primary/central) -"bIE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bIF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hallway/primary/central) -"bIG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Reception Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bII" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bIN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIP" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIQ" = ( -/obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; - req_access_txt = "53" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bIR" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIU" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIW" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/matches, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/item/weapon/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIX" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/bikehorn/rubberducky, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bIY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIZ" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJb" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJc" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJd" = ( -/obj/structure/bed/roller, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bJe" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/medbay) -"bJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJo" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJp" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTHEAST)"; - icon_state = "whiteblue"; - dir = 5 - }, -/area/medical/genetics) -"bJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bJr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/weapon/storage/pill_bottle/mutadone, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJt" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bJu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJv" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJw" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bJx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bJy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJD" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/obj/item/weapon/hemostat, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bJF" = ( -/obj/structure/table, -/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/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bJG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bJH" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/research{ - name = "Research Division" - }) -"bJJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJK" = ( -/obj/item/weapon/folder/white, -/obj/structure/table, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJO" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJP" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/toxins/lab) -"bJQ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/lab) -"bJR" = ( -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bJT" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJU" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Science Outpost Dock APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bJX" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/outpost) -"bJY" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bJZ" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bKa" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_ss13"; - name = "SS13 Arrival Docking"; - width = 35 - }, -/turf/open/space, -/area/space) -"bKb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKc" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bKe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bKf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKi" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKj" = ( -/obj/machinery/autolathe, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKm" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKo" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKp" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bKq" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bKr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bKs" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bKt" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bKu" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKv" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Vault Access"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bKy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKz" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"bKD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKF" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bKH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bKK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKM" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor2"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKT" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKU" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKW" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKX" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bKY" = ( -/turf/open/floor/plasteel, -/area/medical/genetics) -"bKZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 14 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bLa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bLb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLf" = ( -/obj/structure/table, -/obj/item/weapon/circular_saw, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"bLh" = ( -/obj/machinery/button/door{ - dir = 2; - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bLi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/assembly/robotics) -"bLj" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bLm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLo" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLp" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/obj/machinery/camera{ - c_tag = "Experimentor Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLq" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLr" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLs" = ( -/obj/structure/closet/emcloset{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLw" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bLz" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bLA" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLC" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLD" = ( -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLE" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bLF" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/storage) -"bLG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bLH" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/device/multitool, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLK" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bLQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/ai_monitored/nuke_storage) -"bLR" = ( -/turf/closed/wall, -/area/teleporter) -"bLS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLT" = ( -/obj/structure/table, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bLU" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLV" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLW" = ( -/obj/machinery/camera{ - c_tag = "Teleporter" - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLY" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bMa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bMc" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/clothing/tie/stethoscope, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMn" = ( -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bMp" = ( -/obj/structure/table/glass, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor2"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMr" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bMs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bMt" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMu" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMw" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/chargebay) -"bMx" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 4 - }, -/area/assembly/robotics) -"bMy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMz" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMB" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bMD" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division North"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bML" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/explab) -"bMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMP" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"bMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bMZ" = ( -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bNa" = ( -/obj/machinery/door/airlock/shuttle{ - req_access_txt = "7" - }, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bNb" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost_home"; - name = "outpost shuttle bay"; - width = 7 - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost"; - name = "outpost shuttle"; - port_angle = 90; - width = 7 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall3" - }, -/area/shuttle/outpost) -"bNc" = ( -/obj/machinery/camera{ - c_tag = "Cargo Recieving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - dir = 2; - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bNd" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bNe" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/folder/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNj" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bNl" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bNm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNn" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/coin/gold, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNq" = ( -/turf/closed/wall, -/area/ai_monitored/nuke_storage) -"bNr" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/ai_monitored/nuke_storage) -"bNs" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bNv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bNw" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNx" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/ai_monitored/nuke_storage) -"bNy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bNA" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel, -/area/teleporter) -"bNC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bND" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bNG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bNI" = ( -/obj/structure/table, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNS" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNT" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNU" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/medical_cloning, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNV" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNY" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bNZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Monkey Pen"; - req_access_txt = "9" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOa" = ( -/obj/structure/window/reinforced, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOb" = ( -/turf/closed/wall/r_wall, -/area/assembly/chargebay) -"bOc" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bOd" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bOe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOk" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bOw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOy" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/white, -/area/toxins/shuttledock) -"bOz" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "supply bay"; - width = 12 - }, -/turf/open/space, -/area/space) -"bOA" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bOB" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bOC" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bOG" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bOH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOI" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/hop, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bON" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOQ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bOR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/teleporter) -"bOS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOT" = ( -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOU" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/teleporter) -"bOV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOW" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOX" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/teleporter) -"bOY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bOZ" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPb" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPc" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bPd" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/sleeper) -"bPe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bPf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera{ - c_tag = "Medbay Hallway"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPg" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/mutadone, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPh" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPj" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/disks, -/obj/item/device/radio/headset/headset_medsci, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPk" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 12 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bPn" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPp" = ( -/obj/machinery/camera{ - c_tag = "Research Division West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bPz" = ( -/turf/closed/wall, -/area/crew_quarters/hor) -"bPA" = ( -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPB" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPC" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPD" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bPG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPH" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light, -/obj/machinery/status_display{ - density = 0; - pixel_y = -30; - supply_display = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPK" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bPL" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bPM" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #4" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bPN" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPO" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPR" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"bPS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bPU" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bPV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bPW" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bPX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQc" = ( -/obj/machinery/button/door{ - id = "vaultshut"; - name = "Vault Shutters Control"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQe" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQg" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQh" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bQi" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/teleporter) -"bQj" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/teleporter) -"bQk" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/teleporter) -"bQl" = ( -/obj/structure/rack, -/obj/item/weapon/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/teleporter) -"bQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQn" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/medbay) -"bQo" = ( -/obj/machinery/door/window/eastleft{ - name = "Medical Delivery"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/medbay) -"bQp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQs" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQt" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQu" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bQv" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQw" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/sleeper) -"bQx" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQy" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQz" = ( -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQA" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bQF" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQG" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = 23 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQI" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/disk/tech_disk/gooncode, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQV" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQW" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQX" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bQY" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/crew_quarters/hor) -"bQZ" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/crew_quarters/hor) -"bRa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/explab) -"bRb" = ( -/turf/closed/wall, -/area/toxins/explab) -"bRc" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/book/manual/experimentor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRd" = ( -/obj/machinery/computer/rdconsole/experiment, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/toxins/explab) -"bRe" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRf" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/explab) -"bRg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRi" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s5"; - dir = 2 - }, -/area/shuttle/outpost) -"bRm" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/outpost) -"bRn" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bRo" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bRp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bRq" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bRt" = ( -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/supply) -"bRv" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"bRw" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/supply) -"bRx" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bRC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Vault Access"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/ai_monitored/nuke_storage) -"bRD" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South-East"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/sleeper) -"bRF" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = ""; - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bRG" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRH" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/sleeper) -"bRJ" = ( -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRL" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRN" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRP" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Genetics Research"; - req_access_txt = "5; 9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRS" = ( -/obj/machinery/camera{ - c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bRT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bRU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRV" = ( -/obj/machinery/camera{ - c_tag = "Genetics Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRW" = ( -/turf/closed/wall/r_wall, -/area/toxins/server) -"bRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bRY" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bSa" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/science) -"bSb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bSe" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/item/weapon/coin/uranium, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSf" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSg" = ( -/obj/machinery/computer/robotics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSh" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSi" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/crew_quarters/hor) -"bSj" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSk" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/hor) -"bSl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSo" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSp" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSs" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSu" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Dock APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSz" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bSC" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"bSD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSE" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/primary/central) -"bSJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSM" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bSN" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSO" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSP" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSQ" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Surgery Observation" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSS" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bST" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSU" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSV" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSY" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bTa" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTb" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTc" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTd" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (SOUTHEAST)"; - icon_state = "whiteblue"; - dir = 6 - }, -/area/medical/genetics) -"bTe" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bTf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTg" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTi" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"bTk" = ( -/obj/machinery/r_n_d/server/robotics, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTm" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bTn" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTo" = ( -/obj/machinery/camera{ - c_tag = "Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Server Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTp" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTq" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/science) -"bTs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTt" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of your own office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/science) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bTw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bTx" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/pen/blue, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTz" = ( -/obj/machinery/computer/mecha, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTA" = ( -/obj/structure/rack, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTB" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTD" = ( -/turf/open/floor/engine, -/area/toxins/explab) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTG" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTH" = ( -/obj/machinery/computer/cargo, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTK" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTN" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTS" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bUa" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUh" = ( -/obj/structure/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUk" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUl" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bUm" = ( -/obj/machinery/light, -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUr" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUs" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUt" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUu" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUv" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Server Room"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUx" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUy" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUz" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUA" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/science) -"bUC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUD" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUE" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/science) -"bUF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUH" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Research Director"; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUM" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUN" = ( -/obj/machinery/r_n_d/experimentor, -/turf/open/floor/engine, -/area/toxins/explab) -"bUO" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bUP" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bUQ" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/status_display{ - density = 0; - pixel_x = -32; - pixel_y = 0; - supply_display = 1 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUS" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUT" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUU" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUV" = ( -/obj/structure/filingcabinet, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bUX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bVb" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/supply) -"bVd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"bVe" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/supply) -"bVf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bVg" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South-West"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = -32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = -32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVu" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVw" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVE" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Recovery Room"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bVF" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVG" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVI" = ( -/turf/closed/wall, -/area/medical/cmo) -"bVJ" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVK" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVL" = ( -/obj/machinery/computer/med_data, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVP" = ( -/obj/machinery/r_n_d/server/core, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVR" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bVS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVT" = ( -/obj/machinery/computer/rdservercontrol, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVV" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/science) -"bVX" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVY" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVZ" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/science) -"bWa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/item/weapon/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWd" = ( -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/computer/card/minor/rd, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWe" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/signal/toxins, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("SS13","RD") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWf" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWh" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWi" = ( -/obj/machinery/camera{ - c_tag = "Experimentor Lab Chamber"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bWo" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bWp" = ( -/turf/closed/wall, -/area/storage/tech) -"bWq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/central) -"bWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/central) -"bWt" = ( -/turf/closed/wall, -/area/janitor) -"bWu" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bWv" = ( -/turf/closed/wall, -/area/maintenance/asmaint) -"bWw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"bWy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/weapon/surgicaldrill, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWz" = ( -/obj/structure/table, -/obj/item/weapon/hemostat, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWA" = ( -/obj/structure/table, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/obj/item/weapon/circular_saw, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWB" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWC" = ( -/obj/structure/table, -/obj/item/weapon/cautery{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWD" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/gun/syringe, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/soap/nanotrasen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bWF" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWG" = ( -/obj/structure/closet/wardrobe/white/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWH" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWI" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bWM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/cmo) -"bWN" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWO" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWP" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWR" = ( -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"bWS" = ( -/turf/closed/wall, -/area/toxins/storage) -"bWT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWV" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWX" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 - }, -/turf/open/space, -/area/space) -"bWZ" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Mining"; - departmentType = 0; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXk" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXl" = ( -/obj/structure/table, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/storage/tech) -"bXm" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXn" = ( -/obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 2 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Tech Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXo" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXp" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXq" = ( -/turf/open/floor/plating, -/area/storage/tech) -"bXr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bXt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bXu" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/plasteel, -/area/janitor) -"bXv" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/janicart, -/turf/open/floor/plasteel, -/area/janitor) -"bXx" = ( -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/janitor) -"bXy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bXz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXA" = ( -/turf/open/floor/plasteel, -/area/janitor) -"bXB" = ( -/obj/machinery/door/window/westleft{ - name = "Janitoral Delivery"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/janitor) -"bXC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/janitor) -"bXD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -25; - req_one_access_txt = "5" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXH" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXJ" = ( -/obj/structure/table, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bXL" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bXO" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXR" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bXT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXW" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXX" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/cmo, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXY" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/obj/item/clothing/tie/stethoscope, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bYa" = ( -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYb" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYd" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Misc Research APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYg" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYh" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYi" = ( -/turf/closed/wall, -/area/toxins/mixing) -"bYj" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/plasmaresearch, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYl" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab West"; - dir = 2; - network = list("SS13","RD"); - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/item/weapon/storage/firstaid/toxin, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYo" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/mixing) -"bYr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/toxins/mixing) -"bYs" = ( -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"bYt" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/mixing) -"bYy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/labor) -"bYz" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYG" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/aft) -"bYJ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYL" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYM" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYN" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/turf/open/floor/plating, -/area/storage/tech) -"bYO" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bYR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bYT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bYY" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/janitor) -"bYZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/janitor) -"bZa" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZb" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 6 - }, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZc" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZi" = ( -/obj/structure/table/optable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bZm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bZn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZo" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bZq" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZt" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZy" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZz" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZA" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/weapon/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZC" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/storage) -"bZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZF" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/mixing) -"bZH" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZP" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/mixing) -"bZQ" = ( -/turf/closed/indestructible, -/area/toxins/test_area) -"bZR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"bZS" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZT" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bZV" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"bZW" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZY" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cab" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cac" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cad" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cae" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"caf" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"cag" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cah" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/pandemic{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/computer/rdconsole, -/obj/item/weapon/circuitboard/machine/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/destructive_analyzer, -/obj/item/weapon/circuitboard/machine/protolathe, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/circuitboard/computer/aifixer, -/obj/item/weapon/circuitboard/computer/teleporter, -/obj/item/weapon/circuitboard/machine/circuit_imprinter, -/obj/item/weapon/circuitboard/machine/mechfab, -/turf/open/floor/plating, -/area/storage/tech) -"cai" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/mining, -/obj/item/weapon/circuitboard/machine/autolathe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/computer/arcade/battle, -/turf/open/floor/plating, -/area/storage/tech) -"caj" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/telecomms/processor, -/obj/item/weapon/circuitboard/machine/telecomms/receiver, -/obj/item/weapon/circuitboard/machine/telecomms/server, -/obj/item/weapon/circuitboard/machine/telecomms/bus, -/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, -/obj/item/weapon/circuitboard/computer/message_monitor{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cak" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cal" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/key/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"cam" = ( -/obj/structure/table, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"can" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/janitor) -"cao" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel, -/area/janitor) -"cap" = ( -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/mousetraps, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"caq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/janitor) -"car" = ( -/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/open/floor/plating, -/area/maintenance/asmaint) -"cas" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cat" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cau" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cav" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "Treatment Center APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"cax" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cay" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caz" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"caA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caB" = ( -/obj/machinery/vending/wallmed{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("SS13") - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/gun/syringe, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caE" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caG" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv4"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caH" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv4"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"caI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caL" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Medical Officer"; - req_access_txt = "40" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caN" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/cmo) -"caQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caS" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Toxins Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"caZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cba" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"cbb" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cbf" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/mixing) -"cbg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"cbi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cbj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbk" = ( -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cbl" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins"); - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cbm" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cbn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cbo" = ( -/obj/item/weapon/ore/iron, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbp" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbq" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cbs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbt" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbu" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"cbv" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cby" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbA" = ( -/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 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/janitor) -"cbI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/janitor) -"cbJ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbL" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbQ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbR" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbS" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Surgery Operating"; - dir = 1; - network = list("SS13"); - pixel_x = 22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbV" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbW" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbX" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbY" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cca" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccb" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = -30; - pixel_z = 0 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccc" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/brute, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccd" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cce" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccg" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cch" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cci" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"cck" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/weapon/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/weapon/cartridge/medical, -/obj/item/weapon/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccl" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccn" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"cco" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"ccp" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ccq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"cct" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"ccu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccw" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccx" = ( -/obj/item/device/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccy" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccA" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"ccJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible, -/area/toxins/test_area) -"ccL" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccM" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccN" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccO" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_angle = 90; - width = 7 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"ccP" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"ccQ" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccU" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccW" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"ccX" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/storage/tech) -"ccY" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/cloning{ - pixel_x = 0 - }, -/obj/item/weapon/circuitboard/computer/med_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/clonescanner, -/obj/item/weapon/circuitboard/machine/clonepod, -/obj/item/weapon/circuitboard/computer/scan_consolenew, -/turf/open/floor/plating, -/area/storage/tech) -"ccZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cda" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/powermonitor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/stationalert{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/computer/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdb" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cde" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdn" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cds" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"cdt" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdv" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/shieldwallgen{ - req_access = list(55) - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cdw" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdx" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdy" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdz" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdA" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdB" = ( -/turf/closed/wall, -/area/toxins/xenobiology) -"cdC" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"cdD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdG" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdH" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdI" = ( -/obj/item/device/assembly/signaler{ - pixel_x = 0; - pixel_y = 8 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdJ" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdK" = ( -/obj/item/device/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/assembly/timer{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdL" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdO" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/mixing) -"cdP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cdQ" = ( -/obj/machinery/camera{ - c_tag = "Toxins Launch Room Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cdR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cdS" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/mixing) -"cdT" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdU" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdW" = ( -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cdX" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdY" = ( -/obj/item/weapon/ore/silver, -/obj/item/weapon/ore/silver, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cdZ" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock External"; - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cea" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"ceb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cec" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/pickaxe{ - pixel_x = 5 - }, -/obj/item/weapon/shovel{ - pixel_x = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ced" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cee" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cef" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ceg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"ceh" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cei" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cej" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/storage/tech) -"cek" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/storage/tech) -"cel" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cen" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tech) -"ceo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cer" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"ces" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"cet" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"ceu" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cev" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cew" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cex" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cey" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cez" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceC" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceF" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay) -"ceG" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceH" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room 2"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay) -"ceK" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceL" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "CM Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceP" = ( -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceQ" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Xeno"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceR" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 0; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceS" = ( -/obj/machinery/door/window/southleft{ - name = "Test Chamber"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceU" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceW" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/toxins/xenobiology) -"ceX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceZ" = ( -/obj/machinery/camera{ - c_tag = "Research Division South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cfa" = ( -/obj/structure/sign/fire, -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"cfb" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cfc" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfd" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/toxins/mixing) -"cff" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfg" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfh" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfi" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cfj" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - light = null; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien{ - anchored = 1 - }, -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfk" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/labor) -"cfl" = ( -/obj/structure/ore_box, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cfm" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfp" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/turf/open/floor/plating, -/area/storage/tech) -"cfq" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfr" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/turf/open/floor/plating, -/area/storage/tech) -"cfs" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/device/t_scanner, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cft" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfu" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cfv" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/storage/tech) -"cfw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 2"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cfy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cfz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cfA" = ( -/turf/closed/wall/r_wall, -/area/atmos) -"cfB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfE" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/atmos) -"cfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfK" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfM" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv1"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfN" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv1"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfX" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfZ" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cga" = ( -/obj/machinery/processor{ - desc = "A machine used to process slimes and retrieve their extract."; - name = "Slime Processor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgb" = ( -/obj/machinery/smartfridge/extract, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgc" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgd" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cge" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgf" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cgh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/research{ - name = "Research Division" - }) -"cgi" = ( -/obj/machinery/door/poddoor{ - id = "mixvent2"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgk" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cgm" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor2"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller{ - airpump_tag = "tox_airlock_pump2"; - exterior_door_tag = "tox_airlock_exterior2"; - id_tag = "tox_airlock_control"; - interior_door_tag = "tox_airlock_interior2"; - pixel_x = -24; - pixel_y = 0; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cgo" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cgp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cgq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgr" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgs" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"cgv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cgw" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/hallway/primary/aft) -"cgx" = ( -/turf/closed/wall, -/area/atmos) -"cgy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/atmos) -"cgz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgD" = ( -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/atmos) -"cgE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cgF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "wloop_atm_meter"; - name = "Waste Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 2 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "dloop_atm_meter"; - name = "Distribution Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Distro"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgL" = ( -/turf/open/floor/plasteel, -/area/atmos) -"cgM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgN" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgO" = ( -/turf/closed/wall, -/area/medical/virology) -"cgP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cgQ" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/medical/virology) -"cgR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cha" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"chb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"chc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"chd" = ( -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"che" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior2"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chf" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump2" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chg" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior2"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chi" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab East"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"chk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chl" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cho" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chp" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chq" = ( -/turf/closed/wall, -/area/construction) -"chr" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction) -"chs" = ( -/turf/open/floor/plating, -/area/construction) -"cht" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction) -"chu" = ( -/turf/open/floor/plasteel, -/area/construction) -"chv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/construction) -"chw" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"chx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Monitoring"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/atmos) -"chB" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"chF" = ( -/obj/machinery/pipedispenser/disposal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chG" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chN" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/atmos) -"chO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"chP" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chQ" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/machinery/camera{ - c_tag = "Virology Break Room" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chS" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/virology) -"chU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chV" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/virology) -"chW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chX" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cia" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"cib" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cic" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cid" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cie" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cig" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cih" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cik" = ( -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cil" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cim" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/button/door{ - id = "mixvent2"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access_txt = "7" - }, -/obj/machinery/button/ignition{ - id = "mixingsparker2"; - pixel_x = -25; - pixel_y = -5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cio" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cip" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ciq" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cir" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/aft) -"cis" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction) -"cit" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/construction) -"ciu" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"civ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ciw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/aft) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"ciz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/atmos) -"ciA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciB" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciD" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ciE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/atmos) -"ciF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/autolathe/atmos, -/turf/open/floor/plasteel, -/area/atmos) -"ciG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/atmos) -"ciH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciI" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Waste In"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciN" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"ciO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Mix"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/atmos) -"ciR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"ciT" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"ciU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "waste_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciV" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciW" = ( -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ciY" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ciZ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cja" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjc" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cjg" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cji" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjj" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjk" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjn" = ( -/obj/structure/table, -/obj/item/weapon/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjp" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjq" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cjt" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cju" = ( -/turf/closed/wall, -/area/toxins/misc_lab) -"cjv" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjw" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjx" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjy" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjz" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cjA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cjC" = ( -/obj/item/weapon/shard, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cjD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjE" = ( -/obj/structure/girder, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjF" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"cjG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjH" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"cjL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjM" = ( -/obj/structure/closet/crate, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/construction) -"cjO" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"cjQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Construction Area"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cjU" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cjV" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cjW" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cka" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ckb" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ckc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cke" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cki" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckl" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckm" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/atmos) -"ckn" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cko" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/atmos) -"ckp" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor"; - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckr" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cks" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckt" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cku" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -28; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckx" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cky" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckz" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckB" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckC" = ( -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckD" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"ckE" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckF" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/camera{ - c_tag = "Testing Lab North"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckH" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - req_access = null - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckM" = ( -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"ckN" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ckO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckQ" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckR" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckX" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"ckY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"ckZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cla" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "left"; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"clc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cle" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clf" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"clg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/atmos) -"cli" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cll" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cln" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Unfiltered to Mix"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cls" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 6 - }, -/area/atmos) -"clt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"clv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "waste_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"clw" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cly" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"clB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clE" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clK" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"clM" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/electropack, -/obj/item/device/healthanalyzer, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clN" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clR" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/target_stake, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"clS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"clT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"clU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/aft) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/rack, -/obj/item/clothing/head/cone, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/aft) -"clW" = ( -/obj/item/weapon/storage/secure/safe, -/turf/closed/wall, -/area/maintenance/aft) -"clX" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clY" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - tag = "icon-connector_map (WEST)"; - icon_state = "connector_map"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cma" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cme" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmf" = ( -/obj/machinery/camera{ - c_tag = "Construction Area"; - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmg" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/construction) -"cmh" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plating, -/area/construction) -"cmi" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/construction) -"cmj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cmk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cml" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plating, -/area/atmos) -"cmm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cmo" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/atmos) -"cmp" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/atmos) -"cmq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/turf/open/floor/plasteel, -/area/atmos) -"cmr" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cmt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmv" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmH" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Virology APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Virology Module" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmI" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmJ" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmL" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cmN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmR" = ( -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmS" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmU" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmV" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/toxins/misc_lab) -"cmY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cmZ" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses/garb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cna" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/clothing/tie/black, -/obj/item/clothing/tie/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/skull, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cne" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cng" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cni" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"cnj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnl" = ( -/obj/machinery/power/apc{ - name = "Aft Hall APC"; - dir = 8; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cnm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnn" = ( -/obj/item/weapon/crowbar, -/obj/item/weapon/wrench, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"cno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/atmos) -"cnp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/atmos) -"cnq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnt" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 5 - }, -/area/atmos) -"cny" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnz" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2O Tanks" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnA" = ( -/turf/open/floor/engine/n2o, -/area/atmos) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/medical/virology) -"cnE" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnI" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnK" = ( -/obj/structure/disposalpipe/segment, -/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/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cnL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnM" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnS" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnT" = ( -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnU" = ( -/obj/structure/target_stake, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnV" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cnW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnX" = ( -/obj/machinery/door/window{ - dir = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/storage/box/cups, -/turf/open/floor/plating, -/area/maintenance/aft) -"coa" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cob" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coc" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cof" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cog" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cok" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Construction Area APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"col" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Telecoms Monitoring APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"com" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"con" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 8 - }, -/area/atmos) -"cop" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"coq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cor" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cou" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to External"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cov" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cow" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cox" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/atmos) -"coy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Pure to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coD" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 4 - }, -/area/atmos) -"coE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coF" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/atmos) -"coG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coK" = ( -/obj/machinery/smartfridge/chemistry/virology, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coM" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"coO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation A"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coP" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"coQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall, -/area/toxins/xenobiology) -"coS" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coT" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coV" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coW" = ( -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"coX" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coY" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coZ" = ( -/obj/machinery/camera{ - c_tag = "Testing Firing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpa" = ( -/obj/structure/target_stake, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpb" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall, -/area/maintenance/aft) -"cpc" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpd" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cpg" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cph" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cpk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cpo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/atmos) -"cpp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "External to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/atmos) -"cps" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/atmos) -"cpt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/atmos) -"cpu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cpw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpx" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 6 - }, -/area/atmos) -"cpz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cpA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cpB" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = -32 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpF" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cpJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpK" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpM" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cpP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/misc_lab) -"cpQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpR" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cpS" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cpT" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cpU" = ( -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpW" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Telecoms Server APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpY" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpZ" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqa" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqb" = ( -/obj/machinery/computer/message_monitor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cqc" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqe" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cqg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqj" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cqk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cql" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics West"; - dir = 8; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqo" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cqp" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqr" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Virologist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqs" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"cqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqv" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqx" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqy" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqA" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqB" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqC" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqD" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqE" = ( -/obj/structure/rack, -/obj/item/weapon/wrench, -/obj/item/weapon/crowbar, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Test"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet, -/obj/item/pipe{ - dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cqJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/weapon/paper/range, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHEAST)"; - icon_state = "warnplate"; - dir = 6 - }, -/area/toxins/misc_lab) -"cqK" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHWEST)"; - icon_state = "warnplate"; - dir = 10 - }, -/area/toxins/misc_lab) -"cqL" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cqM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqO" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/aft) -"cqP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/pill/mannitol, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqR" = ( -/turf/closed/wall, -/area/maintenance/strangeroom) -"cqS" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cqT" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqU" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqW" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqX" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqZ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cra" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"crf" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"crg" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/atmos) -"crh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/engineering) -"cri" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/engineering) -"crj" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/engineering) -"crk" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crl" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"crm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"crn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"cro" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crp" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/atmos) -"crq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crr" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Plasma Tank" - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crs" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cru" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"crv" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - anchored = 1; - density = 0; - pixel_x = -30 - }, -/obj/item/weapon/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cry" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"crA" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crC" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"crD" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crE" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crF" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crL" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"crP" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crQ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/color/lightpurple, -/obj/item/stack/spacecash/c200, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crT" = ( -/obj/effect/decal/cleanable/shreds, -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"crU" = ( -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crV" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crW" = ( -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crX" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crY" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crZ" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csa" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"csb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csd" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csn" = ( -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"cso" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/atmos) -"csp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"csq" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "tox_in"; - name = "Toxin Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/atmos) -"csr" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor"; - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"css" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cst" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"csu" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"csx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology South"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - unacidable = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"csD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"csE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csF" = ( -/obj/structure/rack, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"csH" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csK" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"csL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csM" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (SOUTHWEST)"; - icon_state = "tracks"; - dir = 10 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"csP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (NORTHEAST)"; - icon_state = "tracks"; - dir = 5 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csT" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csU" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csV" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/tcommsat/computer) -"csW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csX" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cta" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"ctc" = ( -/turf/closed/wall, -/area/engine/break_room) -"ctd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cte" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cth" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cti" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"ctj" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"ctk" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"ctl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/item/weapon/wrench, -/turf/open/floor/plasteel, -/area/atmos) -"cto" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"ctp" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"ctr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cts" = ( -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"ctt" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"ctu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctv" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"ctx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/weapon/wrench, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 9 - }, -/area/maintenance/asmaint) -"cty" = ( -/obj/machinery/atmospherics/components/binary/valve/open{ - tag = "icon-mvalve_map (EAST)"; - icon_state = "mvalve_map"; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/asmaint) -"ctz" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint) -"ctA" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctD" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ctE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctF" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ctG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"ctH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/misc_lab) -"ctI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"ctJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctK" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctM" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"ctN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/r_leg, -/obj/item/bodypart/r_arm, -/obj/item/weapon/shard, -/obj/item/weapon/hatchet, -/obj/item/weapon/staplegun, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctO" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/l_leg, -/obj/item/bodypart/l_arm, -/obj/item/weapon/restraints/handcuffs, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"ctR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"ctS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"ctU" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctV" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/bluegrid{ - dir = 8; - icon_state = "vault"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cua" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cub" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cuc" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cud" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/tcommsat/computer) -"cue" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cuf" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Telecoms Monitoring"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cui" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cuj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuk" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cul" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cum" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"cun" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cuo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cup" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cuq" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/engineering) -"cur" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/engineering) -"cus" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/engineering) -"cut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cuu" = ( -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuv" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/atmos) -"cux" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuA" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuF" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 10 - }, -/area/maintenance/asmaint) -"cuG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cuH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 6 - }, -/area/maintenance/asmaint) -"cuI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuM" = ( -/obj/machinery/sparker{ - id = "testigniter"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuN" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cuU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Testing Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cuV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cuW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cuX" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuY" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuZ" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel{ - tag = "icon-damaged5"; - icon_state = "damaged5" - }, -/area/maintenance/strangeroom) -"cva" = ( -/obj/machinery/camera{ - c_tag = "Telecoms Server Room"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cvb" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvc" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/tcommsat/computer) -"cve" = ( -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecoms Admin"; - departmentType = 5; - name = "Telecoms RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvh" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cvi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cvk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cvp" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/plasteel, -/area/atmos) -"cvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/atmos) -"cvr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"cvs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvt" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/weapon/cigbutt, -/turf/open/floor/plasteel, -/area/atmos) -"cvu" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/atmos) -"cvw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvx" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics CO2 Tank" - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvy" = ( -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvD" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvG" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvH" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cvI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cvJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvK" = ( -/obj/machinery/camera{ - c_tag = "Testing Chamber"; - dir = 1; - network = list("Test","RD"); - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cvL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"cvM" = ( -/obj/machinery/camera{ - c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvN" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvO" = ( -/obj/structure/closet/crate, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cvQ" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cvS" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvT" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/strangeroom) -"cvV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/strangeroom) -"cvW" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cvX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cvY" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/chem_pile, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cvZ" = ( -/obj/machinery/message_server, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwa" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwb" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwc" = ( -/obj/structure/table, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cwd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwe" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cwg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"cwn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwt" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwu" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cwv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cww" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cwy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwz" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/atmos) -"cwA" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor"; - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwE" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwF" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cwR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cwU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cwX" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/spirit_board, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cxd" = ( -/obj/structure/closet/crate/secure, -/obj/item/weapon/restraints/handcuffs, -/obj/item/weapon/pen, -/obj/item/weapon/paper{ - info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; - name = "Strange Paper" - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/strangeroom) -"cxe" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"cxf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gibber, -/turf/open/floor/plasteel, -/area/maintenance/strangeroom) -"cxg" = ( -/obj/machinery/vending/cart{ - desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; - icon_state = "cart-broken"; - name = "Old Machine"; - product_slogans = "Bzzzt..-6-4-!"; - products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cxh" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxi" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxj" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxk" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxl" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cxm" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxx" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxC" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxD" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cxF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cxG" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - pixel_x = 0; - pixel_y = 0; - target_pressure = 4500 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = 3; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/atmos) -"cxK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cxL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxP" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cxY" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxZ" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cya" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyc" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyd" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cye" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyk" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyl" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cym" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cyn" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"cyo" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyr" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/hallway/primary/aft) -"cys" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyt" = ( -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyv" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/break_room) -"cyy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyB" = ( -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cyG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cyI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/atmos) -"cyK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Incinerator APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cyL" = ( -/obj/structure/sign/fire{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cyN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyO" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyP" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyX" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyZ" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cza" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czb" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czc" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czd" = ( -/obj/item/clothing/under/rank/vice, -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/aft) -"cze" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"czi" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czj" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/chiefs_office) -"czl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/engine/break_room) -"czm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/break_room) -"czn" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/engine/break_room) -"czo" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"czp" = ( -/turf/closed/wall, -/area/maintenance/incinerator) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/incinerator) -"czr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"czs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/toy/minimeteor, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czt" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/snacks/donkpocket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/c_tube, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czw" = ( -/obj/structure/mopbucket, -/obj/item/weapon/caution, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Air Supply Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"czB" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/maintenance/portsolar) -"czE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"czF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"czG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czI" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czN" = ( -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/engine/chiefs_office) -"czO" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czQ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czS" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 4; - name = "CE Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/engineering) -"czV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/engineering) -"czW" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/atmos) -"czX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/atmos) -"czY" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"czZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAa" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - filter_type = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAd" = ( -/obj/machinery/chem_master, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAe" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/kitchenspike_frame, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAh" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAi" = ( -/obj/structure/table/wood, -/obj/item/weapon/retractor/alien, -/obj/item/weapon/reagent_containers/glass/bowl, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAj" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"cAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cAy" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAz" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAD" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cAE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAF" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAG" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"cAI" = ( -/obj/machinery/camera{ - c_tag = "Aft Port Solar Access"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAP" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAT" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cAU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAW" = ( -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/atmos) -"cAY" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/atmos) -"cAZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/atmos) -"cBa" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/atmos) -"cBb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/atmos) -"cBc" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/atmos) -"cBd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/atmos) -"cBe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 10 - }, -/area/atmos) -"cBf" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1443; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "arrival" - }, -/area/atmos) -"cBg" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 6 - }, -/area/atmos) -"cBh" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cBi" = ( -/turf/open/floor/plating, -/area/atmos) -"cBj" = ( -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBk" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/incinerator) -"cBl" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/incinerator) -"cBn" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/lighter/greyscale, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"cBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBq" = ( -/obj/structure/chair, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBr" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cBv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBE" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cBH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBV" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBZ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCb" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCd" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCf" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCg" = ( -/turf/closed/wall, -/area/engine/engineering) -"cCh" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCi" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCj" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCk" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/paper/monitorkey, -/obj/item/weapon/coin/plasma, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCn" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCo" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCq" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCy" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCC" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical, -/obj/item/pizzabox/mushroom, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCH" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCN" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/switchblade{ - force = 12 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCQ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cCR" = ( -/obj/machinery/power/solar_control{ - id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCS" = ( -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Aft Port Solar APC"; - pixel_x = 23; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCY" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cCZ" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cDa" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cDb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDd" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDi" = ( -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/computer/card/minor/ce, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDj" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDl" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space, -/area/space) -"cDq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space, -/area/space) -"cDr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space, -/area/space) -"cDs" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/maintenance/incinerator) -"cDt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/tie/black, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDx" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDz" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDA" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/shard, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDB" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDC" = ( -/obj/structure/closet, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDD" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDE" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cDH" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDI" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cDJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDU" = ( -/obj/item/weapon/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/item/weapon/cartridge/atmos, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDV" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cDY" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_in_meter"; - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cDZ" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_out_meter"; - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cEa" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEb" = ( -/obj/item/clothing/head/cone, -/obj/item/weapon/restraints/handcuffs/cable/orange, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Biohazard Disposals"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEf" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cEg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEh" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEk" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEl" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEn" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEA" = ( -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/weapon/circuitboard/computer/solar_control, -/obj/item/weapon/electronics/tracker, -/obj/item/weapon/paper/solar, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEB" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cED" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEF" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cEG" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"cEI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEM" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEP" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cER" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cES" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor"; - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 0; - frequency = 1443; - icon_state = "vent_map"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cEU" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEV" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/incinerator) -"cEW" = ( -/obj/item/clothing/suit/toggle/labcoat/mad, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEX" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cEY" = ( -/obj/structure/table/wood, -/obj/item/organ/internal/butt/xeno, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - tag = "icon-manifold (NORTH)"; - icon_state = "manifold"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFf" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFl" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFr" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFs" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFu" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cFv" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cFw" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cFx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/engine/engineering) -"cFz" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cFC" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFD" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/wrench, -/obj/item/weapon/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cFJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFK" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFL" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFM" = ( -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics O2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFP" = ( -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Air-mix Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFS" = ( -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFT" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFU" = ( -/obj/item/weapon/kitchen/knife, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFV" = ( -/obj/structure/table/wood, -/obj/item/weapon/scalpel, -/obj/item/weapon/wirecutters, -/obj/item/organ/brain/alien, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFW" = ( -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFX" = ( -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFY" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGb" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGd" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGe" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGh" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGi" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cGj" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cGn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGo" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGp" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGq" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/engine/engineering) -"cGs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cGt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGu" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGE" = ( -/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/open/floor/plasteel, -/area/engine/engineering) -"cGF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGI" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cGJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cGK" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cGL" = ( -/obj/structure/table/wood, -/obj/item/weapon/hatchet, -/obj/item/weapon/lighter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cGM" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGN" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/crowbar, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGO" = ( -/obj/item/weapon/bedsheet/cult, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGP" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGT" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGU" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGW" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGX" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGY" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGZ" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHa" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cHd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHe" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cHf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cHg" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cHh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "SMES Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHi" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/engine/engineering) -"cHk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Middle"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cHl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHp" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cHr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Waste Out"; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHt" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cHv" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cHz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHB" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHC" = ( -/obj/machinery/door/window{ - name = "SMES Chamber"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHD" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHE" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cHG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "SMES Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/engine/engineering) -"cHJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHY" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/weapon/airlock_painter, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHZ" = ( -/obj/machinery/camera{ - c_tag = "Engineering East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cIa" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cIb" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIc" = ( -/turf/open/floor/plating, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/asmaint2) -"cId" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIe" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/turf/open/floor/plating, -/area/space) -"cIf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Starboard Solar APC"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIh" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIn" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIq" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engineering) -"cIs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIx" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"cIC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIF" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIG" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cII" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engineering) -"cIM" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cIN" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIO" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIP" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_4) -"cIQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/space, -/area/space) -"cIR" = ( -/obj/structure/table_frame, -/obj/item/weapon/wirerod, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint2) -"cIS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space) -"cIT" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIV" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIW" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cIZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"cJa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cJb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cJc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cJe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJj" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"cJk" = ( -/obj/structure/window, -/turf/open/floor/plating, -/area/toxins/mixing) -"cJl" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "0"; - req_one_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cJm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/engine/engineering) -"cJt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"cJu" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cJv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJz" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engineering) -"cJA" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cJB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod4"; - shuttleId = "pod4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"cJF" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "asteroid_pod4" - }, -/turf/open/space, -/area/space) -"cJG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJI" = ( -/obj/machinery/power/solar_control{ - id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJK" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJL" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/engine/engineering) -"cJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJN" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJO" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cJR" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJS" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJT" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJV" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJW" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJX" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/engineering) -"cJY" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plating, -/area/engine/engineering) -"cJZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engine/engineering) -"cKa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKd" = ( -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cKe" = ( -/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_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKf" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cKh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKj" = ( -/obj/structure/sign/pods{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engineering) -"cKk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Escape Pod"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cKl" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKm" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKn" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cKo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKq" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKs" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/obj/machinery/camera{ - c_tag = "Engineering Materials"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKt" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKu" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cKw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKz" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKG" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKJ" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKM" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_particle_accelerator{ - pixel_y = 6 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKS" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "32" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering) -"cKU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKZ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLa" = ( -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLb" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Port Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering North" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLc" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLe" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLf" = ( -/obj/machinery/camera{ - c_tag = "Engineering MiniSat Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLh" = ( -/obj/structure/transit_tube{ - tag = "icon-Block"; - icon_state = "Block" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLi" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/obj/structure/sign/securearea{ - name = "EXTERNAL AIRLOCK"; - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cLj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cLk" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/item/weapon/lighter{ - lit = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Entrance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLo" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -2 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLr" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -6 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLs" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/weapon/storage/backpack/industrial, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLt" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLw" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLz" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLF" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLH" = ( -/obj/structure/transit_tube/station{ - dir = 8; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/obj/structure/transit_tube_pod, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cLJ" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLM" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLO" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLP" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cLR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Supermatter Control Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cLS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLX" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMa" = ( -/obj/structure/table, -/obj/item/weapon/pocketknife, -/obj/item/weapon/reagent_containers/food/snacks/beans{ - bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); - desc = "Smells kind of funny." - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMb" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMd" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMg" = ( -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMn" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/reagent_containers/pill/charcoal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) -"cMp" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMq" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cMr" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cMu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMv" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/engine/supermatter) -"cMw" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMx" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMz" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/engine/supermatter) -"cMA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMB" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/engine/engineering) -"cMD" = ( -/obj/structure/transit_tube{ - tag = "icon-N-SE"; - icon_state = "N-SE" - }, -/turf/open/space, -/area/space) -"cME" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/turf/open/space, -/area/space) -"cMF" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/weapon/paper/gravity_gen{ - layer = 3 - }, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMJ" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMM" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMP" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMQ" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cMR" = ( -/obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" - }, -/turf/open/space, -/area/space) -"cMS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMT" = ( -/obj/structure/transit_tube, -/turf/open/space, -/area/space) -"cMU" = ( -/obj/structure/transit_tube{ - tag = "icon-E-W-Pass"; - icon_state = "E-W-Pass" - }, -/turf/open/space, -/area/space) -"cMV" = ( -/obj/structure/transit_tube{ - icon_state = "W-SE" - }, -/turf/open/space, -/area/space) -"cMW" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMX" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cMY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMZ" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNa" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNc" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNd" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNe" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNf" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNg" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNh" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNk" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNl" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNp" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNs" = ( -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/space) -"cNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNu" = ( -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/space) -"cNv" = ( -/obj/item/weapon/crowbar, -/turf/open/space, -/area/space) -"cNw" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNx" = ( -/turf/closed/wall/r_wall, -/area/aisat) -"cNy" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cNz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cNA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/engine/engine_smes) -"cNC" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cND" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cNE" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cNF" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/aisat) -"cNG" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/aisat) -"cNH" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/aisat) -"cNI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNJ" = ( -/obj/item/weapon/weldingtool, -/turf/open/space, -/area/space) -"cNK" = ( -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/space) -"cNM" = ( -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/space) -"cNN" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNO" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/turf/open/space, -/area/space) -"cNP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNQ" = ( -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNS" = ( -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNT" = ( -/obj/structure/transit_tube{ - tag = "icon-S-NW"; - icon_state = "S-NW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNU" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNV" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNW" = ( -/obj/machinery/button/door{ - id = "teledoor"; - name = "AI Satellite Teleport Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "17;65" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNZ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cOd" = ( -/turf/closed/wall, -/area/aisat) -"cOe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/aisat) -"cOg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Teleporter Room"; - req_access_txt = "17;65" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "AI Satellite Teleport Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOi" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cOk" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cOl" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOr" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOs" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cOt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOv" = ( -/obj/structure/transit_tube/station{ - dir = 4; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOy" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access = null; - req_access_txt = "65;13" - }, -/turf/open/floor/plating, -/area/aisat) -"cOz" = ( -/turf/open/floor/plating, -/area/aisat) -"cOA" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cOB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cOE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cOF" = ( -/obj/structure/transit_tube{ - dir = 1; - icon_state = "Block"; - tag = "icon-Block (NORTH)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOI" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cOM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cON" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cOP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "MiniSat Entrance"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat External Power APC"; - pixel_x = -27; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOW" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOY" = ( -/obj/machinery/turretid{ - control_area = "AI Satellite Antechamber"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 0; - pixel_y = -24; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOZ" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cPa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/aisat) -"cPc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cPd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/aisat) -"cPe" = ( -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/closed/wall, -/area/aisat) -"cPj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cPm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPo" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPw" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cPx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cPz" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_sw"; - name = "southwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cPA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cPB" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPC" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPN" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/aisat) -"cPP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPR" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPS" = ( -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPT" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPU" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - cell_type = 2500; - dir = 4; - name = "MiniSat Antechamber APC"; - pixel_x = 29; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space) -"cPW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cPY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cPZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/bot/floorbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQb" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cQc" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQd" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Antechamber"; - dir = 1; - network = list("MiniSat") - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/bot/cleanbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cQh" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQj" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQk" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - locked = 1; - name = "AI Chamber"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQm" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQp" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQq" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber North"; - dir = 2; - network = list("MiniSat","RD"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQr" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQs" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQw" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQy" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQz" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQA" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQC" = ( -/turf/closed/wall, -/area/turret_protected/ai) -"cQD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQE" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQF" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQH" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQI" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQJ" = ( -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber South"; - dir = 2; - network = list("RD","MiniSat") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQN" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQO" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQS" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQV" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cQW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQY" = ( -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cQZ" = ( -/obj/structure/rack, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/secure) -"cRc" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRd" = ( -/obj/structure/rack, -/obj/item/weapon/crowbar/red, -/obj/item/weapon/wrench, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cRf" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cRg" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat Maint APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air Out"; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/ai_monitored/storage/secure) -"cRj" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ai_monitored/storage/secure) -"cRk" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/ai_monitored/storage/secure) -"cRl" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cRn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/aisat) -"cRo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRr" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/aisat) -"cRy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRB" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cRF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"cRG" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cRH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRI" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRJ" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRK" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cRP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRS" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRU" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "SMES room APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRV" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cRW" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cRZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cSa" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSb" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Supermatter Control Room"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters" - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cSc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSe" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSf" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSg" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSh" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSi" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/camera{ - c_tag = "Port Engineering North-East"; - dir = 5; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSo" = ( -/obj/machinery/vending/tool, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSp" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cSB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSC" = ( -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cSE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSF" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHWEST)"; - icon_state = "warndark"; - dir = 10 - }, -/area/engine/supermatter) -"cSG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSH" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "smblast"; - name = "Control Room Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHEAST)"; - icon_state = "warndark"; - dir = 6 - }, -/area/engine/supermatter) -"cSJ" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSK" = ( -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSL" = ( -/obj/item/device/radio/off, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSM" = ( -/obj/machinery/power/emitter{ - anchored = 1; - state = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSN" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSO" = ( -/obj/structure/grille, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSP" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSQ" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSS" = ( -/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 = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cST" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTe" = ( -/obj/structure/closet/radiation, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cTg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTh" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cTi" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTo" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smblast" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cTp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTr" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTD" = ( -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTF" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTG" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTI" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTJ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTK" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTL" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - layer = 3 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Center" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTO" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTQ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Supermatter APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTS" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTY" = ( -/obj/machinery/power/rad_collector{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/port_engineering) -"cTZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cUe" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUh" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/power/emitter, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUs" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUx" = ( -/turf/closed/wall, -/area/engine/port_engineering) -"cUA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUF" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUG" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cUI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cUJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cUL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUN" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Filtering Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUO" = ( -/obj/machinery/camera{ - c_tag = "Filtering Room" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUQ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/camera{ - c_tag = "Supermatter West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters"; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVb" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVc" = ( -/obj/machinery/field/generator{ - anchored = 1; - state = 2 - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cVf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVg" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVh" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVj" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space) -"cVl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVn" = ( -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVp" = ( -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVv" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVw" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "superinput" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVx" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVC" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/camera{ - c_tag = "Supermatter East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/port_engineering) -"cVG" = ( -/obj/item/weapon/wirecutters, -/turf/open/space, -/area/space) -"cVH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVL" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVM" = ( -/obj/machinery/the_singularitygen{ - anchored = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVN" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVO" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVP" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVQ" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Filtering Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVT" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVU" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/supermatter) -"cVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVW" = ( -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVY" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/supermatter) -"cVZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cWd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space) -"cWe" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWj" = ( -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWl" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWm" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWo" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWr" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWt" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWu" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWv" = ( -/obj/machinery/mass_driver{ - id = "engicannon" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - tag = "smin"; - volume_rate = 700 - }, -/obj/machinery/power/supermatter_shard{ - anchored = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWx" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWz" = ( -/turf/open/floor/plating, -/area/engine/supermatter) -"cWA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space) -"cWE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWF" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWG" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWI" = ( -/obj/machinery/particle_accelerator/control_box{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 0; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWL" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage1"; - name = "secure storage" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/port_engineering) -"cWM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/electronics/airlock, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWP" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/tank_dispenser, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWQ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWU" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWV" = ( -/obj/structure/sign/securearea{ - color = ""; - desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; - name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWX" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/space) -"cWY" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/space) -"cXc" = ( -/obj/structure/particle_accelerator/power_box{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXd" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXe" = ( -/obj/structure/particle_accelerator/end_cap{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXf" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXg" = ( -/obj/machinery/camera{ - c_tag = "Engineering PA"; - dir = 9; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the singularity chamber."; - dir = 2; - layer = 4; - name = "Singularity Engine Telescreen"; - network = list("Singularity"); - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXi" = ( -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXj" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/camera{ - c_tag = "Port Engineering Secure Storage"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXk" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cXl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXn" = ( -/obj/machinery/door/poddoor{ - id = "engicannon" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cXo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXp" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXq" = ( -/obj/structure/window{ - color = "red"; - desc = "A window, break in case of emergency."; - dir = 1; - icon_state = "window"; - tag = "icon-window (NORTH)" - }, -/obj/machinery/button/massdriver{ - id = "engicannon"; - name = "\improper JETTISON ENGINE"; - pixel_y = -22; - req_access_txt = "32" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/engine/supermatter) -"cXr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXt" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXu" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXw" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage1"; - name = "Secure Storage"; - pixel_x = 24; - pixel_y = 0; - req_access_txt = "10" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering Middle"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXx" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - volume_rate = 5000 - }, -/turf/open/floor/plating/airless, -/area/space) -"cXz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/space) -"cXA" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXE" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXG" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXI" = ( -/obj/machinery/field/generator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXM" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Port Engineering South" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXN" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXY" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYb" = ( -/obj/item/device/multitool, -/turf/open/space, -/area/space) -"cYd" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYe" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYf" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYh" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYi" = ( -/obj/structure/grille, -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYk" = ( -/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 = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYq" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYr" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYu" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYw" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYD" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/space, -/area/space) - -( -1, -1, -1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -"} - +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aag" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aah" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aai" = ( +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aak" = ( +/obj/machinery/door/poddoor{ + id = "executionspacevent" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aal" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aam" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/open/space, +/area/space) +"aan" = ( +/obj/machinery/flasher{ + id = "executionflasher"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/processing) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"aar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/security/transfer) +"aas" = ( +/obj/machinery/sparker{ + id = "executionsparker"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/chair, +/turf/open/floor/engine, +/area/security/transfer) +"aau" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aay" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northwest"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aaF" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + heat_proof = 1; + name = "Prisoner Transfer Chamber"; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"aaM" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 10000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaN" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaO" = ( +/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaP" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/razor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaR" = ( +/obj/machinery/button/flasher{ + id = "executionflasher"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionspacevent"; + name = "vent to space"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaS" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/weapon/tank/internals/anesthetic, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaV" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northeast"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaW" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaX" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaY" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aba" = ( +/obj/machinery/button/ignition{ + id = "executionsparker"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abd" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"abe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abf" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/transfer) +"abk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abq" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Transfer"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abw" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/clothing/head/helmet, +/obj/item/device/assembly/signaler, +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Transfer Center APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aby" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abz" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abF" = ( +/turf/closed/wall/r_wall, +/area/security/lockers) +"abG" = ( +/turf/closed/wall/r_wall, +/area/security/hos) +"abH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/hos) +"abI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abK" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Brig Interrogation" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/processing) +"abO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/hos) +"abQ" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"abT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/carpet, +/area/security/hos) +"abU" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"abV" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/lockers) +"abX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plasteel, +/area/security/lockers) +"abY" = ( +/turf/open/floor/plasteel, +/area/security/lockers) +"abZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Cappers! Fairly unremarkable really."; + name = "\improper Officer Cappers" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aca" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Camilla! He constantly seeks validation."; + name = "\improper Officer Camilla" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acg" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ach" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aci" = ( +/obj/structure/table, +/obj/item/weapon/lighter, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"ack" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"acl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acm" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Prison Shuttle Dock APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aco" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acp" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acr" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"act" = ( +/obj/structure/closet/ammunitionlocker, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/deputy, +/obj/item/weapon/storage/box/seccarts, +/turf/open/floor/carpet, +/area/security/hos) +"acx" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"acy" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acB" = ( +/turf/open/floor/carpet, +/area/security/hos) +"acC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acD" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acE" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acF" = ( +/obj/structure/table, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acG" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"acI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/security/hos) +"acQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/adamantine, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acR" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/security/hos) +"acS" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/carpet, +/area/security/hos) +"acT" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Locker Room West"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/lockers) +"acY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"ada" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"add" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"ade" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"adi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adj" = ( +/obj/structure/closet/ammunitionlocker, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/hos) +"adn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/security/hos) +"ado" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adp" = ( +/turf/closed/wall, +/area/security/transfer) +"adq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/transfer) +"ads" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Security Locker Room APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adw" = ( +/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/open/floor/plasteel, +/area/security/lockers) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"ady" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"adz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"adA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adE" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/obj/item/weapon/stamp/hos, +/turf/open/floor/carpet, +/area/security/hos) +"adF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Brig Riot Equipment"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"adI" = ( +/turf/closed/wall, +/area/security/hos) +"adJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adK" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/security/hos) +"adL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"adP" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adR" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/security/lockers) +"adT" = ( +/obj/structure/table, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/machinery/camera{ + c_tag = "Brig Locker Room East"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adU" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/isolation) +"adW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitered" + }, +/area/security/isolation) +"adX" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitered" + }, +/area/security/isolation) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"adZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aea" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor Northwest"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"aeg" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aei" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/camera/motion{ + c_tag = "Armory"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aej" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aek" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"ael" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aem" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/hos) +"aen" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/turf/open/floor/carpet, +/area/security/hos) +"aeo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/hos) +"aep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aer" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/main) +"aes" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"aet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"aeu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"aev" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Brig Medbay"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/isolation) +"aex" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"aey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aeG" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeK" = ( +/obj/machinery/button/door{ + id = "riotequipment"; + name = "Riot Equipment Shutters"; + pixel_x = 24; + pixel_y = 32; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeN" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/hos) +"aeQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"aeS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aeU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeV" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeW" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/main) +"afa" = ( +/obj/machinery/computer/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"afb" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afc" = ( +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afe" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"aff" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"afh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afi" = ( +/obj/structure/bed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"afj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fpmaint) +"afm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afp" = ( +/obj/structure/rack, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afq" = ( +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; + name = "\improper Officer Lock n Lode" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afs" = ( +/obj/structure/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Armory APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afv" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"afw" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"afx" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"afy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"afz" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afB" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afC" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"afF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afG" = ( +/obj/machinery/camera{ + c_tag = "Brig Medbay"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afI" = ( +/turf/closed/wall, +/area/security/main) +"afJ" = ( +/obj/structure/grille, +/turf/open/space, +/area/space) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 6" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afO" = ( +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Secure Cell 2"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afS" = ( +/obj/machinery/door/window/brigdoor{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afT" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afU" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/ecase, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afV" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/shotgun, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afW" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aga" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"agc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"age" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/security/main) +"agf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"agh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Security Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"agi" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agj" = ( +/obj/machinery/door/airlock{ + name = "Showers"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agl" = ( +/obj/machinery/camera{ + c_tag = "Brig Showers"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agm" = ( +/turf/open/floor/plasteel, +/area/security/main) +"agn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"ago" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/security/isolation) +"agp" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitered" + }, +/area/security/isolation) +"agq" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitered" + }, +/area/security/isolation) +"agr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ags" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Medbay APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"agu" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agv" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agw" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/pod_3) +"agx" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/pod_3) +"agz" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agA" = ( +/obj/machinery/flasher{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"agC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell2"; + name = "Secure Cell 2"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"agD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"agE" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"agJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agK" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/weapon/gun/energy/laser/practice, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"agM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/main) +"agP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Security Office West"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/open/floor/plasteel, +/area/security/main) +"agR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Security Office East"; + dir = 8; + network = list("SS13") + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"agT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aha" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahc" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahd" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc4" + }, +/area/shuttle/pod_3) +"ahe" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahf" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahg" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahi" = ( +/obj/structure/chair, +/obj/item/weapon/storage/pod{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahj" = ( +/obj/structure/chair, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahk" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahp" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aht" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahx" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"ahy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahA" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahB" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -31; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahC" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall1"; + dir = 2 + }, +/area/shuttle/labor) +"ahD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"ahF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahG" = ( +/obj/structure/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahR" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahS" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/door{ + id = "armorylockdown"; + name = "Brig Control Lockdown"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahV" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Brig Control APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahX" = ( +/turf/closed/wall, +/area/security/warden) +"ahY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahZ" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/item/device/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/main) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aib" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aid" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + dwidth = 2; + height = 9; + id = "pod3"; + name = "escape pod 3"; + width = 5 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aie" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aif" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig Escape Shuttle"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aig" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aih" = ( +/obj/docking_port/stationary/random{ + dir = 4; + dwidth = 2; + height = 9; + id = "asteroid_pod3"; + width = 5 + }, +/turf/open/space, +/area/space) +"aii" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aik" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/main) +"ail" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aim" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ain" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/main) +"aio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"air" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ais" = ( +/obj/structure/table, +/obj/item/baseball, +/obj/item/baseball, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ait" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiy" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 5" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiz" = ( +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Secure Cell 1"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"aiA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aiB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aiC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aiE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aiL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiM" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiN" = ( +/obj/machinery/flasher{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell1"; + name = "Secure Cell 1"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Brig APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/brig) +"aiR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aiY" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc1" + }, +/area/shuttle/pod_3) +"aiZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aja" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ajb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigshuttleflash"; + name = "Flash Control"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 0; + pixel_y = -31 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod3"; + shuttleId = "pod3" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajd" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajn" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"ajp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"ajs" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aju" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajv" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"ajx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice{ + pixel_y = 4 + }, +/obj/item/weapon/dice/d8{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajA" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ajB" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d20, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ajD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/brig) +"ajG" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajI" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajL" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajM" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aka" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/pod_3) +"akb" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/pod_3) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"akd" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ake" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aki" = ( +/obj/structure/table/wood, +/obj/item/weapon/gavelblock, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akj" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d12, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akk" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"akm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"akn" = ( +/turf/closed/wall, +/area/security/isolation) +"ako" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 4"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/labor) +"akr" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aks" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/labor) +"akt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + color = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aku" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akw" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aky" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akC" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akE" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"akG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akI" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akJ" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d10, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akL" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akM" = ( +/obj/structure/chair/comfy/brown, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/cheesie, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/mop, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/ian, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akP" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akX" = ( +/turf/closed/wall, +/area/maintenance/fsmaint) +"akY" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"akZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"ala" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"alc" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ald" = ( +/turf/closed/wall/r_wall, +/area/security/isolation) +"ale" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alf" = ( +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"alg" = ( +/obj/structure/grille, +/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ali" = ( +/obj/item/stack/teeth/lizard{ + amount = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"all" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aln" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alo" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alp" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "perma prison shuttle"; + port_angle = 90; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"alq" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/rack, +/obj/item/clothing/head/bowler, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/computer/security, +/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/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aly" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/crew_quarters/courtroom) +"alz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 8; + name = "Courtroom APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alB" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alC" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alD" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alE" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alF" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alG" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alH" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 3" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alJ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alK" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 1" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alN" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"alP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alQ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby Desk"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/flasher{ + id = "lobbyflash"; + pixel_y = -4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "lobbylockdown"; + name = "Lobby Lockdown"; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"alV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"alY" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/space) +"alZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ama" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amb" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/weapon/gun/magic/staff, +/obj/item/weapon/gun/magic/wand, +/obj/item/weapon/sord, +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amc" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/clothing/suit/armor/riot/knight, +/obj/item/clothing/head/helmet/knight, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/helmet/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/under/roman, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/under/kilt, +/obj/item/clothing/under/pirate, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amd" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ame" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ami" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"amj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aml" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"amm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"amn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ams" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amz" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Brig Lobby" + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amF" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amH" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"amJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"amN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amO" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amS" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amU" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"amV" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"amW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amZ" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ana" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anb" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"and" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/item/weapon/poster/legit, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ane" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ang" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anh" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ani" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ann" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ano" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anp" = ( +/obj/machinery/atmospherics/pipe/manifold, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ans" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ant" = ( +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anv" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"anw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"any" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anA" = ( +/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"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anE" = ( +/obj/structure/table, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anF" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/pill/morphine, +/obj/item/weapon/reagent_containers/pill/morphine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anG" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"anN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"anO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anP" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anS" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aob" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aoc" = ( +/turf/closed/wall, +/area/security/brig) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"aoe" = ( +/obj/machinery/camera{ + c_tag = "Cargo North"; + dir = 4; + network = list("perma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 8; + network = list("perma") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"aog" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aok" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aol" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aom" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aon" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aoo" = ( +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aop" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aor" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aos" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/main) +"aot" = ( +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aou" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aov" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/matches, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aow" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 1; + color = "red"; + dir = 1 + }, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aox" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoA" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoD" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoE" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aoH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"aoJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Port Engineering Hallway" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"aoK" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northwest"; + dir = 5; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoL" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northeast"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoN" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southwest"; + dir = 4; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoO" = ( +/obj/item/weapon/crowbar, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aoP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoQ" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoR" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoS" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Detective's Office"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoU" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aoX" = ( +/obj/structure/rack, +/obj/item/weapon/storage/backpack/satchel/sec, +/obj/item/weapon/storage/backpack/security, +/obj/item/weapon/storage/backpack/dufflebag/sec, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apb" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apd" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apf" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"apg" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"aph" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"api" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apl" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apm" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apn" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"apo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"app" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apr" = ( +/obj/machinery/button/door{ + id = "detshutters"; + name = "Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aps" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/brig) +"apu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apv" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"apw" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/outpost) +"apx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apy" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apF" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apM" = ( +/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" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Security Electrical Maintenance APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apP" = ( +/turf/closed/wall, +/area/maintenance/secelectrical) +"apQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"apU" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apW" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/adamantine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apY" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/wirecutters, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqe" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqf" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqi" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aql" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqo" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqu" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqx" = ( +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqA" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"aqB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aqE" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Northeast" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqG" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqH" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqL" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6; + icon_state = "tracks"; + tag = "icon-tracks (SOUTHWEST)" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqR" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqY" = ( +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ara" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"arc" = ( +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"are" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ari" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arp" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"ars" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"art" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aru" = ( +/obj/structure/closet/cardboard, +/obj/item/clothing/suit/jacket/miljacket, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"arv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arw" = ( +/obj/structure/table, +/obj/item/stack/ducttape, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c50, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ary" = ( +/obj/structure/table/wood, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arz" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arB" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office Backroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"arD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway North"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arN" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"arO" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod1" + }, +/turf/open/space, +/area/space) +"arP" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod2" + }, +/turf/open/space, +/area/space) +"arQ" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/labor) +"arR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"arS" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/labor) +"arT" = ( +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/engine/port_engineering) +"arU" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southeast"; + dir = 9; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"arV" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/weapon/crowbar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Red Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"arW" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asb" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asc" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"asd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/lawoffice) +"asf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawshutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"asg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ash" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ask" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ass" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ast" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"asu" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"asv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"asw" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"asx" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"asy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/labor) +"asz" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"asA" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"asB" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"asC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asE" = ( +/obj/structure/closet/crate, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plating, +/area/engine/port_engineering) +"asG" = ( +/obj/structure/table, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/engineering) +"asH" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"asI" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"asJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asL" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asM" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"asN" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/red, +/obj/item/clothing/glasses/orange, +/obj/item/clothing/glasses/gglasses, +/turf/open/floor/wood, +/area/lawoffice) +"asP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/lawoffice) +"asQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asR" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/carpet, +/area/lawoffice) +"asS" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"asT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/turf/open/floor/carpet, +/area/lawoffice) +"asU" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"asV" = ( +/obj/machinery/button/door{ + id = "lawshutters"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"asZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"ata" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ate" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Pool APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"atf" = ( +/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/open/floor/plating, +/area/maintenance/fpmaint2) +"atg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ath" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_1) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod1"; + shuttleId = "pod1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_2) +"atk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod2"; + shuttleId = "pod2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atl" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/space) +"atm" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atn" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ato" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"atr" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"ats" = ( +/obj/effect/decal/cleanable/oil, +/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" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"att" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/weapon/storage/firstaid/surgery, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"aty" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"atz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"atA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atL" = ( +/turf/closed/wall, +/area/maintenance/commiespy) +"atM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/open/floor/carpet, +/area/lawoffice) +"atT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atU" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atV" = ( +/obj/machinery/camera{ + c_tag = "Pool North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atW" = ( +/obj/structure/closet, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Law Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/lawoffice) +"atY" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atZ" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/device/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"aua" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/lawoffice) +"aub" = ( +/obj/structure/closet/crate, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/wood, +/area/lawoffice) +"auc" = ( +/obj/structure/closet, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/under/griffin, +/obj/item/clothing/head/griffin, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/pig, +/obj/item/clothing/head/chicken, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lawoffice) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet, +/area/lawoffice) +"aue" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/law, +/obj/item/weapon/pen/blue, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/med_data, +/turf/open/floor/carpet, +/area/lawoffice) +"aug" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/lawoffice) +"auh" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/lawoffice) +"aui" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/lawoffice) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (WEST)"; + icon_state = "yellowcornersiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"auk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aum" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auo" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aup" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auq" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/open/floor/engine, +/area/gateway) +"aur" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aus" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1351; + name = "Science intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "Supply intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1355; + name = "Medical intercom"; + pixel_x = -27; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"aut" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1353; + name = "Command intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Stronk Russian APC"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/soviet, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auw" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aux" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"auy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"auz" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"auA" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"auB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"auC" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"auD" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"auE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"auF" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/arrival) +"auG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auI" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"auJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"auK" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"auL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"auM" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"auN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"auO" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auQ" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"auR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_access_txt = list(27,12) + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"auW" = ( +/obj/machinery/gateway, +/turf/open/floor/engine, +/area/gateway) +"auX" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"auY" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"ava" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avb" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avc" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avd" = ( +/turf/closed/wall, +/area/lawoffice) +"ave" = ( +/turf/closed/wall, +/area/maintenance/fsmaint2) +"avf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating/airless, +/area/maintenance/fsmaint2) +"avg" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1447; + name = "AI Private intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/storage/photo_album, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avi" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/syndie, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avl" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"avm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avn" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avo" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"avr" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avu" = ( +/obj/machinery/door/window/southright{ + name = "Gateway Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"avv" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avw" = ( +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avx" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avy" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avG" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/camera{ + c_tag = "Arrivals Infirmary"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avM" = ( +/obj/structure/table/glass, +/obj/item/weapon/cultivator, +/obj/item/weapon/hatchet, +/obj/item/weapon/crowbar, +/obj/item/device/plant_analyzer, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avN" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"avO" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avP" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avS" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avT" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"avU" = ( +/obj/machinery/door/airlock/external{ + name = "Airlock"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avV" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1357; + name = "Engineering intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avW" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/clothing/tie/stethoscope, +/obj/item/device/camera, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer{ + desc = "These possibly cant be even letters, blyat!"; + name = "Russian computer" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avY" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awb" = ( +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awc" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awe" = ( +/obj/structure/rack, +/obj/item/weapon/gun/projectile/shotgun/toy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awg" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"awk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"awl" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awn" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awp" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awq" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aws" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"awu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"awv" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aww" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"awx" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/white, +/area/mime) +"awy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"awA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awB" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/hallway/secondary/entry) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awE" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"awG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"awI" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"awK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awP" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"awQ" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awS" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/library) +"awT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/storage/tools) +"awU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"awV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"awW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"awX" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"awY" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"awZ" = ( +/obj/item/weapon/garrote, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"axa" = ( +/obj/machinery/vending/sustenance, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axb" = ( +/obj/machinery/computer/crew, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axc" = ( +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axd" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axe" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axf" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axg" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"axh" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axi" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axj" = ( +/turf/closed/wall/shuttle{ + blocks_air = 6; + dir = 1; + icon_state = "swall13" + }, +/area/shuttle/arrival) +"axk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"axl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"axo" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axr" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2) +"axs" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axt" = ( +/obj/structure/table/wood, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axw" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/bandana/red, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axx" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axA" = ( +/obj/item/weapon/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"axC" = ( +/obj/item/weapon/storage/box, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"axD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"axJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axK" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/quartermaster/storage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axT" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"axU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/assembly/robotics) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axW" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"axX" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axY" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"axZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency) +"aya" = ( +/turf/open/floor/wood, +/area/lawoffice) +"ayb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency) +"ayc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency) +"ayd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ayf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ayi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayk" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayl" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aym" = ( +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayn" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayo" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayq" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayr" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"ays" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayB" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ayD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayE" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayG" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayL" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayM" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayN" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayP" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayR" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/labor) +"ayS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"ayT" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/labor) +"ayU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ayZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"aza" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"azc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/medical) +"azd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aze" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"azg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"azi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"azj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"azk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"azl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"azm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fsmaint2) +"azn" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fsmaint2) +"azo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"azp" = ( +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azq" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"azr" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azv" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azw" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azx" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azA" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azB" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azD" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azE" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azH" = ( +/obj/item/trash/sosjerky, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azL" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"azM" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azO" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azP" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azQ" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azS" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"azT" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"azU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azV" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"aAb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAc" = ( +/mob/living/simple_animal/bot/cleanbot{ + desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; + name = "\improper Dumpy"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aAd" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"aAj" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/engine/break_room) +"aAk" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/engine/break_room) +"aAl" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/engine/break_room) +"aAm" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aAn" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aAo" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aAp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Checkpoint"; + dir = 8; + network = list("perma") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aAq" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aAr" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/airless, +/area/space) +"aAs" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aAu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAy" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAC" = ( +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aAD" = ( +/obj/structure/table, +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAF" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAH" = ( +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod Hallway"; + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAK" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aAM" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aAN" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAO" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"aAP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAS" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/under/rank/bartender, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAW" = ( +/turf/closed/wall, +/area/maintenance/fpmaint) +"aAX" = ( +/obj/machinery/poolcontroller, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aBl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"aBz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aBA" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBC" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/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 = 32 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBE" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aBG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBH" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBJ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aBK" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBL" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBM" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aBN" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aBP" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHEAST)"; + icon_state = "intact"; + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBS" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBU" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBV" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBW" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBX" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/tile/wood{ + amount = 25 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBY" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBZ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCc" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aCr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"aCt" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCv" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCw" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/fsmaint2) +"aCx" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aCy" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"aCz" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCB" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCD" = ( +/obj/structure/closet, +/obj/item/ammo_box/foambox, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCE" = ( +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCG" = ( +/obj/structure/closet/wardrobe/blue, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCH" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCI" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCL" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCQ" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCT" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCV" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDc" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aDd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aDe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDv" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDx" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint2) +"aDz" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDG" = ( +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDH" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDJ" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDQ" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aDR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDU" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDW" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aEd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEk" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEl" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aEm" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aED" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEE" = ( +/obj/structure/grille, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEG" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aEI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aEJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEK" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEM" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEN" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/coin/gold, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEQ" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aER" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aET" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEU" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEV" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEW" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aEY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFe" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFf" = ( +/obj/machinery/monkey_recycler, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFg" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFh" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFs" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/bodybags, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFt" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFA" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFD" = ( +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFL" = ( +/turf/closed/wall, +/area/crew_quarters/pool) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFQ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"aFR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFS" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFZ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGa" = ( +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGb" = ( +/obj/structure/closet, +/obj/item/weapon/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"aGm" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aGq" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGs" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aGw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aGH" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aGI" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aGM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/sleep) +"aGN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/sleep) +"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHb" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHf" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHh" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHj" = ( +/turf/closed/wall, +/area/maintenance/electrical) +"aHk" = ( +/turf/closed/wall, +/area/space) +"aHl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space) +"aHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHt" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aHw" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aHx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHy" = ( +/obj/structure/chair/withwheels/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aHz" = ( +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHB" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHC" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aHN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aHO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aHP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHS" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aHV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/toy/carpplushie, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHY" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding"; + icon_state = "yellowcornersiding" + }, +/area/crew_quarters/pool) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aIg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIh" = ( +/obj/structure/table, +/obj/item/weapon/shard, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIi" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIj" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIk" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIl" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIm" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIn" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIo" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/electrical) +"aIq" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/maintenance/electrical) +"aIr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aIs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIx" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged3" + }, +/area/space) +"aIy" = ( +/turf/open/floor/plating/airless, +/area/space) +"aIz" = ( +/obj/item/weapon/paper/crumpled, +/turf/open/floor/plasteel/airless{ + icon_state = "damaged2" + }, +/area/space) +"aIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIC" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aID" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIE" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIF" = ( +/obj/machinery/button/door{ + id = "hobodorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aII" = ( +/obj/machinery/button/door{ + id = "hobodorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/fpmaint) +"aIJ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIN" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aIU" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIY" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aIZ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/poolfilter{ + pixel_y = 11 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aJb" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJf" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJn" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJo" = ( +/turf/open/floor/plating, +/area/maintenance/electrical) +"aJp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aJt" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"aJu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aJv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"aJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJA" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/chair, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJF" = ( +/obj/item/weapon/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space, +/area/space) +"aJG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJI" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm1"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aJK" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/weapon/bedsheet/brown, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aJL" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/open/floor/plasteel, +/area/maintenance/fpmaint) +"aJM" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/fpmaint) +"aJN" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm2"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aJY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aKa" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKb" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aKj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aKk" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/toy/poolnoodle/blue, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKl" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aKn" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aKs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKu" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKx" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/weapon/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKz" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged5" + }, +/area/space) +"aKA" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKF" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKK" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKV" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"aKW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLf" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLg" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLh" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aLn" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/ladder, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLo" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/drain, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLp" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/Lboard, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLr" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aLs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLt" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLw" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLy" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLz" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLI" = ( +/obj/structure/table, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-West"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLP" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-East"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLY" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMs" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/item/clothing/head/welding, +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/off, +/obj/item/device/assembly/timer, +/obj/structure/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMx" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMy" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMz" = ( +/obj/item/device/aicard, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMB" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMC" = ( +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aME" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aMF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMG" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMI" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMJ" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aML" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aMP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNb" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNc" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNi" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNj" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNk" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNl" = ( +/obj/structure/table/glass, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aNz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNA" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aND" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNE" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNG" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNH" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aNI" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aNK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aNQ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/clothing/under/shorts/red, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aNR" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOg" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOh" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aOl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOm" = ( +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aOn" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOp" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aOv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aOw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOy" = ( +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOD" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOH" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/patriot, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aOK" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/open/floor/engine, +/area/gateway) +"aOM" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/open/floor/engine, +/area/gateway) +"aON" = ( +/turf/open/floor/engine, +/area/gateway) +"aOO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOY" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aOZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aPa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 2 + }, +/area/crew_quarters/sleep) +"aPb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPe" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/toilet) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPr" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPs" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPv" = ( +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPx" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPy" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aPA" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPB" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/space) +"aPD" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPE" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPF" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/security/checkpoint2) +"aPG" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPI" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint2) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aPK" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPT" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPV" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/primary) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQb" = ( +/obj/structure/bed/dogbed, +/obj/item/weapon/reagent_containers/food/drinks/flask/det{ + desc = "A Space Veteran's only friend."; + name = "space veteran's flask" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQc" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aQe" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/open/floor/engine, +/area/gateway) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"aQg" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aQi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQw" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aQx" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"aQy" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aQA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/table/glass, +/obj/item/clothing/under/shorts/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQD" = ( +/obj/machinery/camera{ + c_tag = "Pool South"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQH" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQI" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/crew_quarters/pool) +"aQJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQM" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQN" = ( +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aQS" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/security/checkpoint2) +"aQT" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQW" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQX" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint2) +"aQY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRe" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRf" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRj" = ( +/turf/closed/wall, +/area/storage/primary) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"aRn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRo" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/open/floor/engine, +/area/gateway) +"aRq" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aRs" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRv" = ( +/obj/item/weapon/pen{ + desc = "Writes upside down!"; + name = "astronaut pen" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRx" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRy" = ( +/obj/machinery/camera{ + c_tag = "EVA East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aRA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aRB" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRD" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRI" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aRM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRO" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aRP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/weapon/lighter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = 9; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSf" = ( +/turf/closed/wall, +/area/chapel/main) +"aSg" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSh" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"aSi" = ( +/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 = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"aSj" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/open/floor/plating, +/area/chapel/main) +"aSm" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSo" = ( +/turf/closed/wall, +/area/security/checkpoint2) +"aSp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSq" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSB" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSC" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSE" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSF" = ( +/obj/structure/table, +/obj/item/device/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSG" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSH" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSL" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSM" = ( +/turf/closed/wall, +/area/mime) +"aSO" = ( +/turf/closed/wall, +/area/clown) +"aSP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSS" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aST" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aTa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Command EVA"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aTc" = ( +/obj/machinery/door/airlock/command{ + name = "Command EVA"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTd" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aTg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTn" = ( +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTo" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aTr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j1s"; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTu" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTw" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/chapel/main) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTM" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTN" = ( +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/main) +"aTP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aTS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTT" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Green Arrivals"; + name = "Nothing To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTU" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTV" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTW" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTZ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aUa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aUb" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aUj" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/plants{ + lootcount = 10; + name = "10plant_spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUk" = ( +/obj/machinery/door/airlock{ + name = "Garden"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUl" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Mime Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/mime, +/turf/open/floor/plasteel/black, +/area/mime) +"aUn" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aUo" = ( +/obj/item/weapon/bedsheet/mime, +/obj/structure/bed, +/turf/open/floor/plasteel/black, +/area/mime) +"aUp" = ( +/obj/machinery/camera{ + c_tag = "Clown Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/clown, +/turf/open/floor/plasteel/green, +/area/clown) +"aUq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aUr" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed, +/turf/open/floor/plasteel/green, +/area/clown) +"aUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUt" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUu" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/gateway) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUA" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUD" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + c_tag_order = 999; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aUF" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUH" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUK" = ( +/obj/structure/dresser, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUM" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUZ" = ( +/turf/closed/wall, +/area/library) +"aVa" = ( +/turf/closed/wall, +/area/chapel/office) +"aVc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aVd" = ( +/obj/structure/falsewall, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVg" = ( +/obj/machinery/camera{ + c_tag = "Chapel North"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVh" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVi" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"aVk" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals No-Declare Lane"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aVl" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aVn" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Green Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = -22; + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVo" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVq" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aVr" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aVs" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals Declare Lane"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aVQ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mime Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/mime) +"aVR" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVS" = ( +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/open/floor/plasteel/green, +/area/clown) +"aVT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aVY" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aWa" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWb" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWc" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/storage/eva) +"aWe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWh" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWk" = ( +/obj/structure/toilet{ + tag = "icon-toilet00 (WEST)"; + icon_state = "toilet00"; + dir = 8 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWl" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/weapon/lipstick/random, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWn" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWr" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aWJ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 17 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/library) +"aWM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"aWN" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/library) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/wood, +/area/library) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/library) +"aWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"aWS" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWU" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWV" = ( +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWW" = ( +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWX" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aWY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXb" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"aXc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aXd" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aXe" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXg" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/open/space, +/area/space) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXn" = ( +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXo" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXq" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/obj/item/weapon/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXr" = ( +/obj/structure/window, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/black, +/area/mime) +"aXs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aXt" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/frame/computer{ + anchored = 1; + desc = "What, you can't see the screen?"; + name = "Mime's Computer" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"aXu" = ( +/obj/structure/reagent_dispensers/honk_cooler, +/turf/open/floor/plasteel/green, +/area/clown) +"aXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aXw" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/obj/item/weapon/bikehorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aXx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Clown Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/clown) +"aXy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aXA" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/gateway) +"aXB" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aXC" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aXK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXM" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXO" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXP" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXQ" = ( +/obj/structure/closet, +/obj/item/weapon/dnainjector/smilemut, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXR" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXU" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXY" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/bar) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYj" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hydroponics) +"aYk" = ( +/turf/closed/wall, +/area/hydroponics) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYn" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"aYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) +"aYp" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/library) +"aYu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aYv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYw" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYx" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/office) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aYF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aYG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aYN" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aYO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYQ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge"; + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYT" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYU" = ( +/obj/structure/table/glass, +/obj/item/weapon/hatchet, +/obj/item/weapon/cultivator, +/obj/item/weapon/crowbar, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYV" = ( +/obj/item/weapon/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/device/plant_analyzer, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYW" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYY" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZb" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/storage/primary) +"aZc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/storage/primary) +"aZd" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZe" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/mime) +"aZg" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/mime) +"aZh" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aZj" = ( +/obj/structure/statue/bananium/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"aZk" = ( +/obj/machinery/button/door{ + dir = 2; + id = "gateway_shutters"; + name = "Gateway Access Button"; + pixel_x = 0; + pixel_y = -27; + req_access_txt = "47" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aZl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZm" = ( +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aZp" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZs" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZt" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_evac (EAST)" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZu" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZv" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aZx" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/primary/central) +"aZz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZD" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aZF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aZG" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aZH" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/structure/table/wood, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZJ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZK" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/bar) +"aZL" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/hydroponics) +"aZQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"aZR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZS" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/paper/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/library) +"aZU" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aZV" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"aZW" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"aZX" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"aZY" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/library) +"baa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bab" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bac" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bad" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"baf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bah" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"ban" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bao" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bap" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"baq" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bar" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bau" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"baw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"bax" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bay" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/mime) +"baz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/freezer{ + desc = "..."; + name = "Mime Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"baA" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/mime) +"baB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"baC" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/clown) +"baD" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown Office"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"baE" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/clown) +"baF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baG" = ( +/obj/machinery/door/airlock/research{ + name = "Gateway Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"baJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baL" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"baM" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"baN" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/lipstick, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baR" = ( +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baS" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baZ" = ( +/obj/machinery/camera{ + c_tag = "Bar Storage" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bba" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbb" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbe" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hydroponics) +"bbg" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbi" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbk" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbm" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/weapon/watertank, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"bbo" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bbp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/library) +"bbr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbD" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bbE" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbF" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbH" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbL" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + name = "Port Hall APC"; + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcd" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bce" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West"; + dir = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bch" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bci" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bcj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bck" = ( +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bcl" = ( +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bcm" = ( +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bcn" = ( +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bco" = ( +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bcp" = ( +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bcq" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bcv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcw" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East"; + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcA" = ( +/obj/structure/piano, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcG" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcL" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcT" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcU" = ( +/turf/open/floor/wood, +/area/library) +"bcV" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"bcW" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bcY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"bda" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdb" = ( +/obj/machinery/light, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdd" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bde" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdf" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdg" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdk" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint South" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdn" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdo" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdp" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdr" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bds" = ( +/turf/open/floor/goonplaque, +/area/hallway/secondary/entry) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdK" = ( +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bdL" = ( +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bdM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bdN" = ( +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bdP" = ( +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bdQ" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdU" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdX" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdY" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bea" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"beb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bec" = ( +/obj/machinery/vending/coffee, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bed" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bef" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"bei" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"bej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bek" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/library) +"bel" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bem" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/library) +"beo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"beq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bes" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bet" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"beu" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bew" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bex" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0; + verted = -1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bey" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Red Arrivals"; + name = "Items to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bez" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0; + verted = -1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"beA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beB" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beD" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beI" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beJ" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beY" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfd" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfe" = ( +/obj/machinery/light, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bff" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfi" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bfj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bfk" = ( +/obj/structure/closet/chefcloset, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfp" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfq" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bft" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfu" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/open/floor/wood, +/area/library) +"bfv" = ( +/turf/open/floor/carpet, +/area/library) +"bfw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/library) +"bfx" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/open/floor/wood, +/area/library) +"bfy" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bfA" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfB" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bfE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfI" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Escape Arm Holding Area"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bfJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bfO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bfP" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bfQ" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"bfR" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"bfS" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bfV" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bfW" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bga" = ( +/turf/closed/wall, +/area/maintenance/port) +"bgb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgc" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bgd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bge" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/turf/closed/wall, +/area/storage/art) +"bgg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/art) +"bgh" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/art) +"bgj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bgk" = ( +/turf/closed/wall, +/area/storage/emergency2) +"bgl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgm" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgq" = ( +/turf/closed/wall, +/area/storage/tools) +"bgr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bgt" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bgu" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgw" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgx" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgy" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgH" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bgI" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hydroponics) +"bgK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"bgM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bgN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bgO" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgP" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgR" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgS" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgV" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bgW" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgZ" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bha" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bhb" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhc" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhd" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bhk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bhl" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bho" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhp" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhs" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"bhx" = ( +/turf/open/floor/plasteel, +/area/storage/art) +"bhy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bhz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bhA" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bhB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bhD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/turf/open/floor/plasteel, +/area/bridge) +"bhF" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/bridge) +"bhG" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/bridge) +"bhH" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/bridge) +"bhI" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bhJ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bhL" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/bridge) +"bhM" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "green" + }, +/area/bridge) +"bhN" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/bridge) +"bhO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/bridge) +"bhP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhS" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhU" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhV" = ( +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhY" = ( +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bhZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bia" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bib" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bic" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 2 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bie" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bif" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bih" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bij" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"bik" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bil" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bim" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/library) +"bin" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bio" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bip" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"biq" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bir" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bis" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bit" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"biu" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biD" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway Central"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biL" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biO" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"biP" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biQ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"biS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency2) +"biT" = ( +/turf/open/floor/plating, +/area/storage/emergency2) +"biU" = ( +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency2) +"biV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tools) +"bjc" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjd" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bje" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjf" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/bridge) +"bjg" = ( +/obj/structure/chair{ + dir = 1; + name = "Command Station" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/bridge) +"bji" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/bridge) +"bjj" = ( +/obj/structure/chair{ + dir = 1; + name = "Crew Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/bridge) +"bjl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/bridge) +"bjm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjr" = ( +/obj/item/stack/spacecash/c10{ + amount = 10 + }, +/obj/item/stack/spacecash/c100{ + amount = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjs" = ( +/mob/living/carbon/monkey{ + name = "Pun Pun"; + real_name = "Pun Pun"; + unique_name = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjt" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjv" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjA" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjB" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bjC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bjD" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bjH" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"bjI" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/library) +"bjJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjP" = ( +/obj/machinery/vending/cola, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bjQ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/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 = 32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjV" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/open/space, +/area/space) +"bjX" = ( +/turf/closed/wall/r_wall, +/area/rec_room) +"bjY" = ( +/turf/closed/wall, +/area/rec_room) +"bjZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/rec_room) +"bka" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bkb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkc" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkh" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkk" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkm" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkn" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bko" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkq" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/open/floor/plasteel, +/area/storage/art) +"bkr" = ( +/obj/structure/table, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bkt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency2) +"bku" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bky" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkA" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"bkB" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkC" = ( +/turf/closed/wall, +/area/bridge) +"bkD" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/bridge) +"bkE" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/bridge) +"bkF" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/bridge) +"bkG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/bridge) +"bkH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkI" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bkJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/bridge) +"bkL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/bridge) +"bkM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/bridge) +"bkO" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/bridge) +"bkP" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/bridge) +"bkQ" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/bridge) +"bkR" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkS" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkT" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkU" = ( +/obj/item/clothing/head/that{ + throwforce = 1; + throwing = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkV" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkW" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("SS13") + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkY" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkZ" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bla" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/crew_quarters/kitchen) +"bld" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/hydroponics) +"ble" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"blf" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"blg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"blh" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bli" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"blj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/open/floor/wood, +/area/library) +"blk" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/library) +"blm" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/wood, +/area/library) +"bln" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/library) +"blo" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"blp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"blq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bls" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blt" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"blu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bly" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Recreation Room APC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"blz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/carpet, +/area/rec_room) +"blA" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/rec_room) +"blB" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/hallway/secondary/entry) +"blC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blE" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/secondary/entry) +"blF" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"blG" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blI" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blJ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blN" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blR" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blY" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bma" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bmc" = ( +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmd" = ( +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/bridge) +"bme" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/bridge) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bmi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bml" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmn" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/bridge) +"bmq" = ( +/obj/structure/chair{ + dir = 1; + name = "Logistics Station" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmr" = ( +/obj/machinery/camera{ + c_tag = "Bridge East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/bridge) +"bms" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmu" = ( +/obj/machinery/camera{ + c_tag = "Bridge East Entrance"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bmw" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmy" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmz" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmA" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmC" = ( +/obj/machinery/processor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmE" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"bmH" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/open/floor/wood, +/area/library) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bmK" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"bmL" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/library) +"bmM" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/library) +"bmN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bmO" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bmP" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bmR" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmS" = ( +/obj/machinery/door/window/northright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmT" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmV" = ( +/turf/open/floor/carpet, +/area/rec_room) +"bmW" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/rec_room) +"bmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmZ" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/rec_room) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bnb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnd" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bnf" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bng" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bni" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnj" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnk" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"bnl" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnn" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bny" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bnA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bnC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bnD" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"bnE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bnJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bnL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bnN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/bridge) +"bnQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnR" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnV" = ( +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnY" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Bridge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/bridge) +"boa" = ( +/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; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bob" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"boc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"boe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bof" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bog" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bol" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bom" = ( +/obj/item/weapon/lighter, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bon" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boo" = ( +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bop" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"boq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"box" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/library) +"boz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"boC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"boF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"boH" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boI" = ( +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boK" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boN" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/wood, +/area/rec_room) +"boP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/rec_room) +"boQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/bikehorn/airhorn, +/turf/open/floor/wood, +/area/rec_room) +"boR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boS" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boT" = ( +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"boU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"boW" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"boZ" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"bpe" = ( +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bph" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpk" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/crew_quarters/locker) +"bpl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/crew_quarters/locker) +"bpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpo" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tools) +"bpz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tools) +"bpA" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpC" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/hallway/primary/central) +"bpE" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bpF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bpG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpI" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpP" = ( +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bpT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/hallway/primary/central) +"bpV" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Central Hall APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bpY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bpZ" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqe" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bqf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/library) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/library) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqw" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "Scaley."; + name = "Robusts-Many-Faces" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqy" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/rec_room) +"bqz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/rec_room) +"bqA" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder/empty, +/turf/open/floor/wood, +/area/rec_room) +"bqB" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bqC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bqD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bqF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqH" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bqJ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqM" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqQ" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqR" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqS" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/female{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqT" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqZ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"brb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"brc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brg" = ( +/turf/closed/wall, +/area/quartermaster/office) +"brh" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bri" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room) +"brk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"brl" = ( +/turf/closed/wall, +/area/bridge/meeting_room) +"brm" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brn" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brp" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brr" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bru" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brv" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brw" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brx" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bry" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brz" = ( +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brA" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brC" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brE" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"brF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brH" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brM" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"brP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/library) +"brQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"brS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"brT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/library) +"brU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brV" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"brW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Escape Hallway APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape shuttle Hallway"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"brY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bsa" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsb" = ( +/mob/living/simple_animal/cow, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bsd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bsf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bsg" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsh" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsi" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bso" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bss" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/office) +"bst" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/office) +"bsw" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsx" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsy" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Conference Room"; + dir = 2 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsA" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsB" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsF" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsH" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsN" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsP" = ( +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsQ" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsR" = ( +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsS" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bsT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsU" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsW" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/library) +"bsX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"bsY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btb" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "A Lizard Wizard!"; + name = "Merlin" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btc" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btd" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bte" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-l"; + icon_state = "stairs-l" + }, +/area/hallway/secondary/entry) +"btf" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"bth" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-stairs-r"; + icon_state = "stairs-r" + }, +/area/hallway/secondary/entry) +"bti" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/vacantoffice) +"btj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"btk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bto" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btq" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btr" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"bts" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btu" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"btv" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 5 + }, +/area/quartermaster/office) +"btw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btx" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bty" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btA" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btD" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btE" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btG" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btH" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btK" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btN" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btP" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36; + tag = "icon-direction_sec (NORTH)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btQ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btR" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btZ" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bud" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bue" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buf" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bug" = ( +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buh" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bui" = ( +/obj/structure/window, +/obj/machinery/vending/cola, +/turf/open/floor/carpet, +/area/rec_room) +"buj" = ( +/obj/structure/window, +/obj/machinery/vending/snack, +/turf/open/floor/carpet, +/area/rec_room) +"buk" = ( +/obj/structure/window, +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/carpet, +/area/rec_room) +"bul" = ( +/obj/structure/window, +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/rec_room) +"bum" = ( +/obj/structure/window, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/rec_room) +"bun" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bup" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bus" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"but" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"buv" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"buy" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"buB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"buC" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buD" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"buH" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"buI" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"buK" = ( +/obj/item/weapon/hand_labeler, +/obj/item/device/assembly/timer, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buL" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buM" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buN" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buQ" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"buS" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"buT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"buU" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"buV" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"buW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"buX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bva" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bvo" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/turf/open/floor/carpet, +/area/rec_room) +"bvp" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/rec_room) +"bvq" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/rec_room) +"bvr" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"bvu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bvw" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvy" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port) +"bvz" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker) +"bvB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bvC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvE" = ( +/obj/structure/closet/crate, +/obj/machinery/doorButtons, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvF" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvI" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bvJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bvM" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvN" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvO" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvP" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvQ" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/corp, +/obj/item/weapon/aiModule/core/full/paladin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/aiModule/core/full/robocop, +/obj/item/weapon/aiModule/core/full/custom, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvS" = ( +/obj/machinery/computer/upload/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvT" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvU" = ( +/obj/machinery/computer/upload/borg, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvV" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvW" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/reset/purge, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/aiModule/supplied/protectStation, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwd" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/item/weapon/storage/lockbox/medal{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bwf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_sci (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwi" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwj" = ( +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwl" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/hallway/primary/starboard) +"bwo" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bws" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwv" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bww" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bwA" = ( +/obj/machinery/camera{ + c_tag = "Escape Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/easel, +/turf/open/floor/carpet, +/area/rec_room) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/rec_room) +"bwH" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwI" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwK" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bwL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwO" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwU" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwV" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bxa" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxb" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxc" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxd" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bxf" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bxg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxj" = ( +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxn" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxr" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxv" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxy" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxA" = ( +/obj/structure/table/wood, +/obj/item/weapon/pinpointer, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxB" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bxC" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay) +"bxD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bxE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxG" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bxH" = ( +/turf/closed/wall, +/area/medical/morgue) +"bxI" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bxJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxL" = ( +/turf/closed/wall, +/area/storage/emergency) +"bxM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/assembly/chargebay) +"bxO" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "loadingarea" + }, +/area/hallway/primary/starboard) +"bxP" = ( +/turf/closed/wall/r_wall, +/area/assembly/robotics) +"bxR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxS" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxT" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxU" = ( +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxV" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxX" = ( +/turf/closed/wall/r_wall, +/area/toxins/lab) +"bxY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bxZ" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bya" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byc" = ( +/obj/structure/easel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"byd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/rec_room) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"byf" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byg" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byh" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/plants, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"byk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byo" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"byw" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byz" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/storage) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/office) +"byC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"byF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"byI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"byK" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Bridge Delivery"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/bridge/meeting_room) +"byL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byM" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"byQ" = ( +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byS" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"byV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byW" = ( +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byX" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/coin/plasma, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/camera, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bza" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzb" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzd" = ( +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bze" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzf" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzg" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzh" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bzl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bzm" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bzn" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bzo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzp" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzu" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bzv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bzw" = ( +/turf/closed/wall, +/area/assembly/chargebay) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bzy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/assembly/chargebay) +"bzz" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzA" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzC" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + closingLayer = 3.2; + dir = 2; + icon_state = "left"; + layer = 3.2; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzE" = ( +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"bzF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bzG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bzH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + closingLayer = 3.2; + layer = 3.2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/toxins/lab) +"bzI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bzL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bzN" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bzP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/rec_room) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + verted = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"bAj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAk" = ( +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/quartermaster/office) +"bAl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bAo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bAp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bAs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bAt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/bridge/meeting_room) +"bAu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bAv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/maintcentral) +"bAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAz" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAA" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAB" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/weapon/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAC" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAE" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bAJ" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bAK" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bAL" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAO" = ( +/turf/open/floor/plating, +/area/storage/emergency) +"bAP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency) +"bAQ" = ( +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency) +"bAR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bAS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAT" = ( +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/assembly/chargebay) +"bAV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/chargebay) +"bAW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAY" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bBa" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBc" = ( +/obj/machinery/vending/robotics, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBf" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 2; + network = list("SS13") + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"bBg" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBi" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/toxins/lab) +"bBj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bBl" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + density = 0; + dir = 4; + icon_state = "rightopen"; + layer = 3 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bBw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBy" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBz" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bBA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBB" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBI" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBK" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBL" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBO" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBP" = ( +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bBT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bridge Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBV" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBW" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBY" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bBZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCc" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bCd" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCe" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCl" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bCm" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bCn" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCs" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bCT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bCU" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDb" = ( +/turf/closed/wall, +/area/maintenance/asmaint2) +"bDc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space, +/area/space) +"bDd" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + layer = 2.5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3; + name = "disposal exit vent" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bDn" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bDt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDy" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDF" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"bDG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Personnel APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bDL" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Confrence Room South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bDO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bDQ" = ( +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDR" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bDS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"bDW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bDX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bEf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEi" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bEl" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bEm" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bEn" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/assembly/chargebay) +"bEo" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bEp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bEs" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEw" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bEy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEB" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEC" = ( +/obj/machinery/r_n_d/protolathe, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bED" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bEE" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEJ" = ( +/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 = 32 + }, +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEL" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEO" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bER" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bET" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bEZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bFa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFf" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bFi" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/office) +"bFj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bFl" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bFm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bFn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bFp" = ( +/turf/closed/wall, +/area/crew_quarters/heads) +"bFq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads) +"bFr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads) +"bFt" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/champion, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bFu" = ( +/obj/item/weapon/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bFv" = ( +/turf/closed/wall, +/area/crew_quarters/captain) +"bFw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFz" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFA" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFE" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFI" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFJ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFK" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFM" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/medical) +"bFP" = ( +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"bFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bFY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGc" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bGf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/robotics) +"bGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bGj" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGl" = ( +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGm" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGo" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGp" = ( +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGq" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bGs" = ( +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bGz" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"bGE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bGF" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + icon_state = "switch-rev"; + id = "garbage"; + name = "disposal coveyor"; + position = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGG" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGH" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGI" = ( +/obj/structure/closet, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGJ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bGQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGS" = ( +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGT" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGU" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGV" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGW" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bGX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bGY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGZ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/central) +"bHa" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bHb" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHf" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bHg" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault" + }, +/area/ai_monitored/nuke_storage) +"bHi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"bHj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/gun/projectile/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bHk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bHl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHn" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHq" = ( +/obj/structure/table/glass, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHs" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHt" = ( +/turf/closed/wall, +/area/medical/medbay) +"bHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bHx" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHy" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/medical) +"bHA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bHB" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bHD" = ( +/turf/closed/wall, +/area/medical/genetics) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bHK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bHO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHP" = ( +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHR" = ( +/obj/structure/table, +/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/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bHS" = ( +/turf/closed/wall, +/area/assembly/robotics) +"bHT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHW" = ( +/turf/closed/wall, +/area/toxins/lab) +"bHX" = ( +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"bIb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bIc" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/lab) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/lab) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"bIj" = ( +/turf/closed/wall, +/area/toxins/shuttledock) +"bIk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/outpost) +"bIl" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/outpost) +"bIm" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bIn" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/outpost) +"bIo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bIp" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIq" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bIr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bIs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIx" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/office) +"bIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bIC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/primary/central) +"bIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hallway/primary/central) +"bIG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bIN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIQ" = ( +/obj/machinery/door/airlock/vault{ + icon_state = "door_locked"; + locked = 1; + req_access_txt = "53" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bIR" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIW" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/bikehorn/rubberducky, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJb" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJc" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJd" = ( +/obj/structure/bed/roller, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bJe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJo" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJp" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTHEAST)"; + icon_state = "whiteblue"; + dir = 5 + }, +/area/medical/genetics) +"bJq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bJr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJt" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bJu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJv" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJw" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bJx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bJy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJD" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bJF" = ( +/obj/structure/table, +/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/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bJG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bJH" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/research{ + name = "Research Division" + }) +"bJJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJK" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJO" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/toxins/lab) +"bJQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/lab) +"bJR" = ( +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bJT" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Science Outpost Dock APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bJX" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/outpost) +"bJY" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bJZ" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bKa" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_ss13"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/open/space, +/area/space) +"bKb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKc" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKi" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKj" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKm" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKo" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKp" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bKq" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bKr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bKs" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bKt" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bKu" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKv" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Vault Access"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bKy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKz" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"bKD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKF" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bKH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKJ" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bKK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKM" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor2"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKU" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKW" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKX" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bKY" = ( +/turf/open/floor/plasteel, +/area/medical/genetics) +"bKZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 14 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bLa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bLb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLf" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"bLh" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/assembly/robotics) +"bLj" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bLm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLo" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLp" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Experimentor Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLq" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLr" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLs" = ( +/obj/structure/closet/emcloset{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLw" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bLz" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bLA" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLD" = ( +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLE" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bLF" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/storage) +"bLG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bLH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/device/multitool, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bLQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/ai_monitored/nuke_storage) +"bLR" = ( +/turf/closed/wall, +/area/teleporter) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLT" = ( +/obj/structure/table, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bLU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLW" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLY" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bMc" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMn" = ( +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bMp" = ( +/obj/structure/table/glass, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor2"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMr" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bMs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bMt" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMu" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMw" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/chargebay) +"bMx" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 4 + }, +/area/assembly/robotics) +"bMy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMz" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMB" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bMD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bML" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/explab) +"bMO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMP" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"bMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bMZ" = ( +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bNa" = ( +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "7" + }, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bNb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost_home"; + name = "outpost shuttle bay"; + width = 7 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost"; + name = "outpost shuttle"; + port_angle = 90; + width = 7 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall3" + }, +/area/shuttle/outpost) +"bNc" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bNd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bNe" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/folder/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bNl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bNm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNn" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/coin/gold, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNq" = ( +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"bNr" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/ai_monitored/nuke_storage) +"bNs" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bNw" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNx" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/ai_monitored/nuke_storage) +"bNy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bNA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bNC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bND" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bNI" = ( +/obj/structure/table, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNS" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNU" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/medical_cloning, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bNZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOa" = ( +/obj/structure/window/reinforced, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOb" = ( +/turf/closed/wall/r_wall, +/area/assembly/chargebay) +"bOc" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bOd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bOe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOk" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOr" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOy" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/white, +/area/toxins/shuttledock) +"bOz" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/open/space, +/area/space) +"bOA" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bOC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bOG" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bOH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOI" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bON" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOQ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bOR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/teleporter) +"bOS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOT" = ( +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOU" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/teleporter) +"bOV" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOW" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/teleporter) +"bOY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPb" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPc" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bPd" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/sleeper) +"bPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera{ + c_tag = "Medbay Hallway"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPh" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPj" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/disks, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPk" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 12 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bPn" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPp" = ( +/obj/machinery/camera{ + c_tag = "Research Division West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bPz" = ( +/turf/closed/wall, +/area/crew_quarters/hor) +"bPA" = ( +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPC" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPD" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bPG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPI" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light, +/obj/machinery/status_display{ + density = 0; + pixel_y = -30; + supply_display = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPK" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bPL" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPM" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #4" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bPN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPO" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPR" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"bPS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bPU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bPV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bPW" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bPX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQc" = ( +/obj/machinery/button/door{ + id = "vaultshut"; + name = "Vault Shutters Control"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQg" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bQi" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/teleporter) +"bQj" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/teleporter) +"bQk" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/teleporter) +"bQl" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/teleporter) +"bQm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/medbay) +"bQo" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/medbay) +"bQp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQs" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQt" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQu" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bQv" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/sleeper) +"bQx" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQy" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQz" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bQF" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQG" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = 23 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQI" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/disk/tech_disk/gooncode, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQV" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQW" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQX" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bQY" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/crew_quarters/hor) +"bQZ" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/crew_quarters/hor) +"bRa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"bRb" = ( +/turf/closed/wall, +/area/toxins/explab) +"bRc" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/book/manual/experimentor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRd" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/toxins/explab) +"bRe" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRf" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/explab) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRi" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/outpost) +"bRm" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/outpost) +"bRn" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bRo" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bRq" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bRt" = ( +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/supply) +"bRv" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"bRw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/supply) +"bRx" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bRB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bRC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Vault Access"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/ai_monitored/nuke_storage) +"bRD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South-East"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/sleeper) +"bRF" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bRG" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRH" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/sleeper) +"bRJ" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRN" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRP" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Research"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRS" = ( +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bRT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bRU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRV" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRW" = ( +/turf/closed/wall/r_wall, +/area/toxins/server) +"bRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bRY" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bSa" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/science) +"bSb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bSe" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/item/weapon/coin/uranium, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSf" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSg" = ( +/obj/machinery/computer/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSh" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSi" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/crew_quarters/hor) +"bSj" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSk" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/hor) +"bSl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSo" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSp" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSs" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSu" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSz" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bSC" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"bSD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSE" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSM" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bSN" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSO" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSQ" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSS" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bST" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSU" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSV" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bTa" = ( +/obj/machinery/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTb" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTc" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTd" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (SOUTHEAST)"; + icon_state = "whiteblue"; + dir = 6 + }, +/area/medical/genetics) +"bTe" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTg" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"bTk" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bTn" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTo" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTq" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/science) +"bTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTt" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of your own office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTu" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/science) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bTw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bTx" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen/blue, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTz" = ( +/obj/machinery/computer/mecha, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTA" = ( +/obj/structure/rack, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTB" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTD" = ( +/turf/open/floor/engine, +/area/toxins/explab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTG" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTH" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTK" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTN" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bUa" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUh" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUl" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bUm" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUs" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUu" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUv" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUy" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUA" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/science) +"bUC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUD" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/science) +"bUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUH" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUM" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUN" = ( +/obj/machinery/r_n_d/experimentor, +/turf/open/floor/engine, +/area/toxins/explab) +"bUO" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bUP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bUQ" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/status_display{ + density = 0; + pixel_x = -32; + pixel_y = 0; + supply_display = 1 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUS" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUT" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUU" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUV" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bVa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bVb" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/supply) +"bVd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"bVe" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/supply) +"bVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bVg" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVu" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVw" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVA" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVE" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bVF" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVI" = ( +/turf/closed/wall, +/area/medical/cmo) +"bVJ" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVK" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVP" = ( +/obj/machinery/r_n_d/server/core, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVR" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bVS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVT" = ( +/obj/machinery/computer/rdservercontrol, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVV" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/science) +"bVX" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVY" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVZ" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/science) +"bWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/item/weapon/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWd" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/computer/card/minor/rd, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWe" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("SS13","RD") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWi" = ( +/obj/machinery/camera{ + c_tag = "Experimentor Lab Chamber"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWo" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bWp" = ( +/turf/closed/wall, +/area/storage/tech) +"bWq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/central) +"bWt" = ( +/turf/closed/wall, +/area/janitor) +"bWu" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bWv" = ( +/turf/closed/wall, +/area/maintenance/asmaint) +"bWw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWx" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"bWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWz" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWA" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWB" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWC" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWD" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bWF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWG" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWH" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bWM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/cmo) +"bWN" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWO" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWR" = ( +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"bWS" = ( +/turf/closed/wall, +/area/toxins/storage) +"bWT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWV" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWW" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"bWZ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXl" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/storage/tech) +"bXm" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXn" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 2 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Tech Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXo" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXp" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXq" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bXt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bXu" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/plasteel, +/area/janitor) +"bXv" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/vehicle/janicart, +/turf/open/floor/plasteel, +/area/janitor) +"bXx" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/janitor) +"bXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bXz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXA" = ( +/turf/open/floor/plasteel, +/area/janitor) +"bXB" = ( +/obj/machinery/door/window/westleft{ + name = "Janitoral Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/janitor) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/janitor) +"bXD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "surgery"; + name = "Surgery Shutter Control"; + pixel_x = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXH" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXJ" = ( +/obj/structure/table, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bXL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bXO" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXR" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXW" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXX" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXY" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/obj/item/clothing/tie/stethoscope, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bYa" = ( +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYb" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Misc Research APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYg" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYi" = ( +/turf/closed/wall, +/area/toxins/mixing) +"bYj" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/plasmaresearch, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYo" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"bYr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"bYs" = ( +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"bYt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/mixing) +"bYy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/labor) +"bYz" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/aft) +"bYJ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYL" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYN" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/open/floor/plating, +/area/storage/tech) +"bYO" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bYR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bYT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bYY" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"bYZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/janitor) +"bZa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 6 + }, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZc" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZi" = ( +/obj/structure/table/optable, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bZq" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZt" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZy" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZz" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZA" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/storage) +"bZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZF" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/mixing) +"bZH" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZP" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/mixing) +"bZQ" = ( +/turf/closed/indestructible, +/area/toxins/test_area) +"bZR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"bZS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZT" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bZV" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"bZW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZY" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"caa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cab" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cac" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cad" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cae" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"caf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"cag" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cah" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/pandemic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/computer/rdconsole, +/obj/item/weapon/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/destructive_analyzer, +/obj/item/weapon/circuitboard/machine/protolathe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/computer/aifixer, +/obj/item/weapon/circuitboard/computer/teleporter, +/obj/item/weapon/circuitboard/machine/circuit_imprinter, +/obj/item/weapon/circuitboard/machine/mechfab, +/turf/open/floor/plating, +/area/storage/tech) +"cai" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/mining, +/obj/item/weapon/circuitboard/machine/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/computer/arcade/battle, +/turf/open/floor/plating, +/area/storage/tech) +"caj" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/telecomms/processor, +/obj/item/weapon/circuitboard/machine/telecomms/receiver, +/obj/item/weapon/circuitboard/machine/telecomms/server, +/obj/item/weapon/circuitboard/machine/telecomms/bus, +/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, +/obj/item/weapon/circuitboard/computer/message_monitor{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cak" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cal" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"cam" = ( +/obj/structure/table, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"can" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/janitor) +"cao" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/janitor) +"cap" = ( +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"caq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/janitor) +"car" = ( +/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/open/floor/plating, +/area/maintenance/asmaint) +"cas" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cat" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cav" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"cax" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cay" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"caA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caB" = ( +/obj/machinery/vending/wallmed{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("SS13") + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caG" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv4"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caH" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv4"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caL" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Medical Officer"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caN" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/cmo) +"caQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caS" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"caZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cba" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"cbb" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cbf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/mixing) +"cbg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"cbi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbk" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cbl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cbm" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cbn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cbo" = ( +/obj/item/weapon/ore/iron, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbq" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cbs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbt" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbu" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cby" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbA" = ( +/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 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/janitor) +"cbI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/janitor) +"cbJ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbL" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbS" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating"; + dir = 1; + network = list("SS13"); + pixel_x = 22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbV" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbW" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbX" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbY" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cca" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccb" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccc" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccd" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cce" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccg" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cch" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cci" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"cck" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/cartridge/medical, +/obj/item/weapon/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccl" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccn" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"cco" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"ccp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ccq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"cct" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccw" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible, +/area/toxins/test_area) +"ccL" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccN" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "48" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_angle = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"ccP" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"ccQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccU" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccW" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"ccX" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/storage/tech) +"ccY" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/cloning{ + pixel_x = 0 + }, +/obj/item/weapon/circuitboard/computer/med_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/clonescanner, +/obj/item/weapon/circuitboard/machine/clonepod, +/obj/item/weapon/circuitboard/computer/scan_consolenew, +/turf/open/floor/plating, +/area/storage/tech) +"ccZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cda" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/powermonitor{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/computer/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdb" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cde" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdn" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cds" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cdt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdv" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cdw" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdx" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdy" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdA" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdB" = ( +/turf/closed/wall, +/area/toxins/xenobiology) +"cdC" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cdD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdG" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdI" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdJ" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdK" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdO" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/mixing) +"cdP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cdS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/mixing) +"cdT" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdU" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdW" = ( +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cdX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdY" = ( +/obj/item/weapon/ore/silver, +/obj/item/weapon/ore/silver, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cdZ" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cea" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"ceb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cec" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/pickaxe{ + pixel_x = 5 + }, +/obj/item/weapon/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ced" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cee" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cef" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cej" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/storage/tech) +"cek" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/storage/tech) +"cel" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cem" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tech) +"ceo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ceq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"ces" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"cet" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"ceu" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cev" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cex" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cey" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceF" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay) +"ceG" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceH" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room 2"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay) +"ceK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "CM Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceP" = ( +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceQ" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceR" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceS" = ( +/obj/machinery/door/window/southleft{ + name = "Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceU" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceW" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/toxins/xenobiology) +"ceX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceZ" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cfa" = ( +/obj/structure/sign/fire, +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"cfb" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cfc" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfd" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/toxins/mixing) +"cff" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfg" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfh" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfi" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cfj" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfk" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"cfl" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cfm" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfp" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/storage/tech) +"cfq" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfr" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/open/floor/plating, +/area/storage/tech) +"cfs" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cft" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfu" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"cfw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cfA" = ( +/turf/closed/wall/r_wall, +/area/atmos) +"cfB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/atmos) +"cfG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfK" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfX" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfZ" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cga" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgb" = ( +/obj/machinery/smartfridge/extract, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgc" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cge" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgf" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cgh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cgi" = ( +/obj/machinery/door/poddoor{ + id = "mixvent2"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgk" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cgm" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor2"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump2"; + exterior_door_tag = "tox_airlock_exterior2"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior2"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cgo" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cgp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cgq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgs" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgu" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cgw" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/primary/aft) +"cgx" = ( +/turf/closed/wall, +/area/atmos) +"cgy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/atmos) +"cgz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgD" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/atmos) +"cgE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cgF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "wloop_atm_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 2 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgL" = ( +/turf/open/floor/plasteel, +/area/atmos) +"cgM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgN" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgO" = ( +/turf/closed/wall, +/area/medical/virology) +"cgP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cgQ" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cha" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"chb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"chd" = ( +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"che" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior2"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chf" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump2" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chg" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior2"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chi" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"chk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chl" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cho" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chq" = ( +/turf/closed/wall, +/area/construction) +"chr" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction) +"chs" = ( +/turf/open/floor/plating, +/area/construction) +"cht" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/construction) +"chu" = ( +/turf/open/floor/plasteel, +/area/construction) +"chv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/construction) +"chw" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"chx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"chB" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"chF" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chG" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chN" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/atmos) +"chO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"chP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chQ" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chS" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/virology) +"chU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/virology) +"chW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chX" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cia" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cic" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cid" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cig" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cih" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cik" = ( +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cil" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cim" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent2"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker2"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cio" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cip" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ciq" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cir" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"cis" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction) +"cit" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/construction) +"ciu" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"civ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ciw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/aft) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/atmos) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciD" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/atmos) +"ciF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/autolathe/atmos, +/turf/open/floor/plasteel, +/area/atmos) +"ciG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/atmos) +"ciH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciI" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste In"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciN" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"ciO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/atmos) +"ciR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ciT" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"ciU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciW" = ( +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ciY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ciZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cja" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cjg" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cji" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjj" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjk" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjn" = ( +/obj/structure/table, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjp" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjq" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cjt" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cju" = ( +/turf/closed/wall, +/area/toxins/misc_lab) +"cjv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjw" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjy" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjz" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cjC" = ( +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cjD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjE" = ( +/obj/structure/girder, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"cjG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjH" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjM" = ( +/obj/structure/closet/crate, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/construction) +"cjO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"cjQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cjU" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cjV" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cjW" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cka" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ckb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckl" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckm" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"ckn" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/atmos) +"ckp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor"; + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cks" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckt" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cku" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckx" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cky" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckB" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckC" = ( +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckD" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"ckE" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Testing Lab North"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + req_access = null + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckM" = ( +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"ckN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ckO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckQ" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cla" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"clc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cle" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clf" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"clg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/atmos) +"cli" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cll" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Unfiltered to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cls" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"clt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"clv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "waste_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"clw" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cly" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"clB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clE" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clK" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"clM" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clN" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clR" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/target_stake, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"clS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"clT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"clU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/rack, +/obj/item/clothing/head/cone, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/aft) +"clW" = ( +/obj/item/weapon/storage/secure/safe, +/turf/closed/wall, +/area/maintenance/aft) +"clX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clY" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + tag = "icon-connector_map (WEST)"; + icon_state = "connector_map"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cma" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cme" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmf" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmg" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/construction) +"cmh" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/construction) +"cmi" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/construction) +"cmj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cmk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cml" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plating, +/area/atmos) +"cmm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cmo" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"cmp" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/atmos) +"cmq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/open/floor/plasteel, +/area/atmos) +"cmr" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cmt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmv" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmH" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Module" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmI" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmJ" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmL" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cmN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmR" = ( +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmU" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmV" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/toxins/misc_lab) +"cmY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cmZ" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses/garb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cna" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/clothing/tie/black, +/obj/item/clothing/tie/red, +/obj/item/clothing/mask/bandana/red, +/obj/item/clothing/mask/bandana/skull, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cne" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cng" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cni" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"cnj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnl" = ( +/obj/machinery/power/apc{ + name = "Aft Hall APC"; + dir = 8; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cnm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnn" = ( +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/atmos) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/atmos) +"cnq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnt" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/atmos) +"cny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tanks" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnA" = ( +/turf/open/floor/engine/n2o, +/area/atmos) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/medical/virology) +"cnE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnI" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnK" = ( +/obj/structure/disposalpipe/segment, +/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/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cnL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnM" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnS" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnT" = ( +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnU" = ( +/obj/structure/target_stake, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cnW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnX" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/storage/box/cups, +/turf/open/floor/plating, +/area/maintenance/aft) +"coa" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cob" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coc" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cog" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cok" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"col" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Telecoms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"com" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/atmos) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"coq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cou" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cox" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/atmos) +"coy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coD" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/atmos) +"coE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coF" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/atmos) +"coG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coK" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coM" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"coO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coP" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"coQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall, +/area/toxins/xenobiology) +"coS" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coT" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coV" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coW" = ( +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"coX" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coZ" = ( +/obj/machinery/camera{ + c_tag = "Testing Firing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpa" = ( +/obj/structure/target_stake, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpb" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/maintenance/aft) +"cpc" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpd" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cpg" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cph" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cpk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/atmos) +"cpp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/atmos) +"cps" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/atmos) +"cpt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/atmos) +"cpu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cpw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpx" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "n2o"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/atmos) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cpA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cpB" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cpJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpK" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpM" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cpP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/misc_lab) +"cpQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpR" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cpS" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cpT" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cpU" = ( +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpW" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpY" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpZ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqa" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqb" = ( +/obj/machinery/computer/message_monitor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cqc" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqe" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cqg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqj" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cqk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cql" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 8; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqo" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cqp" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqr" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqs" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"cqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqv" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqx" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqy" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqC" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqE" = ( +/obj/structure/rack, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Test"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet, +/obj/item/pipe{ + dir = 4; + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cqJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/weapon/paper/range, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHEAST)"; + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/misc_lab) +"cqK" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHWEST)"; + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/misc_lab) +"cqL" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cqM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqO" = ( +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/aft) +"cqP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/pill/mannitol, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqR" = ( +/turf/closed/wall, +/area/maintenance/strangeroom) +"cqS" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cqT" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqW" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqZ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cra" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"crf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"crg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/atmos) +"crh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"cri" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"crj" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"crk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crl" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"crm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"crn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"cro" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/atmos) +"crq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Plasma Tank" + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crs" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cru" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"crv" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + anchored = 1; + density = 0; + pixel_x = -30 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cry" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"crA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"crD" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crE" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crF" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crL" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"crP" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crQ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crT" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"crU" = ( +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crV" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crW" = ( +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crX" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crY" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csa" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csd" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csn" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"cso" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/atmos) +"csp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"csq" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Toxin Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/atmos) +"csr" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor"; + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"css" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"csu" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csv" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"csx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology South"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"csD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"csE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"csH" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csK" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"csP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csV" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/tcommsat/computer) +"csW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csX" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"ctc" = ( +/turf/closed/wall, +/area/engine/break_room) +"ctd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cte" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cth" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cti" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"ctj" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ctk" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"ctl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/item/weapon/wrench, +/turf/open/floor/plasteel, +/area/atmos) +"cto" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"ctp" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "plasma"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"ctr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cts" = ( +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"ctt" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"ctu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"ctx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/weapon/wrench, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/maintenance/asmaint) +"cty" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ctz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint) +"ctA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctD" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ctE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctF" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ctG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"ctH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/misc_lab) +"ctI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctK" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctM" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/r_arm, +/obj/item/weapon/shard, +/obj/item/weapon/hatchet, +/obj/item/weapon/staplegun, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctO" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/l_leg, +/obj/item/bodypart/l_arm, +/obj/item/weapon/restraints/handcuffs, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"ctR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"ctS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ctU" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/bluegrid{ + dir = 8; + icon_state = "vault"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cua" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cub" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cuc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cud" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/tcommsat/computer) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cuf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Telecoms Monitoring"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cui" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cuj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuk" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cul" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cum" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"cun" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cuo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cup" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cuq" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"cur" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/engineering) +"cus" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"cut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cuu" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuv" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/atmos) +"cux" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/maintenance/asmaint) +"cuG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cuH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/asmaint) +"cuI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuN" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuS" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cuU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cuV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cuW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cuX" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuY" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuZ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel{ + tag = "icon-damaged5"; + icon_state = "damaged5" + }, +/area/maintenance/strangeroom) +"cva" = ( +/obj/machinery/camera{ + c_tag = "Telecoms Server Room"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cvb" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvc" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/tcommsat/computer) +"cve" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cvi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cvk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cvp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/plasteel, +/area/atmos) +"cvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/atmos) +"cvr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"cvs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvt" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/weapon/cigbutt, +/turf/open/floor/plasteel, +/area/atmos) +"cvu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/atmos) +"cvw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank" + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvy" = ( +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvG" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cvI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cvJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvK" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("Test","RD"); + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cvL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"cvM" = ( +/obj/machinery/camera{ + c_tag = "Testing Lab South"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvN" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvO" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cvQ" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cvS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvT" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/strangeroom) +"cvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/strangeroom) +"cvW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cvX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cvY" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/chem_pile, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cvZ" = ( +/obj/machinery/message_server, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwa" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwc" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwe" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cwg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"cwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwt" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwu" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cwv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cwy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwz" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/atmos) +"cwA" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor"; + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwF" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwP" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cwR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cwU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cwX" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/spirit_board, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cxd" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/restraints/handcuffs, +/obj/item/weapon/pen, +/obj/item/weapon/paper{ + info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; + name = "Strange Paper" + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/strangeroom) +"cxe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"cxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gibber, +/turf/open/floor/plasteel, +/area/maintenance/strangeroom) +"cxg" = ( +/obj/machinery/vending/cart{ + desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; + icon_state = "cart-broken"; + name = "Old Machine"; + product_slogans = "Bzzzt..-6-4-!"; + products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cxh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxi" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxj" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxk" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxl" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cxm" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxx" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxC" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxD" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cxF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cxG" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = "co2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/atmos) +"cxK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cxY" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxZ" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyc" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cye" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cym" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cyn" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"cyo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyr" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyt" = ( +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyv" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/break_room) +"cyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyB" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cyI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/atmos) +"cyK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cyL" = ( +/obj/structure/sign/fire{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cyN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyP" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyX" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyZ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cza" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czc" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czd" = ( +/obj/item/clothing/under/rank/vice, +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"czi" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czj" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/chiefs_office) +"czl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/engine/break_room) +"czm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/break_room) +"czn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/engine/break_room) +"czo" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = "n2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"czp" = ( +/turf/closed/wall, +/area/maintenance/incinerator) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/incinerator) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"czs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/minimeteor, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czt" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/snacks/donkpocket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/c_tube, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/caution, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"czB" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/maintenance/portsolar) +"czE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"czF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"czG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czN" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/engine/chiefs_office) +"czO" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czQ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czS" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"czV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/engineering) +"czW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/atmos) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/atmos) +"czY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAa" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = "o2"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAd" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAe" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/kitchenspike_frame, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAh" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAi" = ( +/obj/structure/table/wood, +/obj/item/weapon/retractor/alien, +/obj/item/weapon/reagent_containers/glass/bowl, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAj" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"cAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cAE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAF" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAG" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"cAI" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAP" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAT" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAW" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/atmos) +"cAY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/atmos) +"cAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/atmos) +"cBa" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/atmos) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/atmos) +"cBc" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/atmos) +"cBd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/atmos) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 10 + }, +/area/atmos) +"cBf" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "arrival" + }, +/area/atmos) +"cBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 6 + }, +/area/atmos) +"cBh" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cBi" = ( +/turf/open/floor/plating, +/area/atmos) +"cBj" = ( +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBk" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/incinerator) +"cBl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/incinerator) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/lighter/greyscale, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBq" = ( +/obj/structure/chair, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBr" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cBv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBE" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cBH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBZ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCd" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCg" = ( +/turf/closed/wall, +/area/engine/engineering) +"cCh" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCi" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCk" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/coin/plasma, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCn" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCq" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCr" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCy" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCC" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical, +/obj/item/pizzabox/mushroom, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCE" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCH" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cCJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCN" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCO" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/switchblade{ + force = 12 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCQ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCS" = ( +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCY" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cCZ" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cDa" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cDb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDd" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDi" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/computer/card/minor/ce, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDj" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDl" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space) +"cDq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space, +/area/space) +"cDr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space) +"cDs" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/maintenance/incinerator) +"cDt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/tie/black, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDx" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/shard, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDB" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDC" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDD" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cDH" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDI" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cDJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDU" = ( +/obj/item/weapon/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/item/weapon/cartridge/atmos, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDV" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cEa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEb" = ( +/obj/item/clothing/head/cone, +/obj/item/weapon/restraints/handcuffs/cable/orange, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Biohazard Disposals"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEf" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEk" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEl" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEm" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEn" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEA" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/weapon/circuitboard/computer/solar_control, +/obj/item/weapon/electronics/tracker, +/obj/item/weapon/paper/solar, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEB" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cED" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEF" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cEG" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"cEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEM" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEP" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cER" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cES" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1443; + icon_state = "vent_map"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cEU" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEV" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/incinerator) +"cEW" = ( +/obj/item/clothing/suit/toggle/labcoat/mad, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEX" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cEY" = ( +/obj/structure/table/wood, +/obj/item/organ/internal/butt/xeno, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFa" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (NORTH)"; + icon_state = "manifold"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFf" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFl" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFr" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFs" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cFv" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cFw" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cFx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engine/engineering) +"cFz" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cFC" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/wrench, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cFJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFK" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFM" = ( +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics O2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFP" = ( +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Air-mix Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFS" = ( +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFT" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFU" = ( +/obj/item/weapon/kitchen/knife, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFV" = ( +/obj/structure/table/wood, +/obj/item/weapon/scalpel, +/obj/item/weapon/wirecutters, +/obj/item/organ/brain/alien, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFW" = ( +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFX" = ( +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGe" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGh" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cGn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGo" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGp" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGq" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/engine/engineering) +"cGs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cGt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGE" = ( +/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/open/floor/plasteel, +/area/engine/engineering) +"cGF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGI" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cGJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cGK" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cGL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hatchet, +/obj/item/weapon/lighter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cGM" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGN" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/crowbar, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGO" = ( +/obj/item/weapon/bedsheet/cult, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGP" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGT" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGU" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGW" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGX" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGY" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGZ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHa" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cHd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHe" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cHf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cHg" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cHh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "SMES Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHi" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/engine/engineering) +"cHk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Middle"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cHl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHp" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cHr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Waste Out"; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHt" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cHv" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cHz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHC" = ( +/obj/machinery/door/window{ + name = "SMES Chamber"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHD" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cHG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "SMES Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/engine/engineering) +"cHJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHY" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/airlock_painter, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cIa" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cIb" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIc" = ( +/turf/open/floor/plating, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cId" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donkpockets, +/turf/open/floor/plating, +/area/space) +"cIf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIh" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIn" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIq" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engineering) +"cIs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"cIC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIF" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIG" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cII" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engineering) +"cIM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cIN" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIO" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIP" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cIQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space, +/area/space) +"cIR" = ( +/obj/structure/table_frame, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint2) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space) +"cIT" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIV" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIW" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cIZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"cJa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cJb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cJc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJj" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"cJk" = ( +/obj/structure/window, +/turf/open/floor/plating, +/area/toxins/mixing) +"cJl" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "0"; + req_one_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cJm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/engine/engineering) +"cJt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"cJu" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cJv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJz" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engineering) +"cJA" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cJB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod4"; + shuttleId = "pod4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"cJF" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "asteroid_pod4" + }, +/turf/open/space, +/area/space) +"cJG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJI" = ( +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJK" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/engine/engineering) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJN" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJO" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cJR" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJS" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJT" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJV" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJW" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/engineering) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/engine/engineering) +"cJZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engine/engineering) +"cKa" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKd" = ( +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cKe" = ( +/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_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKf" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cKh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKj" = ( +/obj/structure/sign/pods{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engineering) +"cKk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Escape Pod"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cKl" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKm" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKn" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKs" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/camera{ + c_tag = "Engineering Materials"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKt" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKu" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cKw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKz" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKM" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "32" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering) +"cKU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKZ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLa" = ( +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLb" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Port Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering North" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLe" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLf" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLh" = ( +/obj/structure/transit_tube{ + tag = "icon-Block"; + icon_state = "Block" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLi" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/sign/securearea{ + name = "EXTERNAL AIRLOCK"; + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cLk" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/item/weapon/lighter{ + lit = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Entrance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLo" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLr" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/weapon/storage/backpack/industrial, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLt" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLz" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLF" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLH" = ( +/obj/structure/transit_tube/station{ + dir = 8; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/obj/structure/transit_tube_pod, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cLJ" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLM" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLO" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLP" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Supermatter Control Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cLS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLX" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMa" = ( +/obj/structure/table, +/obj/item/weapon/pocketknife, +/obj/item/weapon/reagent_containers/food/snacks/beans{ + bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); + desc = "Smells kind of funny." + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMb" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMd" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMg" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMh" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMn" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/reagent_containers/pill/charcoal, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"cMp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMq" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cMr" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMv" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/engine/supermatter) +"cMw" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMx" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMz" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/engine/supermatter) +"cMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/engine/engineering) +"cMD" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/turf/open/space, +/area/space) +"cME" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/open/space, +/area/space) +"cMF" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/weapon/paper/gravity_gen{ + layer = 3 + }, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMM" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMQ" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cMR" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/turf/open/space, +/area/space) +"cMS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMT" = ( +/obj/structure/transit_tube, +/turf/open/space, +/area/space) +"cMU" = ( +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/open/space, +/area/space) +"cMV" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/open/space, +/area/space) +"cMW" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMX" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMZ" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNa" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNc" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNd" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNe" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNf" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNg" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNh" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNk" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNl" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNp" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNs" = ( +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/space) +"cNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNu" = ( +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/space) +"cNv" = ( +/obj/item/weapon/crowbar, +/turf/open/space, +/area/space) +"cNw" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNx" = ( +/turf/closed/wall/r_wall, +/area/aisat) +"cNy" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cNz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cNA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/engine/engine_smes) +"cNC" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cND" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cNE" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cNF" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/aisat) +"cNG" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/aisat) +"cNH" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/aisat) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNJ" = ( +/obj/item/weapon/weldingtool, +/turf/open/space, +/area/space) +"cNK" = ( +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/space) +"cNM" = ( +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/space) +"cNN" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNO" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/open/space, +/area/space) +"cNP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNQ" = ( +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNS" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNT" = ( +/obj/structure/transit_tube{ + tag = "icon-S-NW"; + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNU" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNV" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNW" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNZ" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cOd" = ( +/turf/closed/wall, +/area/aisat) +"cOe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/aisat) +"cOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Teleporter Room"; + req_access_txt = "17;65" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cOk" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cOl" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOr" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOs" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cOt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOv" = ( +/obj/structure/transit_tube/station{ + dir = 4; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOy" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/aisat) +"cOz" = ( +/turf/open/floor/plating, +/area/aisat) +"cOA" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cOB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cOF" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block"; + tag = "icon-Block (NORTH)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOI" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cOM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cON" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "MiniSat Entrance"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat External Power APC"; + pixel_x = -27; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOW" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOY" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOZ" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/aisat) +"cPc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cPd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/aisat) +"cPe" = ( +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/closed/wall, +/area/aisat) +"cPj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cPm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPo" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPw" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cPx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cPz" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cPA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cPB" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPC" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPI" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPN" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/aisat) +"cPP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPR" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPT" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPU" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + cell_type = 2500; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space, +/area/space) +"cPW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cPY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cPZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQb" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cQc" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQd" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Antechamber"; + dir = 1; + network = list("MiniSat") + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cQh" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQj" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQk" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_locked"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQp" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQq" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + dir = 2; + network = list("MiniSat","RD"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQr" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQw" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQy" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQA" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQC" = ( +/turf/closed/wall, +/area/turret_protected/ai) +"cQD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQE" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQF" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQH" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQI" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQJ" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber South"; + dir = 2; + network = list("RD","MiniSat") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQN" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQV" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cQW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQY" = ( +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cQZ" = ( +/obj/structure/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/secure) +"cRc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRd" = ( +/obj/structure/rack, +/obj/item/weapon/crowbar/red, +/obj/item/weapon/wrench, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cRf" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cRg" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat Maint APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air Out"; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/ai_monitored/storage/secure) +"cRj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/ai_monitored/storage/secure) +"cRk" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/ai_monitored/storage/secure) +"cRl" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRm" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cRn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/aisat) +"cRo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/aisat) +"cRy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRB" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cRF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cRG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cRH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRI" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRJ" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRK" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cRP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRS" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRU" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 2; + name = "SMES room APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRV" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cRW" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cRZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cSa" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSb" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Supermatter Control Room"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cSc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSf" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSg" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSi" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera{ + c_tag = "Port Engineering North-East"; + dir = 5; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSo" = ( +/obj/machinery/vending/tool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSp" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cSB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSC" = ( +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cSE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/engine/supermatter) +"cSG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSH" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "smblast"; + name = "Control Room Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/engine/supermatter) +"cSJ" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSK" = ( +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSL" = ( +/obj/item/device/radio/off, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSM" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSN" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSO" = ( +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSP" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSQ" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSS" = ( +/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 = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cST" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTe" = ( +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cTg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cTi" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTo" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smblast" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTr" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTB" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTD" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTF" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTG" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTI" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTJ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTK" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTL" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + layer = 3 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Center" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTQ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Supermatter APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTS" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTY" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/port_engineering) +"cTZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUa" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cUe" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUh" = ( +/obj/machinery/atmospherics/components/binary/volume_pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/power/emitter, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUs" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUx" = ( +/turf/closed/wall, +/area/engine/port_engineering) +"cUA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUF" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUG" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space) +"cUJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cUL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUN" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Filtering Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUO" = ( +/obj/machinery/camera{ + c_tag = "Filtering Room" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters"; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVb" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVc" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cVf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVg" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space) +"cVl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVn" = ( +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVp" = ( +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVv" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVw" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "superinput" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVC" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/port_engineering) +"cVG" = ( +/obj/item/weapon/wirecutters, +/turf/open/space, +/area/space) +"cVH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVL" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVM" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVN" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVO" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVP" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVQ" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVR" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Filtering Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVT" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVU" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/supermatter) +"cVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVY" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/supermatter) +"cVZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cWe" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWj" = ( +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWl" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWo" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWp" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWq" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWu" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWv" = ( +/obj/machinery/mass_driver{ + id = "engicannon" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + tag = "smin"; + volume_rate = 700 + }, +/obj/machinery/power/supermatter_shard{ + anchored = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWx" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWz" = ( +/turf/open/floor/plating, +/area/engine/supermatter) +"cWA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space) +"cWE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWF" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWG" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWI" = ( +/obj/machinery/particle_accelerator/control_box{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 0; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWK" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWL" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage1"; + name = "secure storage" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/port_engineering) +"cWM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWQ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWV" = ( +/obj/structure/sign/securearea{ + color = ""; + desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; + name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWX" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space) +"cWY" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space) +"cXc" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXd" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXe" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXf" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXg" = ( +/obj/machinery/camera{ + c_tag = "Engineering PA"; + dir = 9; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 2; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXi" = ( +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXj" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/camera{ + c_tag = "Port Engineering Secure Storage"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cXl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXn" = ( +/obj/machinery/door/poddoor{ + id = "engicannon" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cXo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXq" = ( +/obj/structure/window{ + color = "red"; + desc = "A window, break in case of emergency."; + dir = 1; + icon_state = "window"; + tag = "icon-window (NORTH)" + }, +/obj/machinery/button/massdriver{ + id = "engicannon"; + name = "\improper JETTISON ENGINE"; + pixel_y = -22; + req_access_txt = "32" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/supermatter) +"cXr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXt" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXw" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage1"; + name = "Secure Storage"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "10" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering Middle"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXx" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + volume_rate = 5000 + }, +/turf/open/floor/plating/airless, +/area/space) +"cXz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/space) +"cXA" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXE" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXI" = ( +/obj/machinery/field/generator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXM" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Port Engineering South" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXY" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYb" = ( +/obj/item/device/multitool, +/turf/open/space, +/area/space) +"cYd" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYe" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYf" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYh" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYi" = ( +/obj/structure/grille, +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYk" = ( +/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 = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYq" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYr" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYD" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/space, +/area/space) + +( +1, +1, +1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} + From 9e7db44c574fa161a1e816bd48b938bb83d66c70 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Sun, 25 Dec 2016 19:00:05 -0800 Subject: [PATCH 50/55] Add files via upload --- .../map_files/TgStation2/tgstation.2.1.3.dmm | 144883 +++++++-------- 1 file changed, 72441 insertions(+), 72442 deletions(-) diff --git a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm index f65c7f0..e73e055 100644 --- a/_maps/map_files/TgStation2/tgstation.2.1.3.dmm +++ b/_maps/map_files/TgStation2/tgstation.2.1.3.dmm @@ -1,72442 +1,72441 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aad" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aae" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"aaf" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aag" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_ne"; - name = "northeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aah" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"aai" = ( -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aak" = ( -/obj/machinery/door/poddoor{ - id = "executionspacevent" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aal" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aam" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/open/space, -/area/space) -"aan" = ( -/obj/machinery/flasher{ - id = "executionflasher"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aao" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/processing) -"aap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/transfer) -"aaq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/processing) -"aar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/security/transfer) -"aas" = ( -/obj/machinery/sparker{ - id = "executionsparker"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aat" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/chair, -/turf/open/floor/engine, -/area/security/transfer) -"aau" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aax" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aay" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northwest"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/processing) -"aaD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaE" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aaF" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaH" = ( -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - heat_proof = 1; - name = "Prisoner Transfer Chamber"; - req_access_txt = "2" - }, -/turf/open/floor/engine, -/area/security/transfer) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/grille, -/obj/structure/window, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/security/transfer) -"aaK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaL" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"aaM" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 10000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaN" = ( -/obj/machinery/atmospherics/components/unary/tank/toxins, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaO" = ( -/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaP" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/razor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaR" = ( -/obj/machinery/button/flasher{ - id = "executionflasher"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "executionspacevent"; - name = "vent to space"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaS" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/weapon/tank/internals/anesthetic, -/obj/item/weapon/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaV" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock Northeast"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"aaW" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaX" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaY" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aaZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aba" = ( -/obj/machinery/button/ignition{ - id = "executionsparker"; - pixel_x = 24; - pixel_y = 8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abd" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"abe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abf" = ( -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"abg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abi" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/transfer) -"abk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/door/window/northleft{ - dir = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abq" = ( -/obj/machinery/door/airlock/security{ - name = "Prisoner Transfer"; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abt" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abu" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abv" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abw" = ( -/obj/structure/table, -/obj/item/device/electropack, -/obj/item/clothing/head/helmet, -/obj/item/device/assembly/signaler, -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Transfer Center APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"aby" = ( -/obj/structure/closet/secure_closet/injection, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abz" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/transfer) -"abA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abF" = ( -/turf/closed/wall/r_wall, -/area/security/lockers) -"abG" = ( -/turf/closed/wall/r_wall, -/area/security/hos) -"abH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/hos) -"abI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abK" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Brig Interrogation" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"abL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"abN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/processing) -"abO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"abP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/carpet, -/area/security/hos) -"abQ" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"abT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/carpet, -/area/security/hos) -"abU" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"abV" = ( -/obj/machinery/computer/card/minor/hos, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/security/hos) -"abW" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/lockers) -"abX" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/plasteel, -/area/security/lockers) -"abY" = ( -/turf/open/floor/plasteel, -/area/security/lockers) -"abZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Cappers! Fairly unremarkable really."; - name = "\improper Officer Cappers" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aca" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Camilla! He constantly seeks validation."; - name = "\improper Officer Camilla" - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acb" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acd" = ( -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ace" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acf" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acg" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"ach" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"aci" = ( -/obj/structure/table, -/obj/item/weapon/lighter, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"ack" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"acl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acm" = ( -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Prison Shuttle Dock APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aco" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acp" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acr" = ( -/obj/machinery/camera{ - c_tag = "Prison Shuttle Dock East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"act" = ( -/obj/structure/closet/ammunitionlocker, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acu" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acw" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/deputy, -/obj/item/weapon/storage/box/seccarts, -/turf/open/floor/carpet, -/area/security/hos) -"acx" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"acy" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acz" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acA" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acB" = ( -/turf/open/floor/carpet, -/area/security/hos) -"acC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acD" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acE" = ( -/obj/vehicle/secway, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/lockers) -"acF" = ( -/obj/structure/table, -/obj/item/device/taperecorder, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acG" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"acI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"acN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"acO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"acP" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/recharger, -/turf/open/floor/carpet, -/area/security/hos) -"acQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/adamantine, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"acR" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet, -/area/security/hos) -"acS" = ( -/obj/structure/closet/secure_closet/hos, -/turf/open/floor/carpet, -/area/security/hos) -"acT" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Brig Locker Room West"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"acU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"acX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/lockers) -"acY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"acZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"ada" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"add" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"ade" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adf" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/processing) -"adg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/processing) -"adh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/processing) -"adi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/processing) -"adj" = ( -/obj/structure/closet/ammunitionlocker, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"adk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/security/hos) -"adn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/security/hos) -"ado" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adp" = ( -/turf/closed/wall, -/area/security/transfer) -"adq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/transfer) -"ads" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Security Locker Room APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adw" = ( -/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/open/floor/plasteel, -/area/security/lockers) -"adx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/brig) -"ady" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"adz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"adA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Transfer Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"adC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adE" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/red, -/obj/item/weapon/stamp/hos, -/turf/open/floor/carpet, -/area/security/hos) -"adF" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Brig Riot Equipment"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"adG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -24 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/security/hos) -"adI" = ( -/turf/closed/wall, -/area/security/hos) -"adJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/carpet, -/area/security/hos) -"adK" = ( -/obj/machinery/disposal/bin, -/turf/open/floor/carpet, -/area/security/hos) -"adL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adM" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/lockers) -"adO" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/lockers) -"adP" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adQ" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adR" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/metal{ - amount = 20 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/security/lockers) -"adT" = ( -/obj/structure/table, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/item/key/security, -/obj/machinery/camera{ - c_tag = "Brig Locker Room East"; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"adU" = ( -/obj/machinery/vending/security, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/lockers) -"adV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/isolation) -"adW" = ( -/obj/machinery/vending/medical{ - pixel_x = -2; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitered" - }, -/area/security/isolation) -"adX" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitered" - }, -/area/security/isolation) -"adY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"adZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aea" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aec" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aed" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aef" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor Northwest"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"aeg" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/flashbangs, -/obj/item/weapon/storage/box/flashbangs, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeh" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/teargas, -/obj/item/weapon/storage/box/teargas, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aei" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/camera/motion{ - c_tag = "Armory"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aej" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aek" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"ael" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aem" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/hos) -"aen" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/turf/open/floor/carpet, -/area/security/hos) -"aeo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/hos) -"aep" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/lockers) -"aer" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/main) -"aes" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"aet" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"aeu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"aev" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aew" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Brig Medbay"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/isolation) -"aex" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"aey" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aez" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aeD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aeG" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/chemimp, -/obj/item/weapon/storage/box/trackimp, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aeH" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeK" = ( -/obj/machinery/button/door{ - id = "riotequipment"; - name = "Riot Equipment Shutters"; - pixel_x = 24; - pixel_y = 32; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeM" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeN" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeO" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "vault" - }, -/area/ai_monitored/security/armory) -"aeP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/hos) -"aeQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"aeR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"aeS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aeT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aeU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeV" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeW" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"aeZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/main) -"afa" = ( -/obj/machinery/computer/security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"afb" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afc" = ( -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afd" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afe" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"aff" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"afh" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afi" = ( -/obj/structure/bed, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/isolation) -"afj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fpmaint) -"afm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afp" = ( -/obj/structure/rack, -/obj/item/weapon/storage/lockbox/loyalty, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afq" = ( -/mob/living/simple_animal/bot/secbot{ - desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; - name = "\improper Officer Lock n Lode" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afs" = ( -/obj/structure/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/weapon/tank/internals/emergency_oxygen/double, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"aft" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 8; - name = "Armory APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afv" = ( -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Head of Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"afw" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"afx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"afy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"afz" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afA" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afB" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afC" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afD" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Shower Door" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"afE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/whitered, -/area/security/isolation) -"afF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitered" - }, -/area/security/isolation) -"afG" = ( -/obj/machinery/camera{ - c_tag = "Brig Medbay"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitered" - }, -/area/security/isolation) -"afH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afI" = ( -/turf/closed/wall, -/area/security/main) -"afJ" = ( -/obj/structure/grille, -/turf/open/space, -/area/space) -"afK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"afL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 6" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"afO" = ( -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Secure Cell 2"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"afP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"afR" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/melee/classic_baton/telescopic, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afS" = ( -/obj/machinery/door/window/brigdoor{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afT" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/obj/item/weapon/gun/energy/gun/advtaser, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afU" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/ecase, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/ionrifle, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afV" = ( -/obj/structure/window/reinforced, -/obj/structure/guncase/shotgun, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/obj/item/weapon/gun/projectile/shotgun/riot, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/security/armory) -"afW" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Riot Equipment"; - req_access_txt = "2" - }, -/obj/machinery/door/poddoor/shutters{ - id = "riotequipment" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/security/armory) -"afX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/main) -"afY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"afZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aga" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"agc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"agd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/main) -"age" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/security/main) -"agf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"agh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Security Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"agi" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agj" = ( -/obj/machinery/door/airlock{ - name = "Showers"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agl" = ( -/obj/machinery/camera{ - c_tag = "Brig Showers"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"agm" = ( -/turf/open/floor/plasteel, -/area/security/main) -"agn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"ago" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitered" - }, -/area/security/isolation) -"agp" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitered" - }, -/area/security/isolation) -"agq" = ( -/obj/structure/table, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitered" - }, -/area/security/isolation) -"agr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"ags" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"agt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Medbay APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/isolation) -"agu" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agv" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agw" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall14"; - dir = 2 - }, -/area/shuttle/pod_3) -"agx" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_3) -"agy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/pod_3) -"agz" = ( -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agA" = ( -/obj/machinery/flasher{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"agB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"agC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell2"; - name = "Secure Cell 2"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"agE" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"agJ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"agK" = ( -/obj/vehicle/secway, -/obj/item/key/security, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agL" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/weapon/gun/energy/laser/practice, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/main) -"agM" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/security/main) -"agP" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Security Office West"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/main) -"agQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/open/floor/plasteel, -/area/security/main) -"agR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agS" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/camera{ - c_tag = "Security Office East"; - dir = 8; - network = list("SS13") - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"agT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"agU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint) -"agY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"agZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aha" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahb" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahc" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahd" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc4" - }, -/area/shuttle/pod_3) -"ahe" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahf" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahg" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ahh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahi" = ( -/obj/structure/chair, -/obj/item/weapon/storage/pod{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahj" = ( -/obj/structure/chair, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahk" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ahl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ahm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aho" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahp" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aht" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahx" = ( -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/main) -"ahy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ahz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahA" = ( -/obj/machinery/computer/shuttle/labor{ - name = "prison shuttle console" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahB" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -31; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/weapon/restraints/handcuffs, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahC" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall1"; - dir = 2 - }, -/area/shuttle/labor) -"ahD" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ahE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"ahF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahG" = ( -/obj/structure/rack, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ahN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahO" = ( -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ahP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"ahQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"ahR" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Warden" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahS" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/button/door{ - id = "armorylockdown"; - name = "Brig Control Lockdown"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahV" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahW" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Brig Control APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahX" = ( -/turf/closed/wall, -/area/security/warden) -"ahY" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"ahZ" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/item/device/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/main) -"aia" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aib" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aid" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - dwidth = 2; - height = 9; - id = "pod3"; - name = "escape pod 3"; - width = 5 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aie" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aif" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Brig Escape Shuttle"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aig" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"aih" = ( -/obj/docking_port/stationary/random{ - dir = 4; - dwidth = 2; - height = 9; - id = "asteroid_pod3"; - width = 5 - }, -/turf/open/space, -/area/space) -"aii" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aij" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/main) -"aik" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window/westleft{ - name = "Security Delivery"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/security/main) -"ail" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aim" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ain" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/security/main) -"aio" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aip" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiq" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"air" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ais" = ( -/obj/structure/table, -/obj/item/baseball, -/obj/item/baseball, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ait" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiv" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiy" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 5" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiz" = ( -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Secure Cell 1"; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "red" - }, -/area/security/brig) -"aiA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/brig) -"aiB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/security/warden) -"aiC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aiE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "armorylockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/warden) -"aiF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/main) -"aiI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aiL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aiM" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aiN" = ( -/obj/machinery/flasher{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aiO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - id_tag = "SecureCell1"; - name = "Secure Cell 1"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Brig APC"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/security/brig) -"aiR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aiT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aiW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aiY" = ( -/turf/closed/wall/shuttle{ - icon_state = "swallc1" - }, -/area/shuttle/pod_3) -"aiZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"aja" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "brigshuttleflash"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/pod_3) -"ajb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "brigshuttleflash"; - name = "Flash Control"; - pixel_x = -4; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 0; - pixel_y = -31 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod3"; - shuttleId = "pod3" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_3) -"ajd" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"aji" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajn" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "red" - }, -/area/security/brig) -"ajo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/brig) -"ajp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"ajq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/courtroom) -"ajs" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aju" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Courtroom North"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"ajv" = ( -/obj/structure/closet/secure_closet/courtroom, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ajw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/courtroom) -"ajx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice{ - pixel_y = 4 - }, -/obj/item/weapon/dice/d8{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajy" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajA" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_x = 0; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ajB" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d20, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ajC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ajD" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5" - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Secure Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ajF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/security/brig) -"ajG" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajI" = ( -/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"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajL" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajM" = ( -/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/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"ajS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ajZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aka" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall13"; - dir = 2 - }, -/area/shuttle/pod_3) -"akb" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/pod_3) -"akc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"akd" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"ake" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akg" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"aki" = ( -/obj/structure/table/wood, -/obj/item/weapon/gavelblock, -/turf/open/floor/plasteel/darkblue, -/area/crew_quarters/courtroom) -"akj" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d12, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akk" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/pen, -/obj/item/weapon/paper_bin, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"akm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"akn" = ( -/turf/closed/wall, -/area/security/isolation) -"ako" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 4"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akq" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall7"; - dir = 2 - }, -/area/shuttle/labor) -"akr" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 3"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"aks" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall11"; - dir = 2 - }, -/area/shuttle/labor) -"akt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - color = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aku" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akv" = ( -/obj/machinery/door/window/brigdoor{ - name = "Cell 1"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"akw" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Evidence"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"aky" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akC" = ( -/obj/machinery/camera{ - c_tag = "Brig Cell Corridor East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/brig) -"akD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akE" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/courtroom) -"akG" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/courtroom) -"akI" = ( -/obj/structure/table/wood/poker, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akJ" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/dice/d10, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"akK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akL" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akM" = ( -/obj/structure/chair/comfy/brown, -/obj/item/clothing/under/rank/janitor, -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/cheesie, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/weapon/mop, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akO" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/ian, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"akP" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = -25; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"akR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akS" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"akT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"akX" = ( -/turf/closed/wall, -/area/maintenance/fsmaint) -"akY" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"akZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"ala" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Front Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/crew_quarters/courtroom) -"alc" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ald" = ( -/turf/closed/wall/r_wall, -/area/security/isolation) -"ale" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alf" = ( -/obj/item/weapon/dice/d4, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"alg" = ( -/obj/structure/grille, -/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ali" = ( -/obj/item/stack/teeth/lizard{ - amount = 3 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"all" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"aln" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alo" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alp" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "perma prison shuttle"; - port_angle = 90; - width = 9 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - width = 9 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Prison Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"alq" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alr" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/rack, -/obj/item/clothing/head/bowler, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/computer/security, -/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/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aly" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "red" - }, -/area/crew_quarters/courtroom) -"alz" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/crew_quarters/courtroom) -"alA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 8; - name = "Courtroom APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alB" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alC" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alD" = ( -/obj/item/trash/can, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alE" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigars, -/obj/item/weapon/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"alF" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 4"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alG" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 4" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alH" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 3" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alI" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 3"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alJ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 2"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alK" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alL" = ( -/obj/machinery/disposal/trapdoor{ - id = "Cell 1" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alM" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/obj/machinery/camera{ - c_tag = "Brig Cell 1"; - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"alN" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plasteel, -/area/security/brig) -"alP" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alQ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/camera{ - c_tag = "Brig Lobby Desk"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/flasher{ - id = "lobbyflash"; - pixel_y = -4; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "lobbylockdown"; - name = "Lobby Lockdown"; - pixel_y = 4; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"alV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/crew_quarters/courtroom) -"alX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"alY" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/space) -"alZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"ama" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amb" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/weapon/gun/magic/staff, -/obj/item/weapon/gun/magic/wand, -/obj/item/weapon/sord, -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amc" = ( -/obj/structure/closet{ - name = "locker" - }, -/obj/item/clothing/suit/armor/riot/knight, -/obj/item/clothing/head/helmet/knight, -/obj/item/clothing/head/wizard/fake, -/obj/item/clothing/suit/wizrobe/fake, -/obj/item/clothing/head/helmet/roman, -/obj/item/clothing/shoes/roman, -/obj/item/clothing/under/roman, -/obj/item/clothing/suit/space/pirate, -/obj/item/clothing/under/kilt, -/obj/item/clothing/under/pirate, -/obj/item/clothing/under/gladiator, -/obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amd" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ame" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amg" = ( -/obj/structure/grille, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ami" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"amj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amk" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aml" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"amm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"amn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/contraband, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ams" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amt" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amw" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amx" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amz" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Brig Lobby" - }, -/obj/item/device/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amF" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amH" = ( -/obj/machinery/flasher{ - id = "lobbyflash"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"amI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/security/main) -"amJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"amL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"amN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amO" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"amS" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"amU" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"amV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"amW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amY" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"amZ" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ana" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anb" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"and" = ( -/obj/structure/table, -/obj/item/weapon/stamp, -/obj/item/weapon/poster/legit, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ane" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ang" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anh" = ( -/obj/structure/rack, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ani" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ank" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ann" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ano" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anp" = ( -/obj/machinery/atmospherics/pipe/manifold, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ans" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ant" = ( -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anv" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"anw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"any" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Courtroom"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anA" = ( -/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"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"anD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"anE" = ( -/obj/structure/table, -/obj/item/clothing/glasses/monocle, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anF" = ( -/obj/structure/rack, -/obj/item/weapon/reagent_containers/pill/morphine, -/obj/item/weapon/reagent_containers/pill/morphine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anG" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"anM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"anN" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"anO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anP" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anQ" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anS" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"anV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"anY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"anZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aob" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aoc" = ( -/turf/closed/wall, -/area/security/brig) -"aod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/brig) -"aoe" = ( -/obj/machinery/camera{ - c_tag = "Cargo North"; - dir = 4; - network = list("perma") - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"aof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology North"; - dir = 8; - network = list("perma") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"aog" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoi" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"aoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aok" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aol" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aom" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aon" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"aoo" = ( -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aop" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aoq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aor" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aos" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/main) -"aot" = ( -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aou" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/courtroom) -"aov" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/matches, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aow" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 1; - color = "red"; - dir = 1 - }, -/obj/item/device/camera{ - desc = "A one use - polaroid camera. 30 photos left."; - name = "detectives camera"; - pictures_left = 30 - }, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aox" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/bag/tray{ - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoy" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/photo_album, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoA" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoC" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoD" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoE" = ( -/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" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"aoG" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxport) -"aoH" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/briefcase, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"aoJ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Port Engineering Hallway" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"aoK" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northwest"; - dir = 5; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoL" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Northeast"; - dir = 8; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoN" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southwest"; - dir = 4; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"aoO" = ( -/obj/item/weapon/crowbar, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aoP" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoQ" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoR" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aoS" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoT" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Detective's Office"; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoU" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aoX" = ( -/obj/structure/rack, -/obj/item/weapon/storage/backpack/satchel/sec, -/obj/item/weapon/storage/backpack/security, -/obj/item/weapon/storage/backpack/dufflebag/sec, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aoY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aoZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apa" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apb" = ( -/obj/machinery/vending/snack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apd" = ( -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"ape" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apf" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"apg" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/drinkingglasses, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"aph" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"api" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apl" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apm" = ( -/obj/structure/closet/cardboard, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apn" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"apo" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"app" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Detective" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"apr" = ( -/obj/machinery/button/door{ - id = "detshutters"; - name = "Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aps" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"apt" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/brig) -"apu" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apv" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/auxstarboard) -"apw" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/outpost) -"apx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apy" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"apA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"apC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"apD" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apF" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"apH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lobbylockdown" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Lobby" - }, -/turf/open/floor/plasteel/bar, -/area/security/brig) -"apI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/courtroom) -"apK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Security Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"apM" = ( -/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" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"apN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Security Electrical Maintenance APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apP" = ( -/turf/closed/wall, -/area/maintenance/secelectrical) -"apQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"apU" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"apV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apW" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/adamantine, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apX" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apY" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"apZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqa" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "4" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/wirecutters, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqe" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqf" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aqi" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aqj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqk" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aql" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqm" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqo" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqu" = ( -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqx" = ( -/obj/item/weapon/poster/legit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqA" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"aqB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"aqC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"aqE" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Northeast" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aqG" = ( -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqH" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"aqI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqJ" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aqK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqL" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqM" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqN" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqQ" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 6; - icon_state = "tracks"; - tag = "icon-tracks (SOUTHWEST)" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aqR" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aqS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqU" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aqY" = ( -/obj/machinery/door/airlock/security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ara" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arb" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/security/brig) -"arc" = ( -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/space) -"ard" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"are" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ari" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"ark" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arl" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arp" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arq" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/secelectrical) -"arr" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/secelectrical) -"ars" = ( -/obj/structure/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"art" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aru" = ( -/obj/structure/closet/cardboard, -/obj/item/clothing/suit/jacket/miljacket, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"arv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arw" = ( -/obj/structure/table, -/obj/item/stack/ducttape, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arx" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/silver, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/iron, -/obj/item/weapon/coin/gold, -/obj/item/stack/spacecash/c100, -/obj/item/stack/spacecash/c50, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ary" = ( -/obj/structure/table/wood, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"arz" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arA" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arB" = ( -/obj/machinery/camera{ - c_tag = "Detective's Office Backroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"arD" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detshutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"arG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"arJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway North"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arN" = ( -/obj/structure/grille, -/obj/structure/grille, -/turf/open/space, -/area/space) -"arO" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod1" - }, -/turf/open/space, -/area/space) -"arP" = ( -/obj/docking_port/stationary/random{ - id = "asteroid_pod2" - }, -/turf/open/space, -/area/space) -"arQ" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/labor) -"arR" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"arS" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/labor) -"arT" = ( -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/engine/port_engineering) -"arU" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Singularity Southeast"; - dir = 9; - network = list("Singularity") - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"arV" = ( -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/weapon/crowbar, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Red Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = 22; - pixel_y = -10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"arW" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel, -/area/bridge) -"arX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"arY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"arZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asb" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asc" = ( -/obj/structure/table/wood/poker, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"asd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"ase" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/lawoffice) -"asf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawshutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"asg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ash" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"asi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ask" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Dormitory APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aso" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ass" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_1) -"ast" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_1) -"asu" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_1) -"asv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_2) -"asw" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_2) -"asx" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_2) -"asy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/labor) -"asz" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"asA" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/stack/cable_coil, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"asB" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/assembly/flash, -/obj/item/device/assembly/flash, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"asC" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asE" = ( -/obj/structure/closet/crate, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asF" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plating, -/area/engine/port_engineering) -"asG" = ( -/obj/structure/table, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/engineering) -"asH" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"asI" = ( -/obj/structure/table, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"asJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"asL" = ( -/obj/structure/sign/atmosplaque{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/obj/item/weapon/storage/inflatable, -/turf/open/floor/plasteel, -/area/atmos) -"asM" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/lawoffice) -"asN" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/paicard, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asO" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/orange, -/obj/item/clothing/glasses/gglasses, -/turf/open/floor/wood, -/area/lawoffice) -"asP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/lawoffice) -"asQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asR" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor/carpet, -/area/lawoffice) -"asS" = ( -/turf/open/floor/carpet, -/area/lawoffice) -"asT" = ( -/obj/structure/rack, -/obj/item/weapon/storage/briefcase, -/obj/item/weapon/storage/briefcase, -/turf/open/floor/carpet, -/area/lawoffice) -"asU" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"asV" = ( -/obj/machinery/button/door{ - id = "lawshutters"; - name = "Privacy Shutters"; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"asZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"ata" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ate" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Pool APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"atf" = ( -/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/open/floor/plating, -/area/maintenance/fpmaint2) -"atg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ath" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_1) -"ati" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod1"; - shuttleId = "pod1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/pod_2) -"atk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -30; - pixel_y = 0; - possible_destinations = "asteroid_pod2"; - shuttleId = "pod2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atl" = ( -/obj/item/stack/rods, -/turf/open/space, -/area/space) -"atm" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"atn" = ( -/turf/open/floor/plasteel/shuttle{ - icon_state = "shuttlefloor4" - }, -/area/shuttle/labor) -"ato" = ( -/obj/structure/closet/masks, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atp" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"atq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"atr" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"ats" = ( -/obj/effect/decal/cleanable/oil, -/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" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"att" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atu" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"atv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atx" = ( -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/item/weapon/storage/firstaid/surgery, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"aty" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/glass/bottle/morphine, -/obj/item/weapon/reagent_containers/syringe, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/storage/firstaid/surgery{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"atz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"atA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atD" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "42" - }, -/turf/open/floor/wood, -/area/lawoffice) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Lawyer" - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"atL" = ( -/turf/closed/wall, -/area/maintenance/commiespy) -"atM" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"atN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"atO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"atP" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxport) -"atQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"atR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/turf/open/floor/carpet, -/area/lawoffice) -"atT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atU" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atV" = ( -/obj/machinery/camera{ - c_tag = "Pool North" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atW" = ( -/obj/structure/closet, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"atX" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Law Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/lawoffice) -"atY" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/pen, -/obj/item/weapon/pen/blue, -/obj/item/weapon/pen/red, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atZ" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_labeler, -/obj/item/device/taperecorder, -/turf/open/floor/wood, -/area/lawoffice) -"aua" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/wood, -/area/lawoffice) -"aub" = ( -/obj/structure/closet/crate, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/wood, -/area/lawoffice) -"auc" = ( -/obj/structure/closet, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/under/griffin, -/obj/item/clothing/head/griffin, -/obj/item/clothing/shoes/griffin, -/obj/item/clothing/suit/toggle/owlwings/griffinwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/gas/owl_mask, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/owl, -/obj/item/clothing/mask/pig, -/obj/item/clothing/head/chicken, -/obj/item/clothing/suit/justice, -/obj/item/clothing/suit/justice, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/wood, -/area/lawoffice) -"aud" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/carpet, -/area/lawoffice) -"aue" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/law, -/obj/item/weapon/pen/blue, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"auf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/computer/med_data, -/turf/open/floor/carpet, -/area/lawoffice) -"aug" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/lawoffice) -"auh" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/lawoffice) -"aui" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/lawoffice) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (WEST)"; - icon_state = "yellowcornersiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"auk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aul" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aum" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aun" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"auo" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (WEST)"; - icon_state = "yellowsiding"; - dir = 8 - }, -/area/crew_quarters/pool) -"aup" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auq" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/turf/open/floor/engine, -/area/gateway) -"aur" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aus" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1351; - name = "Science intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1347; - name = "Supply intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1355; - name = "Medical intercom"; - pixel_x = -27; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"aut" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1353; - name = "Command intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1359; - name = "Security intercom"; - pixel_y = 25; - prison_radio = 1 - }, -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Stronk Russian APC"; - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/soviet, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"auw" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aux" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_1) -"auy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod1"; - name = "escape pod 1" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_1) -"auz" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_1) -"auA" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_2) -"auB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - id = "pod2"; - name = "escape pod 2" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_2) -"auC" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_2) -"auD" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/arrival) -"auE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) -"auF" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/arrival) -"auG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auH" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"auI" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"auJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (NORTH)"; - icon_state = "yellowcornersiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"auK" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"auL" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Garden APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"auM" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/engine, -/area/gateway) -"auN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"auO" = ( -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auQ" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"auR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_access_txt = list(27,12) - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hallway/secondary/entry) -"auU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/security/brig) -"auW" = ( -/obj/machinery/gateway, -/turf/open/floor/engine, -/area/gateway) -"auX" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway South"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"auY" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"ava" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avb" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avc" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avd" = ( -/turf/closed/wall, -/area/lawoffice) -"ave" = ( -/turf/closed/wall, -/area/maintenance/fsmaint2) -"avf" = ( -/obj/structure/falsewall, -/turf/open/floor/plating/airless, -/area/maintenance/fsmaint2) -"avg" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1447; - name = "AI Private intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/storage/photo_album, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avi" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/syndie, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avl" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"avm" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avn" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avo" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avp" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"avq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"avr" = ( -/obj/machinery/vending/boozeomat{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avs" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avt" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avu" = ( -/obj/machinery/door/window/southright{ - name = "Gateway Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"avv" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avw" = ( -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avx" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/diamond, -/obj/item/weapon/coin/iron, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"avy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"avz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avG" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel Office APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/sleeper{ - dir = 4; - icon_state = "sleeper-open" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avL" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/brown, -/obj/machinery/camera{ - c_tag = "Arrivals Infirmary"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/hallway/secondary/entry) -"avM" = ( -/obj/structure/table/glass, -/obj/item/weapon/cultivator, -/obj/item/weapon/hatchet, -/obj/item/weapon/crowbar, -/obj/item/device/plant_analyzer, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avN" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/obj/item/weapon/reagent_containers/food/snacks/popcorn, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"avO" = ( -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"avP" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avS" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"avT" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"avU" = ( -/obj/machinery/door/airlock/external{ - name = "Airlock"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avV" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 1; - freqlock = 1; - frequency = 1357; - name = "Engineering intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avW" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/clothing/tie/stethoscope, -/obj/item/device/camera, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer{ - desc = "These possibly cant be even letters, blyat!"; - name = "Russian computer" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"avY" = ( -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"avZ" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"awa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awb" = ( -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awc" = ( -/obj/item/trash/candy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awe" = ( -/obj/structure/rack, -/obj/item/weapon/gun/projectile/shotgun/toy, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"awf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 1"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awg" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awj" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/arrival) -"awk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"awl" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awn" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awp" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awq" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"awr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aws" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"awt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"awu" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"awv" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aww" = ( -/obj/effect/landmark/start{ - name = "Mime" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"awx" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/white, -/area/mime) -"awy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/office) -"awA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awB" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/hallway/secondary/entry) -"awC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/secondary/entry) -"awE" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"awG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"awI" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"awK" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"awL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awP" = ( -/obj/machinery/door/window/northright{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"awQ" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"awR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"awS" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/wood, -/area/library) -"awT" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/storage/tools) -"awU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"awV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"awW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/auxstarboard) -"awX" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"awY" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"awZ" = ( -/obj/item/weapon/garrote, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"axa" = ( -/obj/machinery/vending/sustenance, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = -27; - pixel_y = 0; - prison_radio = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axb" = ( -/obj/machinery/computer/crew, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"axc" = ( -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axd" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axe" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"axf" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axg" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"axh" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axi" = ( -/obj/item/weapon/poster/legit, -/turf/closed/wall, -/area/hallway/secondary/entry) -"axj" = ( -/turf/closed/wall/shuttle{ - blocks_air = 6; - dir = 1; - icon_state = "swall13" - }, -/area/shuttle/arrival) -"axk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/arrival) -"axl" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"axm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"axn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"axo" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Port Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"axr" = ( -/turf/closed/wall, -/area/maintenance/fpmaint2) -"axs" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axt" = ( -/obj/structure/table/wood, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/obj/item/weapon/poster/contraband, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/rag, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axw" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/bandana/red, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axx" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"axy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"axz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axA" = ( -/obj/item/weapon/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"axB" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"axC" = ( -/obj/item/weapon/storage/box, -/obj/structure/table, -/obj/item/weapon/storage/box, -/obj/item/weapon/storage/box, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"axD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"axJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axK" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"axP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axQ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/quartermaster/storage) -"axR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/storage) -"axS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axT" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"axU" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/button/door{ - dir = 2; - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/assembly/robotics) -"axV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"axW" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"axX" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axY" = ( -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"axZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency) -"aya" = ( -/turf/open/floor/wood, -/area/lawoffice) -"ayb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency) -"ayc" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency) -"ayd" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency) -"aye" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"ayf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"ayh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"ayi" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"ayk" = ( -/obj/machinery/vending/autodrobe{ - req_access_txt = "0" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayl" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aym" = ( -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"ayn" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayo" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayq" = ( -/obj/machinery/computer/security, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"ayr" = ( -/obj/item/ammo_casing/caseless/foam_dart, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"ays" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"ayu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayv" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayB" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"ayD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayE" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"ayG" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayL" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayM" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayN" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"ayO" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"ayP" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"ayR" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/labor) -"ayS" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"ayT" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/labor) -"ayU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"ayY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ayZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/medical) -"aza" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"azc" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/medical) -"azd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aze" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"azf" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"azg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"azh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"azi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"azj" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"azk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"azl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"azm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken"; - icon_state = "wood-broken" - }, -/area/maintenance/fsmaint2) -"azn" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/fsmaint2) -"azo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/maintenance/commiespy) -"azp" = ( -/obj/item/ammo_box/foambox, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azq" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fsmaint2) -"azr" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/fsmaint2) -"azs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azt" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azv" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azw" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azx" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/hallway/secondary/entry) -"azy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrivals Shuttle Airlock" - }, -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "arrival_home"; - name = "port bay 1"; - width = 15 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark{ - name = "JoinLate" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"azA" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"azB" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Port Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Fore Port Solar Control"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azD" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"azE" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - tag = "icon-manifold (WEST)"; - icon_state = "manifold"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"azG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azH" = ( -/obj/item/trash/sosjerky, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azL" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"azM" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azN" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azO" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"azP" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"azQ" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/fpmaint2) -"azS" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"azT" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"azU" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azV" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"azY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"aAb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAc" = ( -/mob/living/simple_animal/bot/cleanbot{ - desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; - name = "\improper Dumpy"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aAd" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAf" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Maint Bar Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"aAj" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "caution" - }, -/area/engine/break_room) -"aAk" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/engine/break_room) -"aAl" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "caution" - }, -/area/engine/break_room) -"aAm" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"aAn" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aAo" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aAp" = ( -/obj/machinery/camera{ - c_tag = "Engineering Checkpoint"; - dir = 8; - network = list("perma") - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"aAq" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aAr" = ( -/obj/machinery/the_singularitygen, -/turf/open/floor/plating/airless, -/area/space) -"aAs" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/space) -"aAt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aAu" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAv" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAw" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAx" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAy" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aAz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aAA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAC" = ( -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aAD" = ( -/obj/structure/table, -/obj/item/weapon/gun/projectile/automatic/toy/pistol, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aAF" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAH" = ( -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod Hallway"; - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAK" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAL" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aAM" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aAN" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aAO" = ( -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarport) -"aAP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarport) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAR" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAS" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aAU" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/under/rank/bartender, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aAW" = ( -/turf/closed/wall, -/area/maintenance/fpmaint) -"aAX" = ( -/obj/machinery/poolcontroller, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/fore) -"aBz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aBA" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Fore Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBC" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/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 = 32 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aBD" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/table/wood, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBE" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aBG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBH" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBJ" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aBK" = ( -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBL" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aBM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aBN" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aBO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBP" = ( -/obj/machinery/camera{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHEAST)"; - icon_state = "intact"; - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBS" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aBU" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBV" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBW" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBX" = ( -/obj/structure/table/wood/poker, -/obj/item/stack/tile/wood{ - amount = 25 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBY" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aBZ" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCc" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aCr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/lawoffice) -"aCt" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCv" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aCw" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/fsmaint2) -"aCx" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fsmaint2) -"aCy" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/fsmaint2) -"aCz" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCB" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCD" = ( -/obj/structure/closet, -/obj/item/ammo_box/foambox, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aCE" = ( -/obj/structure/lattice, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) -"aCF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCG" = ( -/obj/structure/closet/wardrobe/blue, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCH" = ( -/obj/effect/landmark{ - name = "Observer-Start" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCI" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aCJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aCK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCL" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCQ" = ( -/obj/structure/bed, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCR" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCT" = ( -/obj/structure/table/wood/poker, -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCV" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aCX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aCY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDc" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aDd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aDe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aDh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aDv" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Starboard Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDx" = ( -/obj/machinery/camera{ - c_tag = "Fore Starboard Solars"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aDy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fsmaint2) -"aDz" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aDC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDD" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aDE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aDG" = ( -/obj/structure/closet/wardrobe/pink, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDH" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aDI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aDJ" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDK" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aDN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDP" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTH)"; - icon_state = "intact"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDQ" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aDR" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aDS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDT" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDU" = ( -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aDW" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aEd" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEg" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEk" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Detective"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEl" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aEm" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEA" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aEB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aEC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aED" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEE" = ( -/obj/structure/grille, -/obj/effect/landmark{ - name = "Syndicate Breach Area" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aEG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - icon_state = "door_closed"; - locked = 0; - name = "Fore Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/auxsolarstarboard) -"aEI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/auxsolarstarboard) -"aEJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEK" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEM" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEN" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEP" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/weapon/coin/gold, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aEQ" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aER" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aES" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"aET" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEU" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEV" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/arrival) -"aEW" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aEY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aEZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFc" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (SOUTHWEST)"; - icon_state = "intact"; - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFe" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North Maintenance APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFf" = ( -/obj/machinery/monkey_recycler, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/obj/item/weapon/reagent_containers/food/snacks/monkeycube, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aFg" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFh" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aFs" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/bodybags, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFt" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFA" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFD" = ( -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aFF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aFG" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFH" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFI" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFJ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aFL" = ( -/turf/closed/wall, -/area/crew_quarters/pool) -"aFM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/pool) -"aFQ" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"aFR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aFS" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFX" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFY" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aFZ" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGa" = ( -/obj/item/weapon/coin/gold, -/obj/item/weapon/coin/iron, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGb" = ( -/obj/structure/closet, -/obj/item/weapon/coin/iron, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGc" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aGd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aGf" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHEAST)"; - icon_state = "intact"; - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGg" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGl" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/fpmaint2) -"aGm" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGo" = ( -/obj/structure/mineral_door/wood, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/wood, -/area/maintenance/fpmaint2{ - icon_state = "storage"; - name = "Speakeasy" - }) -"aGq" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aGr" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGs" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGt" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aGw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aGH" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aGI" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aGL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/sleep) -"aGM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/crew_quarters/sleep) -"aGN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/crew_quarters/sleep) -"aGO" = ( -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGQ" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aGS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aGW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHb" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aHc" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHe" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHf" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHh" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHi" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aHj" = ( -/turf/closed/wall, -/area/maintenance/electrical) -"aHk" = ( -/turf/closed/wall, -/area/space) -"aHl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space) -"aHm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHs" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHt" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aHu" = ( -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aHv" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aHw" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aHx" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/device/flashlight{ - luminosity = 0; - on = 1; - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHy" = ( -/obj/structure/chair/withwheels/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aHz" = ( -/obj/structure/closet/crate, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHA" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHB" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHC" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aHE" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aHN" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aHO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aHP" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aHS" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aHT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aHV" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHW" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/item/toy/carpplushie, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/weapon/bedsheet/red, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aHY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/item/weapon/reagent_containers/hypospray/medipen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aHZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding"; - icon_state = "yellowcornersiding" - }, -/area/crew_quarters/pool) -"aIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding"; - icon_state = "yellowsiding" - }, -/area/crew_quarters/pool) -"aIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aIg" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIh" = ( -/obj/structure/table, -/obj/item/weapon/shard, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/shard{ - icon_state = "small" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIi" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIj" = ( -/obj/machinery/button/door{ - id = "maint3"; - name = "Blast Door Control C"; - pixel_x = 0; - pixel_y = 24; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIk" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aIl" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIm" = ( -/obj/item/stack/rods{ - amount = 50 - }, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10; - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aIn" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIo" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aIp" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/maintenance/electrical) -"aIq" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/maintenance/electrical) -"aIr" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aIs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aIx" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space) -"aIy" = ( -/turf/open/floor/plating/airless, -/area/space) -"aIz" = ( -/obj/item/weapon/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/space) -"aIA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIB" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIC" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aID" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIE" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aIF" = ( -/obj/machinery/button/door{ - id = "hobodorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aIH" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint) -"aII" = ( -/obj/machinery/button/door{ - id = "hobodorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/fpmaint) -"aIJ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aIN" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"aIP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"aIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aIT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aIU" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIV" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/sleep) -"aIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aIX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aIY" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aIZ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/poolfilter{ - pixel_y = 11 - }, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aJb" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aJc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Holodeck" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJf" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aJg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJh" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aJn" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJo" = ( -/turf/open/floor/plating, -/area/maintenance/electrical) -"aJp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aJs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"aJt" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/arrival) -"aJu" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plasteel/shuttle{ - icon = 'icons/turf/floors.dmi'; - icon_state = "dark" - }, -/area/shuttle/arrival) -"aJv" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/arrival) -"aJx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aJA" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJB" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJC" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/obj/item/weapon/shard{ - icon_state = "medium" - }, -/obj/item/weapon/circuitboard/computer/operating, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJD" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/chair, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJF" = ( -/obj/item/weapon/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/space, -/area/space) -"aJG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJI" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm1"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aJJ" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/fpmaint2) -"aJK" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/item/weapon/bedsheet/brown, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/fpmaint2) -"aJL" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/weapon/bedsheet/orange, -/turf/open/floor/plasteel, -/area/maintenance/fpmaint) -"aJM" = ( -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/fpmaint) -"aJN" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "hobodorm2"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aJV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJX" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aJY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aKa" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKb" = ( -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Dormitory North" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/crew_quarters/sleep) -"aKh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aKi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aKj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aKk" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/toy/poolnoodle/blue, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKl" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aKm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aKn" = ( -/obj/machinery/computer/holodeck, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKo" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aKp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aKr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aKs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aKu" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aKx" = ( -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/weapon/surgical_drapes, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKz" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"aKA" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKF" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKK" = ( -/obj/machinery/atmospherics/pipe/manifold, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aKN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKQ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aKT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aKV" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"aKW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"aLb" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLe" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLf" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/guitar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLg" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLh" = ( -/obj/structure/table/wood, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLi" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aLl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aLm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aLn" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/ladder, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLo" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/machinery/drain, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLp" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/structure/pool/Lboard, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aLr" = ( -/obj/structure/table, -/obj/item/weapon/paper{ - desc = ""; - info = "Brusies sustained in the holodeck can be healed simply by sleeping."; - name = "Holodeck Disclaimer" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aLs" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLt" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLu" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLw" = ( -/obj/machinery/button/door{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_x = -28; - pixel_y = 4; - req_access_txt = "0" - }, -/obj/machinery/button/door{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -28; - pixel_y = -6; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLx" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLy" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLz" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aLC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aLI" = ( -/obj/structure/table, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/maintenance/electrical) -"aLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aLL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-West"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLP" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLQ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Arrivals North APC"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South-East"; - network = list("SS13","Prison") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aLW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLY" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aLZ" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMa" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/bag/trash, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aMc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aMs" = ( -/obj/structure/closet/crate/rcd, -/obj/machinery/camera/motion{ - c_tag = "EVA Motion Sensor"; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/hand_labeler, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/item/clothing/head/welding, -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "EVA Storage APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMw" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/device/radio/off, -/obj/item/device/assembly/timer, -/obj/structure/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMx" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMy" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/stock_parts/cell/high, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMz" = ( -/obj/item/device/aicard, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMB" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMC" = ( -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aMD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aME" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aMF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMG" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMI" = ( -/obj/structure/table/wood, -/obj/item/device/instrument/violin, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMJ" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMK" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aML" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Fitness" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aMO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/pool) -"aMP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/pool) -"aMT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aMX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aMZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNb" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aNc" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNd" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aNi" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"aNj" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNk" = ( -/obj/structure/table/glass, -/obj/item/weapon/hemostat, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNl" = ( -/obj/structure/table/glass, -/obj/item/weapon/restraints/handcuffs/cable/zipties, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNu" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aNx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aNy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/closed/wall, -/area/maintenance/fpmaint) -"aNz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNA" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"aNC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aND" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aNE" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNG" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/device/assembly/signaler, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNH" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aNI" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aNJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aNK" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aNL" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aNO" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/sleep) -"aNP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (EAST)"; - icon_state = "yellowsiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aNQ" = ( -/turf/open/floor/plasteel{ - tag = "icon-greenbluefull (NORTH)"; - icon_state = "greenbluefull"; - dir = 1 - }, -/obj/item/clothing/under/shorts/red, -/turf/simulated/pool/water, -/area/crew_quarters/pool) -"aNR" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOd" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOf" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOg" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOh" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOi" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aOj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aOk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aOl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOm" = ( -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aOn" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aOo" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOp" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aOs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aOt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aOu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aOv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aOw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOy" = ( -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aOA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/fpmaint2) -"aOC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOD" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOE" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOH" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/patriot, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aOI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aOK" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/open/floor/engine, -/area/gateway) -"aOM" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/open/floor/engine, -/area/gateway) -"aON" = ( -/turf/open/floor/engine, -/area/gateway) -"aOO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aOP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aOY" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aOZ" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aPa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 2 - }, -/area/crew_quarters/sleep) -"aPb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPe" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/sleep) -"aPf" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral" - }, -/area/crew_quarters/toilet) -"aPh" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/toilet) -"aPi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowcornersiding (EAST)"; - icon_state = "yellowcornersiding"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-yellowsiding (NORTH)"; - icon_state = "yellowsiding"; - dir = 1 - }, -/area/crew_quarters/pool) -"aPp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/crew_quarters/pool) -"aPr" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPs" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPv" = ( -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPx" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aPy" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/electrical) -"aPA" = ( -/obj/machinery/computer/monitor{ - name = "backup power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPB" = ( -/obj/machinery/power/smes{ - charge = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/electrical) -"aPC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/space) -"aPD" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPE" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPF" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/security/checkpoint2) -"aPG" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aPI" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint2) -"aPJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/hallway/secondary/entry) -"aPK" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aPL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPQ" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPT" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPV" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aPW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aPY" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/primary) -"aPZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQb" = ( -/obj/structure/bed/dogbed, -/obj/item/weapon/reagent_containers/food/drinks/flask/det{ - desc = "A Space Veteran's only friend."; - name = "space veteran's flask" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aQc" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"aQe" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/open/floor/engine, -/area/gateway) -"aQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/gateway) -"aQg" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aQh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aQi" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQj" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aQp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aQs" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aQt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aQv" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aQw" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aQx" = ( -/turf/closed/wall, -/area/crew_quarters/toilet) -"aQy" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aQz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aQA" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/table/glass, -/obj/item/clothing/under/shorts/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQB" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQD" = ( -/obj/machinery/camera{ - c_tag = "Pool South"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQH" = ( -/obj/structure/table/glass, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/crew_quarters/pool) -"aQI" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/bruise_pack, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/crew_quarters/pool) -"aQJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aQL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQN" = ( -/obj/item/clothing/under/rank/mailman, -/obj/item/clothing/head/mailman, -/obj/structure/closet, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aQR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aQS" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/security/checkpoint2) -"aQT" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/security/checkpoint2) -"aQV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQW" = ( -/obj/machinery/light, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint2) -"aQX" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint2) -"aQY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRe" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRf" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aRi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRj" = ( -/turf/closed/wall, -/area/storage/primary) -"aRk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/primary) -"aRn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"aRo" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/turf/open/floor/engine, -/area/gateway) -"aRq" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/turf/open/floor/engine, -/area/gateway) -"aRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aRs" = ( -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRv" = ( -/obj/item/weapon/pen{ - desc = "Writes upside down!"; - name = "astronaut pen" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aRx" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aRy" = ( -/obj/machinery/camera{ - c_tag = "EVA East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aRA" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/sleep) -"aRB" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRD" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRF" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/weapon/bikehorn/rubberducky, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aRG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRI" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/pool) -"aRK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/pool) -"aRM" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRO" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/fsmaint2) -"aRP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aRT" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aRZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aSa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, -/obj/item/weapon/lighter, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 8; - pixel_y = 9; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aSc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/grille, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1480; - name = "Confessional Intercom"; - pixel_x = 0; - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSf" = ( -/turf/closed/wall, -/area/chapel/main) -"aSg" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aSh" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/chapel/main) -"aSi" = ( -/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 = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/chapel/main) -"aSj" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/turf/open/floor/plating, -/area/chapel/main) -"aSm" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSo" = ( -/turf/closed/wall, -/area/security/checkpoint2) -"aSp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/security/checkpoint2) -"aSq" = ( -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aSz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSA" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSB" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aSC" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSE" = ( -/obj/structure/table, -/obj/item/weapon/wirecutters, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSF" = ( -/obj/structure/table, -/obj/item/device/t_scanner, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSG" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - departmentType = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSH" = ( -/obj/structure/table, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/item/device/multitool, -/obj/item/device/multitool{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSL" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aSM" = ( -/turf/closed/wall, -/area/mime) -"aSO" = ( -/turf/closed/wall, -/area/clown) -"aSP" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/gateway) -"aSS" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aST" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSU" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aSX" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aSZ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aTa" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Command EVA"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aTc" = ( -/obj/machinery/door/airlock/command{ - name = "Command EVA"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aTd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/sleep) -"aTe" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aTf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aTg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTj" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aTm" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTn" = ( -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTo" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage" - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aTq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aTr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j1s"; - sortType = 18 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTu" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTw" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTy" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/power/apc{ - dir = 2; - name = "Chapel APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/chapel/main) -"aTF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aTH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main) -"aTL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTM" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTN" = ( -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/main) -"aTP" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aTS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTT" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Green Arrivals"; - name = "Nothing To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTU" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTV" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTW" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint2) -"aTX" = ( -/obj/structure/table/reinforced, -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTY" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aTZ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/secondary/entry) -"aUa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aUb" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aUj" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/plants{ - lootcount = 10; - name = "10plant_spawner" - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUk" = ( -/obj/machinery/door/airlock{ - name = "Garden"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aUl" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aUm" = ( -/obj/machinery/camera{ - c_tag = "Mime Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/mime, -/turf/open/floor/plasteel/black, -/area/mime) -"aUn" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aUo" = ( -/obj/item/weapon/bedsheet/mime, -/obj/structure/bed, -/turf/open/floor/plasteel/black, -/area/mime) -"aUp" = ( -/obj/machinery/camera{ - c_tag = "Clown Office Camera"; - dir = 4 - }, -/obj/structure/closet/secure_closet/clown, -/turf/open/floor/plasteel/green, -/area/clown) -"aUq" = ( -/obj/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aUr" = ( -/obj/item/weapon/bedsheet/clown, -/obj/structure/bed, -/turf/open/floor/plasteel/green, -/area/clown) -"aUs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUt" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/regular, -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUu" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/gateway) -"aUw" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper/pamphlet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aUy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUA" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aUB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aUD" = ( -/obj/machinery/camera{ - c_tag = "Dormitory South"; - c_tag_order = 999; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aUE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aUF" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUH" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aUI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aUK" = ( -/obj/structure/dresser, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aUM" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUS" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aUZ" = ( -/turf/closed/wall, -/area/library) -"aVa" = ( -/turf/closed/wall, -/area/chapel/office) -"aVc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aVd" = ( -/obj/structure/falsewall, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aVe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVg" = ( -/obj/machinery/camera{ - c_tag = "Chapel North"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVh" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVi" = ( -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aVj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"aVk" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals No-Declare Lane"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aVl" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"aVm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"aVn" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "Green Arrivals Shutters"; - name = "Items To Declare Shutters"; - normaldoorcontrol = 0; - pixel_x = -22; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVo" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aVq" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/entry) -"aVr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"aVs" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/camera{ - c_tag = "Arrivals Declare Lane"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"aVQ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mime Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/mime) -"aVR" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVS" = ( -/obj/effect/landmark/start{ - name = "Clown" - }, -/turf/open/floor/plasteel/green, -/area/clown) -"aVT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVX" = ( -/turf/open/floor/plasteel, -/area/gateway) -"aVY" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aWa" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWb" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWc" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aWd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/storage/eva) -"aWe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWf" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/fore) -"aWg" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWh" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWi" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWk" = ( -/obj/structure/toilet{ - tag = "icon-toilet00 (WEST)"; - icon_state = "toilet00"; - dir = 8 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aWl" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/weapon/lipstick/random, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWm" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWn" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWr" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/space, -/area/space) -"aWJ" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j2s"; - sortType = 17 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aWL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/library) -"aWM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"aWN" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/library) -"aWO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/wood, -/area/library) -"aWP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/library) -"aWR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/chapel/office) -"aWS" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWU" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWV" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWW" = ( -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aWX" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aWY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aXb" = ( -/turf/open/floor/carpet, -/area/chapel/main) -"aXc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aXd" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aXe" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXf" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, -/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aXg" = ( -/obj/effect/landmark{ - name = "Marauder Entry" - }, -/turf/open/space, -/area/space) -"aXh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aXl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXm" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXn" = ( -/obj/item/weapon/reagent_containers/spray/plantbgone, -/obj/item/weapon/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aXo" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXq" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/obj/item/weapon/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/storage/primary) -"aXr" = ( -/obj/structure/window, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/showcase/mimestatue, -/turf/open/floor/plasteel/black, -/area/mime) -"aXs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aXt" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/frame/computer{ - anchored = 1; - desc = "What, you can't see the screen?"; - name = "Mime's Computer" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"aXu" = ( -/obj/structure/reagent_dispensers/honk_cooler, -/turf/open/floor/plasteel/green, -/area/clown) -"aXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aXw" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/obj/item/weapon/bikehorn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aXx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Clown Office APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/clown) -"aXy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aXz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aXA" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel, -/area/gateway) -"aXB" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"aXC" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/eva) -"aXF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aXG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/crew_quarters/sleep) -"aXK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/crew_quarters/sleep) -"aXL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXM" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXO" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aXP" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXQ" = ( -/obj/structure/closet, -/obj/item/weapon/dnainjector/smilemut, -/turf/open/floor/plasteel{ - tag = "icon-redbluefull"; - icon_state = "redbluefull" - }, -/area/crew_quarters/theatre) -"aXR" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre) -"aXS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aXU" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Bar APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aXX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"aXY" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/bar) -"aXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aYa" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - sortType = 21 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYj" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hydroponics) -"aYk" = ( -/turf/closed/wall, -/area/hydroponics) -"aYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/hydroponics) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aYn" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/library) -"aYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/library) -"aYp" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/camera{ - c_tag = "Library North"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYq" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/library) -"aYu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"aYv" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYw" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYx" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"aYz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/office) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aYC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYD" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/coffin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"aYE" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aYF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aYG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYJ" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"aYM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"aYN" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/entry) -"aYO" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYQ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Lounge"; - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYS" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYT" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYU" = ( -/obj/structure/table/glass, -/obj/item/weapon/hatchet, -/obj/item/weapon/cultivator, -/obj/item/weapon/crowbar, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYV" = ( -/obj/item/weapon/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/device/plant_analyzer, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"aYW" = ( -/obj/structure/table, -/obj/item/weapon/wrench, -/obj/item/device/analyzer, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYY" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plasteel, -/area/storage/primary) -"aYZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZb" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/storage/primary) -"aZc" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/storage/primary) -"aZd" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/storage/primary) -"aZe" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mime) -"aZf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/black, -/area/mime) -"aZg" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/mime) -"aZh" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red, -/area/clown) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/green, -/area/clown) -"aZj" = ( -/obj/structure/statue/bananium/clown, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"aZk" = ( -/obj/machinery/button/door{ - dir = 2; - id = "gateway_shutters"; - name = "Gateway Access Button"; - pixel_x = 0; - pixel_y = -27; - req_access_txt = "47" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"aZl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/extinguisher, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZm" = ( -/obj/machinery/camera{ - c_tag = "EVA South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZn" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/ai_monitored/storage/eva) -"aZo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aZp" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZs" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZt" = ( -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 40; - tag = "icon-direction_sec (NORTH)" - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = 32; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 24; - tag = "icon-direction_evac (EAST)" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"aZu" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZv" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"aZw" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aZx" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"aZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/primary/central) -"aZz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"aZA" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZB" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small, -/obj/machinery/door/window/westright, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/toilet) -"aZD" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/fsmaint2) -"aZF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"aZG" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aZH" = ( -/obj/item/weapon/reagent_containers/food/drinks/shaker, -/obj/item/weapon/gun/projectile/revolver/doublebarrel, -/obj/structure/table/wood, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZJ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aZK" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/bar) -"aZL" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aZO" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/crew_quarters/kitchen) -"aZP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/hydroponics) -"aZQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"aZR" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZS" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/hydroponics_pod_people, -/obj/item/weapon/paper/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"aZT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/library) -"aZU" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"aZV" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"aZW" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"aZX" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"aZY" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/library) -"baa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bab" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bac" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bad" = ( -/obj/structure/table/wood, -/obj/item/weapon/nullrod, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bae" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"baf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"bah" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bai" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"baj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bal" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"ban" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bao" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bap" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"baq" = ( -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bar" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bas" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bat" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Garden" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction{ - name = "\improper Garden" - }) -"bau" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bav" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"baw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"bax" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/primary) -"bay" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/mime) -"baz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/freezer{ - desc = "..."; - name = "Mime Office"; - req_access_txt = "46" - }, -/turf/open/floor/plasteel/black, -/area/mime) -"baA" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/mime) -"baB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fpmaint2) -"baC" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/clown) -"baD" = ( -/obj/machinery/door/airlock/clown{ - name = "Clown Office"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/clown) -"baE" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/clown) -"baF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baG" = ( -/obj/machinery/door/airlock/research{ - name = "Gateway Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/gateway) -"baJ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gateway_shutters"; - name = "Gateway Entry" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/gateway) -"baK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fpmaint) -"baL" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"baM" = ( -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"baN" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/lipstick, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baQ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baR" = ( -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baS" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Theatre Stage"; - dir = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"baU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baX" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"baZ" = ( -/obj/machinery/camera{ - c_tag = "Bar Storage" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bba" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bbb" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bbe" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/kitchen) -"bbf" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hydroponics) -"bbg" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbi" = ( -/obj/structure/closet/wardrobe/botanist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbj" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbk" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbm" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 0; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/weapon/watertank, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bbn" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/library) -"bbo" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bbp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/library) -"bbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "grimy" - }, -/area/chapel/office) -"bbw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel East"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bbD" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bbE" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbF" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbH" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbL" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbM" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/apc{ - name = "Port Hall APC"; - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/port) -"bcd" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bce" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-West"; - dir = 2 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bch" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bci" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bcj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bck" = ( -/turf/open/floor/plasteel{ - icon_state = "L1" - }, -/area/hallway/primary/central) -"bcl" = ( -/turf/open/floor/plasteel{ - icon_state = "L3" - }, -/area/hallway/primary/central) -"bcm" = ( -/turf/open/floor/plasteel{ - icon_state = "L5" - }, -/area/hallway/primary/central) -"bcn" = ( -/turf/open/floor/plasteel{ - icon_state = "L7" - }, -/area/hallway/primary/central) -"bco" = ( -/turf/open/floor/plasteel{ - icon_state = "L9" - }, -/area/hallway/primary/central) -"bcp" = ( -/turf/open/floor/plasteel{ - icon_state = "L11" - }, -/area/hallway/primary/central) -"bcq" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L13"; - name = "floor" - }, -/area/hallway/primary/central) -"bcr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bct" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bcv" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutralcorner"; - dir = 1 - }, -/area/hallway/primary/central) -"bcw" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-East"; - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcx" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcy" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcz" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcA" = ( -/obj/structure/piano, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bcE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcG" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcI" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcL" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bcM" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/weapon/shovel/spade, -/obj/item/weapon/wrench, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/wirecutters, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcT" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bcU" = ( -/turf/open/floor/wood, -/area/library) -"bcV" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library) -"bcW" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bcY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/office) -"bcZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/chapel/main) -"bda" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdb" = ( -/obj/machinery/light, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdc" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdd" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bde" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdf" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bdg" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdk" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Arrivals Checkpoint South" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bdn" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bdo" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdp" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdq" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bdr" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bds" = ( -/turf/open/floor/goonplaque, -/area/hallway/secondary/entry) -"bdt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdK" = ( -/turf/open/floor/plasteel{ - icon_state = "L2" - }, -/area/hallway/primary/central) -"bdL" = ( -/turf/open/floor/plasteel{ - icon_state = "L4" - }, -/area/hallway/primary/central) -"bdM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/turf/open/floor/plasteel{ - icon_state = "L6" - }, -/area/hallway/primary/central) -"bdN" = ( -/turf/open/floor/plasteel{ - icon_state = "L8" - }, -/area/hallway/primary/central) -"bdO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/turf/open/floor/plasteel{ - icon_state = "L10" - }, -/area/hallway/primary/central) -"bdP" = ( -/turf/open/floor/plasteel{ - icon_state = "L12" - }, -/area/hallway/primary/central) -"bdQ" = ( -/turf/open/floor/plasteel{ - desc = ""; - icon_state = "L14" - }, -/area/hallway/primary/central) -"bdR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdU" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bdV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdW" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdX" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdY" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bea" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"beb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bec" = ( -/obj/machinery/vending/coffee, -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bed" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/kitchenspike, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bef" = ( -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hydroponics) -"bei" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"bej" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "hydrofloor" - }, -/area/hydroponics) -"bek" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/library) -"bel" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/library) -"bem" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/library) -"beo" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bep" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"beq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"ber" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bes" = ( -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bet" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"beu" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bev" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bew" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bex" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Green Arrivals"; - name = "Nothing to Declare Conveyor"; - operating = 0; - verted = -1 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bey" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Red Arrivals"; - name = "Items to Declare Conveyor"; - operating = 0 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"bez" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "Red Arrivals"; - name = "Items To Declare Conveyor"; - operating = 0; - verted = -1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint2) -"beA" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"beB" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beC" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beD" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"beE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beI" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 3"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beJ" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beK" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beP" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beY" = ( -/obj/structure/sign/directions/security{ - dir = 4; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_sec (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfc" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfd" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfe" = ( -/obj/machinery/light, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bff" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bfi" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bfj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bfk" = ( -/obj/structure/closet/chefcloset, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfn" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bfo" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfp" = ( -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfq" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfr" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/camera{ - c_tag = "Hydroponics North"; - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bft" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bfu" = ( -/obj/structure/bookcase{ - name = "bookcase (Religious)" - }, -/turf/open/floor/wood, -/area/library) -"bfv" = ( -/turf/open/floor/carpet, -/area/library) -"bfw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/library) -"bfx" = ( -/obj/structure/bookcase{ - name = "bookcase (Reference)" - }, -/turf/open/floor/wood, -/area/library) -"bfy" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/library) -"bfA" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfB" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/item/device/camera, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfC" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen/invisible, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bfD" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bfE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bfH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"bfI" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Escape Arm Holding Area"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/hallway/secondary/exit) -"bfJ" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfK" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfM" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bfN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/hallway/secondary/exit) -"bfO" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bfP" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bfQ" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/hallway/secondary/entry) -"bfR" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"bfS" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bfV" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bfW" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"bga" = ( -/turf/closed/wall, -/area/maintenance/port) -"bgb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bgc" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"bgd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bge" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bgf" = ( -/turf/closed/wall, -/area/storage/art) -"bgg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/storage/art) -"bgh" = ( -/obj/machinery/door/airlock/glass{ - name = "Art Storage" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/art) -"bgj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bgk" = ( -/turf/closed/wall, -/area/storage/emergency2) -"bgl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgm" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgq" = ( -/turf/closed/wall, -/area/storage/tools) -"bgr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bgt" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bgu" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgv" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgw" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgx" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgy" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bgz" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgC" = ( -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgD" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = 4; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgE" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bgH" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bgI" = ( -/obj/machinery/door/airlock{ - name = "Kitchen cold room"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "showroomfloor" - }, -/area/crew_quarters/kitchen) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "green" - }, -/area/hydroponics) -"bgK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bgL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/hydroponics) -"bgM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bgN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"bgO" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgP" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgQ" = ( -/obj/structure/cult/tome, -/obj/item/clothing/under/suit_jacket/red, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bgR" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgS" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bgU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bgV" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/hallway/secondary/exit) -"bgW" = ( -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/exit) -"bgZ" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/exit) -"bha" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bhb" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhc" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bhd" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhj" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bhk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bhl" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bho" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhp" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhs" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bht" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhv" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bhw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"bhx" = ( -/turf/open/floor/plasteel, -/area/storage/art) -"bhy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bhz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bhA" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bhB" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bhD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhE" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/turf/open/floor/plasteel, -/area/bridge) -"bhF" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/bridge) -"bhG" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/bridge) -"bhH" = ( -/obj/machinery/computer/monitor{ - name = "bridge power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/bridge) -"bhI" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bhJ" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bhK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bhL" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/bridge) -"bhM" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "green" - }, -/area/bridge) -"bhN" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "green" - }, -/area/bridge) -"bhO" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/toolbox/emergency, -/obj/item/weapon/wrench, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/bridge) -"bhP" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhR" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhS" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhT" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhU" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhV" = ( -/obj/item/weapon/book/manual/barman_recipes, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhW" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhX" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bhY" = ( -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bhZ" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bia" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bib" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bic" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 2 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bid" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bie" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bif" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"big" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bih" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bij" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library) -"bik" = ( -/obj/structure/bookcase{ - name = "bookcase (Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bil" = ( -/obj/structure/bookcase{ - name = "bookcase (Non-Fiction)" - }, -/turf/open/floor/wood, -/area/library) -"bim" = ( -/obj/machinery/camera{ - c_tag = "Library South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/library) -"bin" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/turf/open/floor/plasteel{ - icon_state = "cult"; - dir = 2 - }, -/area/library) -"bio" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bip" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"biq" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bir" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bis" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bit" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "green" - }, -/area/hallway/secondary/entry) -"biu" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel/green/side, -/area/hallway/secondary/entry) -"biz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hallway/secondary/entry) -"biA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/secondary/entry) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biD" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/hallway/secondary/entry) -"biH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway Central"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/hallway/secondary/entry) -"biI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biK" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biL" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biN" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biO" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"biP" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biQ" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"biR" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/storage/art) -"biS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency2) -"biT" = ( -/turf/open/floor/plating, -/area/storage/emergency2) -"biU" = ( -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency2) -"biV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 24 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biY" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"biZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bja" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tools) -"bjc" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjd" = ( -/obj/structure/chair{ - dir = 1; - name = "Engineering Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bje" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/bridge) -"bjf" = ( -/obj/structure/table/reinforced, -/obj/item/device/aicard, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/bridge) -"bjg" = ( -/obj/structure/chair{ - dir = 1; - name = "Command Station" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 28; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/keycard_auth{ - pixel_x = 29; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjh" = ( -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/bridge) -"bji" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "greencorner" - }, -/area/bridge) -"bjj" = ( -/obj/structure/chair{ - dir = 1; - name = "Crew Station" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjk" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "greencorner" - }, -/area/bridge) -"bjl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/bridge) -"bjm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Diner" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bjn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjr" = ( -/obj/item/stack/spacecash/c10{ - amount = 10 - }, -/obj/item/stack/spacecash/c100{ - amount = 5 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjs" = ( -/mob/living/carbon/monkey{ - name = "Pun Pun"; - real_name = "Pun Pun"; - unique_name = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bjt" = ( -/obj/machinery/door/airlock/glass{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bju" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjv" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bjA" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bjB" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bjC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"bjD" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hydroponics) -"bjF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bjH" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/library) -"bjI" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement{ - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/library) -"bjJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjK" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bjN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"bjO" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bjP" = ( -/obj/machinery/vending/cola, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bjQ" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bjU" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/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 = 32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjV" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bjW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 9; - height = 11; - id = "emergency_home"; - name = "emergency evac bay"; - width = 22 - }, -/turf/open/space, -/area/space) -"bjX" = ( -/turf/closed/wall/r_wall, -/area/rec_room) -"bjY" = ( -/turf/closed/wall, -/area/rec_room) -"bjZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/rec_room) -"bka" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bkb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkc" = ( -/turf/closed/wall, -/area/security/vacantoffice) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bke" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/vacantoffice) -"bkf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bkh" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bki" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkj" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkk" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkl" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkm" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bko" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkp" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bkq" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/turf/open/floor/plasteel, -/area/storage/art) -"bkr" = ( -/obj/structure/table, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bks" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/table, -/obj/item/device/camera_film, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bkt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/storage/emergency2) -"bku" = ( -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkv" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkw" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/storage/emergency2) -"bkx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bky" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkA" = ( -/turf/open/floor/plasteel, -/area/storage/tools) -"bkB" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bkC" = ( -/turf/closed/wall, -/area/bridge) -"bkD" = ( -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/bridge) -"bkE" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/bridge) -"bkF" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/bridge) -"bkG" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/bridge) -"bkH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkI" = ( -/turf/open/floor/plasteel, -/area/bridge) -"bkJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/bridge) -"bkL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "bluecorner" - }, -/area/bridge) -"bkM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/bridge) -"bkO" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/bridge) -"bkP" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/bridge) -"bkQ" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/bridge) -"bkR" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Bar West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkS" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkT" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkU" = ( -/obj/item/clothing/head/that{ - throwforce = 1; - throwing = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkV" = ( -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkW" = ( -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 8; - network = list("SS13") - }, -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bkX" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/snacks/mint, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkY" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bkZ" = ( -/obj/structure/table, -/obj/item/weapon/kitchen/rollingpin, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bla" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/chef_recipes, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"blc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/crew_quarters/kitchen) -"bld" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/hydroponics) -"ble" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 8 - }, -/area/hydroponics) -"blf" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/hydroponics) -"blg" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"blh" = ( -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/hydroponics) -"bli" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"blj" = ( -/obj/structure/bookcase{ - name = "bookcase (Adult)" - }, -/turf/open/floor/wood, -/area/library) -"blk" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/library) -"blm" = ( -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/wood, -/area/library) -"bln" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/library) -"blo" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"blp" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"blq" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blr" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"bls" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"blt" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"blu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"blx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bly" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Recreation Room APC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"blz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/carpet, -/area/rec_room) -"blA" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/rec_room) -"blB" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 9 - }, -/area/hallway/secondary/entry) -"blC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 1 - }, -/area/hallway/secondary/entry) -"blE" = ( -/obj/item/weapon/twohanded/required/kirbyplants, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 5 - }, -/area/hallway/secondary/entry) -"blF" = ( -/turf/open/floor/wood, -/area/security/vacantoffice) -"blG" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blH" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blI" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blJ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"blL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"blN" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/requests_console{ - department = "Locker Room"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blR" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blS" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blT" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blU" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"blY" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bma" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmb" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bmc" = ( -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmd" = ( -/obj/machinery/camera{ - c_tag = "Bridge West"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/bridge) -"bme" = ( -/obj/structure/chair{ - dir = 1; - name = "Security Station" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/bridge) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bmi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bml" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmn" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/bridge) -"bmq" = ( -/obj/structure/chair{ - dir = 1; - name = "Logistics Station" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bmr" = ( -/obj/machinery/camera{ - c_tag = "Bridge East"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "browncorner" - }, -/area/bridge) -"bms" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bmt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmu" = ( -/obj/machinery/camera{ - c_tag = "Bridge East Entrance"; - dir = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bmv" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bmw" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bmx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/weapon/reagent_containers/food/snacks/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar"; - name = "Bar Shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmy" = ( -/obj/structure/table, -/obj/item/weapon/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmz" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmA" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmB" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmC" = ( -/obj/machinery/processor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bmD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmE" = ( -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bmF" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hydroponics) -"bmG" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"bmH" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper, -/turf/open/floor/wood, -/area/library) -"bmI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bmK" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"bmL" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/library) -"bmM" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/library) -"bmN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"bmO" = ( -/obj/machinery/camera{ - c_tag = "Chapel South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"bmP" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bmR" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmS" = ( -/obj/machinery/door/window/northright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmT" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bmU" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmV" = ( -/turf/open/floor/carpet, -/area/rec_room) -"bmW" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/rec_room) -"bmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bmZ" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/rec_room) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"bnb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnd" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bne" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bnf" = ( -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bng" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bni" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnj" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen/red, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bnk" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bnl" = ( -/obj/structure/grille, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnn" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnq" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bns" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnu" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Art Storage"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bny" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bnA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bnB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency2) -"bnC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bnD" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port) -"bnE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/storage/tools) -"bnI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 4 - }, -/area/hallway/primary/central) -"bnJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bnL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"bnN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/bridge) -"bnQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnR" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnS" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnT" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnV" = ( -/obj/machinery/turretid{ - control_area = "AI Upload Chamber"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Center"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnX" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnY" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Bridge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/bridge) -"boa" = ( -/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; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bob" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"boc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"boe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bof" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bog" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boi" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boj" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bok" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bol" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bom" = ( -/obj/item/weapon/lighter, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bon" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boo" = ( -/obj/machinery/button/door{ - id = "bar"; - name = "Bar Shutters Control"; - pixel_x = -25; - pixel_y = 0; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bop" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"boq" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bor" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 16 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bov" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bow" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"box" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"boy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/library) -"boz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"boC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"boE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"boF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/crew_quarters/courtroom) -"boH" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boI" = ( -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boK" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boL" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boN" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boO" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin, -/turf/open/floor/wood, -/area/rec_room) -"boP" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/rec_room) -"boQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/bikehorn/airhorn, -/turf/open/floor/wood, -/area/rec_room) -"boR" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"boS" = ( -/obj/structure/window/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/rec_room) -"boT" = ( -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 8 - }, -/area/hallway/secondary/entry) -"boU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"boW" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"boY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"boZ" = ( -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bpb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bpd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"bpe" = ( -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker/locker_toilet) -"bpg" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bph" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpk" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/crew_quarters/locker) -"bpl" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/crew_quarters/locker) -"bpn" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bpo" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Locker Room Maintenance APC"; - pixel_x = -27; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bpt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bpv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tools) -"bpz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/storage/tools) -"bpA" = ( -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpC" = ( -/obj/machinery/camera{ - c_tag = "Bridge West Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpD" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/hallway/primary/central) -"bpE" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge) -"bpF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/bridge) -"bpG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpI" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/bridge) -"bpK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_closed"; - locked = 0; - name = "AI Upload Access"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bpO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpP" = ( -/obj/machinery/ai_status_display, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bpS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/bridge) -"bpT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/bridge) -"bpU" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/hallway/primary/central) -"bpV" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Central Hall APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bpW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bpX" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bpY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bpZ" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/button/door{ - id = "kitchen"; - name = "Kitchen Shutters Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "25; 28" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"bqc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqd" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqe" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "green" - }, -/area/hydroponics) -"bqf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Botanist" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bqh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/hydroponics) -"bqi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/library) -"bqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/library) -"bqn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/library) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"bqs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"bqt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqw" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "Scaley."; - name = "Robusts-Many-Faces" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bqx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bqy" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/rec_room) -"bqz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/rec_room) -"bqA" = ( -/obj/structure/table/wood, -/obj/item/device/taperecorder/empty, -/turf/open/floor/wood, -/area/rec_room) -"bqB" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bqC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bqD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bqF" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqH" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bqJ" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bqK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bqM" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqN" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqO" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bqQ" = ( -/obj/structure/table, -/obj/item/weapon/razor, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqR" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqS" = ( -/obj/structure/closet, -/obj/item/clothing/under/suit_jacket/female{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/under/suit_jacket/really_black{ - pixel_x = -2; - pixel_y = 0 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bqT" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/crew_quarters/locker) -"bqV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"bqW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bqZ" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"brb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"brc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"brg" = ( -/turf/closed/wall, -/area/quartermaster/office) -"brh" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bri" = ( -/turf/closed/wall/r_wall, -/area/bridge/meeting_room) -"brj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/bridge/meeting_room) -"brk" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access = null; - req_access_txt = "19" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"brl" = ( -/turf/closed/wall, -/area/bridge/meeting_room) -"brm" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brn" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bro" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brp" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"brq" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brr" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access = null; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"brt" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bru" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brv" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brw" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brx" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bry" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brz" = ( -/obj/machinery/camera{ - c_tag = "Bar South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brA" = ( -/obj/structure/noticeboard{ - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brB" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brC" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brE" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"brF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/kitchen) -"brH" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hydroponics) -"brJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"brL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brM" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brO" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/library) -"brP" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/library) -"brQ" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/library) -"brS" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/library) -"brT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/library) -"brU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brV" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"brW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/chapel/main) -"brX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Escape shuttle Hallway"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"brY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"brZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bsa" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsb" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bsc" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bsd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bse" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/hallway/secondary/entry) -"bsf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "neutral"; - dir = 4 - }, -/area/hallway/secondary/entry) -"bsg" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsh" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bsi" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bsk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 27; - pixel_y = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/crew_quarters/locker/locker_toilet) -"bsl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bsn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bso" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/stock_parts/cell{ - maxcharge = 2000 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bsr" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort1" - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bss" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/office) -"bst" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsu" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/office) -"bsv" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/office) -"bsw" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsx" = ( -/obj/machinery/button/door{ - id = "heads_meeting"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsy" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsz" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Conference Room"; - dir = 2 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsA" = ( -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsB" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsF" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/reset, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsH" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsI" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bsK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsN" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsP" = ( -/obj/machinery/status_display{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bsQ" = ( -/obj/machinery/power/apc{ - cell_type = 2500; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsR" = ( -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bsS" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bsT" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsU" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bsV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsW" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/library) -"bsX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/chapel/main) -"bsY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bsZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bta" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btb" = ( -/mob/living/simple_animal/hostile/lizard{ - desc = "A Lizard Wizard!"; - name = "Merlin" - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btc" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"btd" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bte" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-l"; - icon_state = "stairs-l" - }, -/area/hallway/secondary/entry) -"btf" = ( -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"btg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-stairs-m"; - icon_state = "stairs-m" - }, -/area/hallway/secondary/entry) -"bth" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-stairs-r"; - icon_state = "stairs-r" - }, -/area/hallway/secondary/entry) -"bti" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Vacant Office APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/security/vacantoffice) -"btj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"btk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"btl" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btm" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"btn" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"bto" = ( -/obj/machinery/washing_machine, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/crew_quarters/locker) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btq" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"btr" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"bts" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"btu" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 1 - }, -/area/quartermaster/office) -"btv" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 5 - }, -/area/quartermaster/office) -"btw" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btx" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bty" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btA" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"btC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btD" = ( -/obj/machinery/vending/snack, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"btE" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload West"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btF" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btG" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/freeform, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload East"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"btH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btK" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btL" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btM" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"btN" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"btO" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btP" = ( -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = 32; - pixel_y = 28; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/sign/directions/security{ - dir = 1; - icon_state = "direction_sec"; - pixel_x = 32; - pixel_y = 36; - tag = "icon-direction_sec (NORTH)" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btQ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btR" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btU" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btZ" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/secondary/exit) -"buc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bud" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bue" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buf" = ( -/obj/structure/window, -/obj/structure/flora/ausbushes, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bug" = ( -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"buh" = ( -/obj/structure/window{ - tag = "icon-window (EAST)"; - icon_state = "window"; - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bui" = ( -/obj/structure/window, -/obj/machinery/vending/cola, -/turf/open/floor/carpet, -/area/rec_room) -"buj" = ( -/obj/structure/window, -/obj/machinery/vending/snack, -/turf/open/floor/carpet, -/area/rec_room) -"buk" = ( -/obj/structure/window, -/obj/item/weapon/twohanded/required/kirbyplants, -/turf/open/floor/carpet, -/area/rec_room) -"bul" = ( -/obj/structure/window, -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/rec_room) -"bum" = ( -/obj/structure/window, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/rec_room) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bup" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bur" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bus" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"but" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"buu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"buv" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"buy" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"buA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/crew_quarters/locker) -"buB" = ( -/obj/machinery/camera{ - c_tag = "Locker Room South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"buC" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buD" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"buF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/office) -"buH" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"buI" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - layer = 2.9; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"buK" = ( -/obj/item/weapon/hand_labeler, -/obj/item/device/assembly/timer, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buL" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buM" = ( -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buN" = ( -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buO" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"buP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buQ" = ( -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"buR" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"buS" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai_upload) -"buT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"buU" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"buV" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"buW" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway East"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"buX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bva" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j1"; - tag = "icon-pipe-j1 (EAST)" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bve" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bvn" = ( -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bvo" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/obj/item/weapon/canvas/twentythreeXtwentythree, -/turf/open/floor/carpet, -/area/rec_room) -"bvp" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/weapon/storage/crayons, -/obj/item/weapon/pen, -/turf/open/floor/carpet, -/area/rec_room) -"bvq" = ( -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/rec_room) -"bvr" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"bvu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bvw" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvx" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bvy" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port) -"bvz" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/item/clothing/suit/ianshirt, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port) -"bvA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/locker) -"bvB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bvC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvE" = ( -/obj/structure/closet/crate, -/obj/machinery/doorButtons, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvF" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvG" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bvI" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bvJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bvL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bvM" = ( -/obj/item/weapon/storage/fancy/donut_box, -/obj/structure/table, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvN" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvO" = ( -/obj/item/weapon/folder/blue, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bvP" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bvQ" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/core/full/asimov, -/obj/item/weapon/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/corp, -/obj/item/weapon/aiModule/core/full/paladin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/weapon/aiModule/core/full/robocop, -/obj/item/weapon/aiModule/core/full/custom, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvR" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvS" = ( -/obj/machinery/computer/upload/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvT" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 2; - name = "Upload APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvU" = ( -/obj/machinery/computer/upload/borg, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai_upload) -"bvV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvW" = ( -/obj/structure/table, -/obj/item/weapon/aiModule/supplied/oxygen, -/obj/item/weapon/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/weapon/aiModule/reset/purge, -/obj/structure/window/reinforced, -/obj/item/weapon/aiModule/core/full/antimov, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/aiModule/supplied/protectStation, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai_upload) -"bvX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bwd" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/item/weapon/storage/lockbox/medal{ - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bwe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bwf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwg" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = 32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/science{ - dir = 4; - icon_state = "direction_sci"; - pixel_x = 32; - pixel_y = -32; - tag = "icon-direction_sci (EAST)" - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwi" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwj" = ( -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/hallway/primary/starboard) -"bwl" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "bluecorner" - }, -/area/hallway/primary/starboard) -"bwm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/hallway/primary/starboard) -"bwo" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/primary/starboard) -"bwp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwq" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bws" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwv" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bww" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/secondary/exit) -"bwx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwy" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bwz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/hallway/secondary/exit) -"bwA" = ( -/obj/machinery/camera{ - c_tag = "Escape Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bwC" = ( -/obj/structure/easel, -/turf/open/floor/carpet, -/area/rec_room) -"bwD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwG" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/rec_room) -"bwH" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwI" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Recreation Room"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/rec_room) -"bwJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwK" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bwL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwM" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwN" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwO" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage"; - verted = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bwU" = ( -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwV" = ( -/obj/machinery/camera{ - c_tag = "Locker Room Toilets"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"bwW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Locker Room APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bwX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bxa" = ( -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxb" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"bxc" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxd" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bxf" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal" - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bxg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bxh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxj" = ( -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/bridge/meeting_room) -"bxn" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxq" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxr" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxs" = ( -/obj/machinery/status_display{ - density = 0; - layer = 4 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai_upload) -"bxv" = ( -/obj/structure/table/wood, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxw" = ( -/obj/structure/table/wood, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxx" = ( -/obj/structure/table/wood, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxy" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxA" = ( -/obj/structure/table/wood, -/obj/item/weapon/pinpointer, -/obj/item/weapon/disk/nuclear, -/obj/item/weapon/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bxB" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bxC" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall, -/area/medical/medbay) -"bxD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bxE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxF" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bxG" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bxH" = ( -/turf/closed/wall, -/area/medical/morgue) -"bxI" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bxJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Primary Hallway APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxL" = ( -/turf/closed/wall, -/area/storage/emergency) -"bxM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bxN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/assembly/chargebay) -"bxO" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "loadingarea" - }, -/area/hallway/primary/starboard) -"bxP" = ( -/turf/closed/wall/r_wall, -/area/assembly/robotics) -"bxR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxS" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxT" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxU" = ( -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxV" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "purple" - }, -/area/hallway/primary/starboard) -"bxX" = ( -/turf/closed/wall/r_wall, -/area/toxins/lab) -"bxY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bxZ" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "escape" - }, -/area/hallway/secondary/exit) -"bya" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/exit) -"byc" = ( -/obj/structure/easel, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/rec_room) -"byd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/rec_room) -"bye" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals Hallway South"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"byf" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/food, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byg" = ( -/obj/structure/chair/stool{ - pixel_y = 0 - }, -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byh" = ( -/obj/structure/rack{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/contraband, -/obj/effect/spawner/lootdrop/plants, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal) -"byk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Disposal APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byo" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/locker/locker_toilet) -"byq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bys" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Bay APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"byw" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byz" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/storage) -"byA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/storage) -"byB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/quartermaster/office) -"byC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"byE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"byF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"byG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"byH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"byI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway West"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"byK" = ( -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Bridge Delivery"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/bridge/meeting_room) -"byL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byM" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"byP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"byQ" = ( -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byS" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"byU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"byV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Captain" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byW" = ( -/obj/machinery/computer/communications, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byX" = ( -/obj/structure/table/wood, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/item/weapon/coin/plasma, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"byZ" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/item/device/camera, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bza" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzb" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzc" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Chemistry APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bzd" = ( -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bze" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzf" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bzg" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzh" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bzk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bzl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26; - req_access_txt = "5" - }, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/medical) -"bzm" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/medical) -"bzn" = ( -/obj/structure/filingcabinet, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/medical) -"bzo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzp" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bzu" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bzv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bzw" = ( -/turf/closed/wall, -/area/assembly/chargebay) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bzy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/assembly/chargebay) -"bzz" = ( -/obj/machinery/computer/rdconsole/robotics, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzA" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzB" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bzC" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - closingLayer = 3.2; - dir = 2; - icon_state = "left"; - layer = 3.2; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bzE" = ( -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"bzF" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bzG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bzH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - closingLayer = 3.2; - layer = 3.2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - closingLayer = 3.3; - id = "rnd"; - name = "research lab shutters" - }, -/turf/open/floor/plating, -/area/toxins/lab) -"bzI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bzK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bzL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bzM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bzN" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/rec_room) -"bzP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/rec_room) -"bzQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzS" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzT" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzV" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage"; - verted = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bzX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bAh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/storage) -"bAj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAk" = ( -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/quartermaster/office) -"bAl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bAo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 4 - }, -/area/quartermaster/office) -"bAp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bAq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bAs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "bluecorner" - }, -/area/hallway/primary/central) -"bAt" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/bridge/meeting_room) -"bAu" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bAv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/maintcentral) -"bAw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bAz" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = -28 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAA" = ( -/obj/machinery/computer/card, -/obj/item/weapon/card/id/captains_spare, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAB" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/weapon/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bAC" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAE" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chemist" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bAG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bAH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bAJ" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bAK" = ( -/obj/machinery/computer/secure_data, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bAL" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bAO" = ( -/turf/open/floor/plating, -/area/storage/emergency) -"bAP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plating, -/area/storage/emergency) -"bAQ" = ( -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/storage/emergency) -"bAR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bAS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAT" = ( -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bAU" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/assembly/chargebay) -"bAV" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/chargebay) -"bAW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bAY" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bBa" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBc" = ( -/obj/machinery/vending/robotics, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitered" - }, -/area/assembly/robotics) -"bBd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bBf" = ( -/obj/machinery/camera{ - c_tag = "Research Division Access"; - dir = 2; - network = list("SS13") - }, -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/research{ - name = "Research Division" - }) -"bBg" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBh" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurple" - }, -/area/toxins/lab) -"bBi" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/button/door{ - dir = 2; - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/toxins/lab) -"bBj" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bBl" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "arrival" - }, -/area/hallway/secondary/entry) -"bBr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "bluecorner" - }, -/area/hallway/secondary/entry) -"bBs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBu" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - density = 0; - dir = 4; - icon_state = "rightopen"; - layer = 3 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/disposal) -"bBw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBx" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBy" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBz" = ( -/obj/machinery/mineral/stacking_unit_console{ - dir = 2; - machinedir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bBA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBB" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bBG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bBH" = ( -/obj/structure/table, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBI" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/hand_labeler, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBK" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBL" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBO" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -1; - pixel_y = 24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bBP" = ( -/obj/machinery/photocopier, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bBR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bBT" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBU" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bridge Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBV" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bBW" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bBY" = ( -/obj/structure/closet/secure_closet/freezer/money, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bBZ" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCb" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bCc" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/folder/documents, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bCd" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCe" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Captain's Desk Door"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/captain) -"bCi" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bCl" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/dropper, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bCm" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"bCn" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCs" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bCu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bCT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bCU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bCX" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bDb" = ( -/turf/closed/wall, -/area/maintenance/asmaint2) -"bDc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 12; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space, -/area/space) -"bDd" = ( -/obj/machinery/door/airlock/external{ - id_tag = null; - name = "Port Docking Bay 2"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bDe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bDg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/hallway/secondary/entry) -"bDi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/hallway/secondary/entry) -"bDj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDk" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bDl" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage"; - layer = 2.5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - layer = 3; - name = "disposal exit vent" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bDn" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bDq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bDt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bDv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bDy" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bDz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDB" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bDF" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/office) -"bDG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Head of Personnel APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bDL" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bDM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Conference Room APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"bDN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Confrence Room South"; - dir = 1 - }, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"bDO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bDQ" = ( -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDR" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bDS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/ai_monitored/nuke_storage) -"bDT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bDU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bDV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/captain) -"bDW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bDX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bDY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bEd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bEf" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEg" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEh" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEi" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bEk" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bEl" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/medical) -"bEm" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bEn" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/assembly/chargebay) -"bEo" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bEp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bEr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bEs" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEu" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/assembly/robotics) -"bEw" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bEy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEz" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bEA" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEB" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bEC" = ( -/obj/machinery/r_n_d/protolathe, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/lab) -"bED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bEE" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEF" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bEG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEJ" = ( -/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 = 32 - }, -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bEK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bEL" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEM" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEO" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bEQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bER" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/disposal) -"bES" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bET" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEW" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/port) -"bEY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bEZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bFa" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFf" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bFg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bFh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bFi" = ( -/obj/machinery/status_display{ - density = 0; - pixel_y = 2; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/quartermaster/office) -"bFj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bFl" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/quartermaster/office) -"bFm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bFn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFo" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/maintcentral) -"bFp" = ( -/turf/closed/wall, -/area/crew_quarters/heads) -"bFq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads) -"bFr" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/heads) -"bFs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads) -"bFt" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/champion, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bFu" = ( -/obj/item/weapon/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/weapon/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bFv" = ( -/turf/closed/wall, -/area/crew_quarters/captain) -"bFw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bFz" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFA" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bFC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFE" = ( -/obj/structure/table/glass, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bFH" = ( -/obj/machinery/chem_dispenser, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFI" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/medical/chemistry) -"bFJ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFK" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - req_access_txt = "5" - }, -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFM" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bFO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/medical) -"bFP" = ( -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/medical) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"bFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency) -"bFY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bFZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGc" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bGd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bGf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Roboticist" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bGg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/robotics) -"bGi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bGj" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bGl" = ( -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGm" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bGn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bGo" = ( -/obj/machinery/computer/rdconsole/core, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGp" = ( -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGq" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, -/turf/open/floor/plasteel, -/area/toxins/lab) -"bGr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/lab) -"bGs" = ( -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bGy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bGz" = ( -/obj/structure/grille, -/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 = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bGA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGB" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 3 & 4"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/hallway/secondary/entry) -"bGD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bGE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal) -"bGF" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - icon_state = "switch-rev"; - id = "garbage"; - name = "disposal coveyor"; - position = -1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGG" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGH" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGI" = ( -/obj/structure/closet, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bGJ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGO" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bGP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/office) -"bGQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGS" = ( -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGT" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGU" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGV" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bGW" = ( -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/quartermaster/office) -"bGX" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/office) -"bGY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGZ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/hallway/primary/central) -"bHa" = ( -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 36 - }, -/obj/machinery/pdapainter, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bHb" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 0; - pixel_y = 32 - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHc" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/bed/dogbed{ - anchored = 1; - desc = "Ian's bed! Looks comfy."; - name = "Ian's bed" - }, -/mob/living/simple_animal/pet/dog/corgi/Ian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bHf" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bHg" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bHh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault" - }, -/area/ai_monitored/nuke_storage) -"bHi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 10 - }, -/area/ai_monitored/nuke_storage) -"bHj" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/gun/projectile/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bHk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/captain) -"bHl" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/captain, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHn" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bHo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHq" = ( -/obj/structure/table/glass, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHs" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bHt" = ( -/turf/closed/wall, -/area/medical/medbay) -"bHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bHw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/medbay) -"bHx" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHy" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bHz" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/medical) -"bHA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bHB" = ( -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "6;5" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/morgue) -"bHC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bHD" = ( -/turf/closed/wall, -/area/medical/genetics) -"bHE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"bHG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bHI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bHJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bHK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bHN" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bHO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHP" = ( -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bHR" = ( -/obj/structure/table, -/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/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/crowbar, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bHS" = ( -/turf/closed/wall, -/area/assembly/robotics) -"bHT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHV" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bHW" = ( -/turf/closed/wall, -/area/toxins/lab) -"bHX" = ( -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/lab) -"bIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/lab) -"bIb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bIc" = ( -/obj/item/weapon/stock_parts/console_screen, -/obj/structure/table/glass, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/console_screen, -/obj/item/weapon/stock_parts/matter_bin, -/obj/item/weapon/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/weapon/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/stock_parts/scanning_module, -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bId" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/lab) -"bIe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/lab) -"bIf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bIi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"bIj" = ( -/turf/closed/wall, -/area/toxins/shuttledock) -"bIk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s6"; - dir = 2 - }, -/area/shuttle/outpost) -"bIl" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/outpost) -"bIm" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bIn" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s10"; - dir = 2 - }, -/area/shuttle/outpost) -"bIo" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bIp" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIq" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bIr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bIs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bIt" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bIu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIx" = ( -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bIz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/office) -"bIB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bIC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bID" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/hallway/primary/central) -"bIE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bIF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/hallway/primary/central) -"bIG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Reception Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bII" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bIL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bIM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bIN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIP" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIQ" = ( -/obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; - req_access_txt = "53" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bIR" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"bIU" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIV" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIW" = ( -/obj/structure/table/wood, -/obj/item/weapon/storage/box/matches, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/obj/item/weapon/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/crew_quarters/captain) -"bIX" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/weapon/soap/deluxe, -/obj/item/weapon/bikehorn/rubberducky, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "freezerfloor" - }, -/area/crew_quarters/captain) -"bIY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIZ" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJb" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJc" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bJd" = ( -/obj/structure/bed/roller, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bJe" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/medical/medbay) -"bJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bJl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/medical/genetics) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJo" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTH)"; - icon_state = "whiteblue"; - dir = 1 - }, -/area/medical/genetics) -"bJp" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (NORTHEAST)"; - icon_state = "whiteblue"; - dir = 5 - }, -/area/medical/genetics) -"bJq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bJr" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/weapon/storage/pill_bottle/mutadone, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJs" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bJt" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bJu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJv" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bJw" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bJx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall, -/area/assembly/chargebay) -"bJy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/assembly/chargebay) -"bJB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bJD" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/obj/item/weapon/hemostat, -/turf/open/floor/plasteel, -/area/assembly/robotics) -"bJF" = ( -/obj/structure/table, -/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/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bJG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/assembly/robotics) -"bJH" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/research{ - name = "Research Division" - }) -"bJJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/medical/research{ - name = "Research Division" - }) -"bJK" = ( -/obj/item/weapon/folder/white, -/obj/structure/table, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/tech_disk{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/disk/design_disk, -/obj/item/weapon/disk/design_disk, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJO" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = -23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bJP" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/toxins/lab) -"bJQ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/lab) -"bJR" = ( -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bJT" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJU" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJV" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Science Outpost Dock APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bJW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bJX" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall3"; - dir = 2 - }, -/area/shuttle/outpost) -"bJY" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bJZ" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bKa" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_ss13"; - name = "SS13 Arrival Docking"; - width = 35 - }, -/turf/open/space, -/area/space) -"bKb" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKc" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bKd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bKe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bKf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKi" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bKj" = ( -/obj/machinery/autolathe, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKm" = ( -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKn" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKo" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bKp" = ( -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bKq" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bKr" = ( -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bKs" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bKt" = ( -/obj/machinery/computer/card, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bKu" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKv" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bKw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Vault Access"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/nuke_storage) -"bKy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bKz" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bKC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"bKD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKF" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/chemistry) -"bKH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/chemistry) -"bKJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel{ - tag = "icon-whitebot (WEST)"; - icon_state = "whitebot"; - dir = 8 - }, -/area/medical/medbay) -"bKK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKM" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bKQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor2"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKT" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKU" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKW" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bKX" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bKY" = ( -/turf/open/floor/plasteel, -/area/medical/genetics) -"bKZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 14 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bLa" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/assembly/chargebay) -"bLb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bLf" = ( -/obj/structure/table, -/obj/item/weapon/circular_saw, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/assembly/robotics) -"bLh" = ( -/obj/machinery/button/door{ - dir = 2; - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bLi" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/assembly/robotics) -"bLj" = ( -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bLl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/lab) -"bLm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/lab) -"bLo" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLp" = ( -/obj/structure/table, -/obj/item/weapon/pen, -/obj/machinery/camera{ - c_tag = "Experimentor Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/item/weapon/hand_labeler, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLq" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLr" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/toxins/explab) -"bLs" = ( -/obj/structure/closet/emcloset{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bLv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLw" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bLy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bLz" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bLA" = ( -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/outpost) -"bLC" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLD" = ( -/turf/open/floor/plating, -/area/quartermaster/storage) -"bLE" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bLF" = ( -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/quartermaster/storage) -"bLG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bLH" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/device/multitool, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bLJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLK" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - layer = 2.9; - name = "Privacy Shutters" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/heads) -"bLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads) -"bLO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bLP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bLQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/ai_monitored/nuke_storage) -"bLR" = ( -/turf/closed/wall, -/area/teleporter) -"bLS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLT" = ( -/obj/structure/table, -/obj/item/weapon/hand_tele, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bLU" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/closet/crate, -/obj/item/weapon/crowbar, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLV" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLW" = ( -/obj/machinery/camera{ - c_tag = "Teleporter" - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLY" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bLZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bMa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bMc" = ( -/obj/structure/table, -/obj/item/weapon/crowbar, -/obj/item/clothing/tie/stethoscope, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/medical/medbay) -"bMg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/medical/medbay) -"bMh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMn" = ( -/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" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bMo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/genetics) -"bMp" = ( -/obj/structure/table/glass, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor2"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bMr" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bMs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bMt" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMu" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/assembly/chargebay) -"bMw" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/assembly/chargebay) -"bMx" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 4 - }, -/area/assembly/robotics) -"bMy" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMz" = ( -/obj/machinery/computer/operating{ - name = "Robotics Operating Computer" - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bMB" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/assembly/robotics) -"bMD" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division North"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bML" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bMN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/explab) -"bMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMP" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bMU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"bMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bMY" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bMZ" = ( -/turf/open/floor/plating, -/area/toxins/shuttledock) -"bNa" = ( -/obj/machinery/door/airlock/shuttle{ - req_access_txt = "7" - }, -/turf/open/floor/plating, -/area/shuttle/outpost) -"bNb" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost_home"; - name = "outpost shuttle bay"; - width = 7 - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "outpost"; - name = "outpost shuttle"; - port_angle = 90; - width = 7 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall3" - }, -/area/shuttle/outpost) -"bNc" = ( -/obj/machinery/camera{ - c_tag = "Cargo Recieving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - dir = 2; - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/quartermaster/storage) -"bNd" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bNe" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/folder/yellow, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNj" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bNk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bNl" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "blue" - }, -/area/crew_quarters/heads) -"bNm" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNn" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/coin/gold, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bNq" = ( -/turf/closed/wall, -/area/ai_monitored/nuke_storage) -"bNr" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/ai_monitored/nuke_storage) -"bNs" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bNv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bNw" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/ai_monitored/nuke_storage) -"bNx" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/ai_monitored/nuke_storage) -"bNy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/teleporter) -"bNA" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel, -/area/teleporter) -"bNC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bND" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"bNF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bNG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"bNI" = ( -/obj/structure/table, -/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNS" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNT" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bNU" = ( -/obj/structure/table/glass, -/obj/item/weapon/book/manual/medical_cloning, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNV" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bNY" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whiteblue" - }, -/area/medical/genetics) -"bNZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Monkey Pen"; - req_access_txt = "9" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOa" = ( -/obj/structure/window/reinforced, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bOb" = ( -/turf/closed/wall/r_wall, -/area/assembly/chargebay) -"bOc" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/assembly/robotics) -"bOd" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/assembly/robotics) -"bOe" = ( -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOk" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bOm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOr" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bOt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/explab) -"bOw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"bOy" = ( -/obj/machinery/computer/shuttle/outpost, -/turf/open/floor/plasteel/white, -/area/toxins/shuttledock) -"bOz" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "supply bay"; - width = 12 - }, -/turf/open/space, -/area/space) -"bOA" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bOB" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bOC" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bOF" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/hallway/primary/central) -"bOG" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 0 - }, -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/crew_quarters/heads) -"bOH" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Head of Personnel" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOI" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/stamp/hop, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bON" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bOQ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/ai_monitored/nuke_storage) -"bOR" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/teleporter) -"bOS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOT" = ( -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/teleporter) -"bOU" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/teleporter) -"bOV" = ( -/obj/machinery/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOW" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/teleporter) -"bOX" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/teleporter) -"bOY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 8 - }, -/area/hallway/primary/central) -"bOZ" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30; - pixel_y = 0; - pixel_z = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPb" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPc" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bPd" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/sleeper) -"bPe" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bPf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/camera{ - c_tag = "Medbay Hallway"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bPg" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/mutadone, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPh" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPj" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/disks, -/obj/item/device/radio/headset/headset_medsci, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPk" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 12 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bPm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/research{ - name = "Research Division" - }) -"bPn" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPp" = ( -/obj/machinery/camera{ - c_tag = "Research Division West"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bPy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bPz" = ( -/turf/closed/wall, -/area/crew_quarters/hor) -"bPA" = ( -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPB" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPC" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPD" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/explab) -"bPF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bPG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPH" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bPI" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPJ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light, -/obj/machinery/status_display{ - density = 0; - pixel_y = -30; - supply_display = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/quartermaster/storage) -"bPK" = ( -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/quartermaster/storage) -"bPL" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bPM" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #4" - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/quartermaster/storage) -"bPN" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPO" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 2; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bPQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/quartermaster/office) -"bPR" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"bPS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bPU" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bPV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/hallway/primary/central) -"bPW" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/crew_quarters/heads) -"bPX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPY" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bPZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bQc" = ( -/obj/machinery/button/door{ - id = "vaultshut"; - name = "Vault Shutters Control"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "1" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQe" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/withwheels/office/dark, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bQg" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "redcorner" - }, -/area/ai_monitored/nuke_storage) -"bQh" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/ai_monitored/nuke_storage) -"bQi" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/teleporter) -"bQj" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/teleporter) -"bQk" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/teleporter) -"bQl" = ( -/obj/structure/rack, -/obj/item/weapon/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/teleporter) -"bQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQn" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Medbay" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/medbay) -"bQo" = ( -/obj/machinery/door/window/eastleft{ - name = "Medical Delivery"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/medbay) -"bQp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bQs" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQt" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bQu" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bQv" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQw" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/medical/sleeper) -"bQx" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQy" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQz" = ( -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 2; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bQA" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bQF" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQG" = ( -/obj/structure/disposalpipe/sortjunction{ - sortType = 23 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bQI" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Research Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bQU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/weapon/disk/tech_disk/gooncode, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQV" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQW" = ( -/obj/machinery/computer/aifixer, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bQX" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bQY" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/crew_quarters/hor) -"bQZ" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/crew_quarters/hor) -"bRa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/explab) -"bRb" = ( -/turf/closed/wall, -/area/toxins/explab) -"bRc" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/book/manual/experimentor, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRd" = ( -/obj/machinery/computer/rdconsole/experiment, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/toxins/explab) -"bRe" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitecorner" - }, -/area/toxins/explab) -"bRf" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_x = 25; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/explab) -"bRg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRi" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bRk" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s5"; - dir = 2 - }, -/area/shuttle/outpost) -"bRm" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall_s9"; - dir = 2 - }, -/area/shuttle/outpost) -"bRn" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bRo" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bRp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bRq" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bRs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bRt" = ( -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/supply) -"bRv" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/supply) -"bRw" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/supply) -"bRx" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/heads) -"bRz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"bRB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bRC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vaultshut"; - layer = 2.9; - name = "Vault Shutters" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Vault Access"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red, -/area/ai_monitored/nuke_storage) -"bRD" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South-East"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/sleeper) -"bRF" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = ""; - name = "Surgery Observation"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bRG" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRH" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bRI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/medical/sleeper) -"bRJ" = ( -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRL" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bRN" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = "GeneticsDoor"; - name = "Genetics"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair, -/obj/effect/landmark/start{ - name = "Geneticist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRP" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Genetics Research"; - req_access_txt = "5; 9" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRS" = ( -/obj/machinery/camera{ - c_tag = "Genetics Research"; - dir = 1; - network = list("SS13","RD"); - pixel_x = 0 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitepurple" - }, -/area/medical/genetics) -"bRT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bRU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRV" = ( -/obj/machinery/camera{ - c_tag = "Genetics Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bRW" = ( -/turf/closed/wall/r_wall, -/area/toxins/server) -"bRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bRY" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bSa" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/security/checkpoint/science) -"bSb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bSd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bSe" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/item/weapon/coin/uranium, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSf" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Research Director" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSg" = ( -/obj/machinery/computer/robotics, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bSh" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSi" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/crew_quarters/hor) -"bSj" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bSk" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/hor) -"bSl" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/toxins/explab) -"bSn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSo" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bSp" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/quartermaster, -/obj/item/weapon/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30; - pixel_y = 0 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSq" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSr" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSs" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSu" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bSv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Dock APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bSz" = ( -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bSC" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/supply) -"bSD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSE" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "blue" - }, -/area/hallway/primary/central) -"bSI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/hallway/primary/central) -"bSJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSK" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/hallway/primary/central) -"bSM" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/hallway/primary/central) -"bSN" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSO" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSP" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSQ" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Surgery Observation" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSS" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bST" = ( -/obj/structure/chair, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bSU" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - dir = 4; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSV" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bSW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSY" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bSZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bTa" = ( -/obj/machinery/light, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = -24; - pixel_y = 3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTb" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTc" = ( -/obj/machinery/computer/cloning, -/turf/open/floor/plasteel/whiteblue/side, -/area/medical/genetics) -"bTd" = ( -/obj/machinery/clonepod, -/turf/open/floor/plasteel/whiteblue/side{ - tag = "icon-whiteblue (SOUTHEAST)"; - icon_state = "whiteblue"; - dir = 6 - }, -/area/medical/genetics) -"bTe" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bTf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTg" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTi" = ( -/obj/structure/closet/wardrobe/genetics_white, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/genetics) -"bTj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"bTk" = ( -/obj/machinery/r_n_d/server/robotics, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 140; - on = 1; - pressure_checks = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bTm" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bTn" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTo" = ( -/obj/machinery/camera{ - c_tag = "Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Server Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTp" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bTq" = ( -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/science) -"bTs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTt" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of your own office."; - name = "Research Monitor"; - network = list("RD"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/science) -"bTu" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/science) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bTw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/hor) -"bTx" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/pen/blue, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTz" = ( -/obj/machinery/computer/mecha, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bTA" = ( -/obj/structure/rack, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTB" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTC" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/crew_quarters/hor) -"bTD" = ( -/turf/open/floor/engine, -/area/toxins/explab) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTF" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTG" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bTH" = ( -/obj/machinery/computer/cargo, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTK" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bTN" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bTO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/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/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - icon_state = "pipe-j2s"; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bTS" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/supply) -"bUa" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUh" = ( -/obj/structure/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUj" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUk" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/medical/sleeper) -"bUl" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bUm" = ( -/obj/machinery/light, -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUo" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUr" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bUs" = ( -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUt" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bUu" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22; - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUv" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Server Walkway"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_command{ - name = "Server Room"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUx" = ( -/obj/machinery/atmospherics/pipe/manifold{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUy" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUz" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bUA" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/science) -"bUC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUD" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bUE" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/science) -"bUF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bUH" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Research Director"; - req_access_txt = "30" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUM" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bUN" = ( -/obj/machinery/r_n_d/experimentor, -/turf/open/floor/engine, -/area/toxins/explab) -"bUO" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bUP" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bUQ" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/status_display{ - density = 0; - pixel_x = -32; - pixel_y = 0; - supply_display = 1 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUS" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUT" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUU" = ( -/obj/structure/table, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/qm{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUV" = ( -/obj/structure/filingcabinet, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "brown" - }, -/area/quartermaster/qm) -"bUW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bUX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUY" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bVa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bVb" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/supply) -"bVd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/supply) -"bVe" = ( -/obj/structure/filingcabinet, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - hitstaken = 1; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/supply) -"bVf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "browncorner" - }, -/area/hallway/primary/central) -"bVg" = ( -/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" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South-West"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - icon_state = "direction_med"; - pixel_x = -32; - pixel_y = -24; - tag = "icon-direction_med (EAST)" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - icon_state = "direction_evac"; - pixel_x = -32; - pixel_y = -32; - tag = "icon-direction_evac (EAST)" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway South"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVu" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVw" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVx" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVA" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "surgery"; - name = "Surgery Shutters" - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bVE" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Recovery Room"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bVF" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVG" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = 30; - pixel_z = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bVI" = ( -/turf/closed/wall, -/area/medical/cmo) -"bVJ" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVK" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVL" = ( -/obj/machinery/computer/med_data, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bVP" = ( -/obj/machinery/r_n_d/server/core, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 120; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/bluegrid{ - name = "Server Base"; - initial_gas_mix = "o2=0;n2=500;TEMP=80" - }, -/area/toxins/server) -"bVR" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/server) -"bVS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVT" = ( -/obj/machinery/computer/rdservercontrol, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVU" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/toxins/server) -"bVV" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/science) -"bVX" = ( -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVY" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/science) -"bVZ" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/science) -"bWa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/item/weapon/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWd" = ( -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/computer/card/minor/rd, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWe" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/signal/toxins, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("SS13","RD") - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWf" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWh" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "cafeteria" - }, -/area/crew_quarters/hor) -"bWi" = ( -/obj/machinery/camera{ - c_tag = "Experimentor Lab Chamber"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/toxins/explab) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWl" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWm" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bWn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bWo" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bWp" = ( -/turf/closed/wall, -/area/storage/tech) -"bWq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/central) -"bWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/central) -"bWt" = ( -/turf/closed/wall, -/area/janitor) -"bWu" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bWv" = ( -/turf/closed/wall, -/area/maintenance/asmaint) -"bWw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWx" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/hallway/primary/central) -"bWy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/weapon/surgicaldrill, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWz" = ( -/obj/structure/table, -/obj/item/weapon/hemostat, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWA" = ( -/obj/structure/table, -/obj/item/weapon/scalpel{ - pixel_y = 12 - }, -/obj/item/weapon/circular_saw, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWB" = ( -/obj/structure/table, -/obj/item/weapon/retractor, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 2 - }, -/area/medical/sleeper) -"bWC" = ( -/obj/structure/table, -/obj/item/weapon/cautery{ - pixel_x = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bWD" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/gun/syringe, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/soap/nanotrasen, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bWF" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWG" = ( -/obj/structure/closet/wardrobe/white/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWH" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWI" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWJ" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/rxglasses, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bWL" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/medbay) -"bWM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/cmo) -"bWN" = ( -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWO" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWP" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bWR" = ( -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"bWS" = ( -/turf/closed/wall, -/area/toxins/storage) -"bWT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWV" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bWW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWX" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bWY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 32 - }, -/turf/open/space, -/area/space) -"bWZ" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/machinery/requests_console{ - department = "Mining"; - departmentType = 0; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bXd" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXk" = ( -/obj/structure/table, -/obj/item/weapon/electronics/apc, -/obj/item/weapon/electronics/airlock, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXl" = ( -/obj/structure/table, -/obj/item/weapon/screwdriver{ - pixel_y = 16 - }, -/obj/item/weapon/wirecutters, -/turf/open/floor/plating, -/area/storage/tech) -"bXm" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXn" = ( -/obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 2 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Tech Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXo" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXp" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bXq" = ( -/turf/open/floor/plating, -/area/storage/tech) -"bXr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bXt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bXu" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/plasteel, -/area/janitor) -"bXv" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/janicart, -/turf/open/floor/plasteel, -/area/janitor) -"bXx" = ( -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/janitor) -"bXy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bXz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bXA" = ( -/turf/open/floor/plasteel, -/area/janitor) -"bXB" = ( -/obj/machinery/door/window/westleft{ - name = "Janitoral Delivery"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/janitor) -"bXC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/janitor) -"bXD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bXF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -25; - req_one_access_txt = "5" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXH" = ( -/obj/effect/landmark/start{ - name = "Medical Doctor" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXJ" = ( -/obj/structure/table, -/obj/item/weapon/surgical_drapes, -/obj/item/weapon/razor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"bXK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bXL" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bXM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bXO" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXR" = ( -/obj/machinery/door/airlock/glass_medical{ - id_tag = null; - name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/medbay) -"bXT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bXW" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/coin/silver, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXX" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/stamp/cmo, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXY" = ( -/obj/structure/table/glass, -/obj/item/weapon/pen, -/obj/item/clothing/tie/stethoscope, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bXZ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bYa" = ( -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYb" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 2; - network = list("Xeno","RD"); - pixel_x = 0 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"bYc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYd" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/storage) -"bYe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Misc Research APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYg" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYh" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bYi" = ( -/turf/closed/wall, -/area/toxins/mixing) -"bYj" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/plasmaresearch, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYl" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab West"; - dir = 2; - network = list("SS13","RD"); - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYm" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm{ - frequency = 1439; - locked = 0; - pixel_y = 23 - }, -/obj/item/weapon/storage/firstaid/toxin, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYo" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"bYq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/mixing) -"bYr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/toxins/mixing) -"bYs" = ( -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"bYt" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bYx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/mixing) -"bYy" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/labor) -"bYz" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYC" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/miner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bYD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"bYE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYG" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/maintenance/aft) -"bYJ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYL" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYM" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"bYN" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/weapon/aiModule/reset, -/turf/open/floor/plating, -/area/storage/tech) -"bYO" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bYQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"bYR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"bYT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Janitor" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bYX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bYY" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/janitor) -"bYZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/janitor) -"bZa" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZb" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 6 - }, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZc" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"bZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZi" = ( -/obj/structure/table/optable, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bZm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whiteblue" - }, -/area/medical/sleeper) -"bZn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZo" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"bZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bZq" = ( -/obj/structure/table, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"bZt" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = -30; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"bZv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"bZy" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZz" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZA" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/weapon/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZC" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"bZD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/storage) -"bZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZF" = ( -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"bZG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/mixing) -"bZH" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"bZL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/toxins/mixing) -"bZP" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/mixing) -"bZQ" = ( -/turf/closed/indestructible, -/area/toxins/test_area) -"bZR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"bZS" = ( -/obj/structure/table, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZT" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"bZU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bZV" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"bZW" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZY" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bZZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cab" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cac" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cad" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/borgupload{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/aiupload{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cae" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 2 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"caf" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"cag" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cah" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/pandemic{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/circuitboard/computer/rdconsole, -/obj/item/weapon/circuitboard/machine/rdserver{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/destructive_analyzer, -/obj/item/weapon/circuitboard/machine/protolathe, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/circuitboard/computer/aifixer, -/obj/item/weapon/circuitboard/computer/teleporter, -/obj/item/weapon/circuitboard/machine/circuit_imprinter, -/obj/item/weapon/circuitboard/machine/mechfab, -/turf/open/floor/plating, -/area/storage/tech) -"cai" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/mining, -/obj/item/weapon/circuitboard/machine/autolathe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/computer/arcade/battle, -/turf/open/floor/plating, -/area/storage/tech) -"caj" = ( -/obj/structure/rack, -/obj/item/weapon/circuitboard/machine/telecomms/processor, -/obj/item/weapon/circuitboard/machine/telecomms/receiver, -/obj/item/weapon/circuitboard/machine/telecomms/server, -/obj/item/weapon/circuitboard/machine/telecomms/bus, -/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, -/obj/item/weapon/circuitboard/computer/message_monitor{ - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cak" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cal" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/key/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"cam" = ( -/obj/structure/table, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"can" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/janitor) -"cao" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel, -/area/janitor) -"cap" = ( -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/restraints/legcuffs/beartrap, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/mousetraps, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"caq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/janitor) -"car" = ( -/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/open/floor/plating, -/area/maintenance/asmaint) -"cas" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cat" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cau" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cav" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 4; - name = "Treatment Center APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"caw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitehall" - }, -/area/medical/sleeper) -"cax" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cay" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caz" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/medical/sleeper) -"caA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caB" = ( -/obj/machinery/vending/wallmed{ - pixel_x = 28; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("SS13") - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/gun/syringe, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"caE" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caF" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caG" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv4"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caH" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv4"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"caI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"caL" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Medical Officer"; - req_access_txt = "40" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caN" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"caP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/cmo) -"caQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction{ - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"caS" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Toxins Storage APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"caY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"caZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cba" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"cbb" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cbe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cbf" = ( -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/mixing) -"cbg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbh" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"cbi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cbj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cbk" = ( -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cbl" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("Toxins"); - pixel_x = 30; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cbm" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cbn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cbo" = ( -/obj/item/weapon/ore/iron, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbp" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cbq" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cbs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbt" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cbu" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"cbv" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/weapon/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/weapon/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"cbx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cby" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbA" = ( -/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 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cbE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cbG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/janitor) -"cbI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/janitor) -"cbJ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbL" = ( -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 25 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile{ - health = 35 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cbQ" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbR" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbS" = ( -/obj/machinery/vending/wallmed{ - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Surgery Operating"; - dir = 1; - network = list("SS13"); - pixel_x = 22 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/sleeper) -"cbU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/APlus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BMinus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/BPlus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/OPlus, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cbV" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbW" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbX" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbY" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cbZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cca" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccb" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 0; - pixel_y = -30; - pixel_z = 0 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccc" = ( -/obj/structure/table, -/obj/item/weapon/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/brute, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"ccd" = ( -/obj/machinery/light, -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/sleeper) -"cce" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccg" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cch" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cci" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ccj" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"cck" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/weapon/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/weapon/cartridge/medical, -/obj/item/weapon/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccl" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"ccn" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "barber" - }, -/area/medical/cmo) -"cco" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"ccp" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ccq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"ccs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/toxins/storage) -"cct" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"ccu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccw" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/research{ - name = "Research Division" - }) -"ccx" = ( -/obj/item/device/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccy" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccz" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccA" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccB" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"ccD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"ccI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/mixing) -"ccJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ccK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible, -/area/toxins/test_area) -"ccL" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccM" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 1; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccN" = ( -/obj/structure/chair, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"ccO" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_angle = 90; - width = 7 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - width = 7 - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"ccP" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access = null; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"ccQ" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ccS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccU" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"ccW" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"ccX" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/storage/tech) -"ccY" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/cloning{ - pixel_x = 0 - }, -/obj/item/weapon/circuitboard/computer/med_data{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/circuitboard/machine/clonescanner, -/obj/item/weapon/circuitboard/machine/clonepod, -/obj/item/weapon/circuitboard/computer/scan_consolenew, -/turf/open/floor/plating, -/area/storage/tech) -"ccZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cda" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/circuitboard/computer/powermonitor{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/weapon/circuitboard/computer/stationalert{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/weapon/circuitboard/computer/atmos_alert{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdb" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cdc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cde" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdn" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"cds" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"cdt" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cdv" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/shieldwallgen{ - req_access = list(55) - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cdw" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdx" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdy" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdz" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdA" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cdB" = ( -/turf/closed/wall, -/area/toxins/xenobiology) -"cdC" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/storage) -"cdD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"cdG" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdH" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdI" = ( -/obj/item/device/assembly/signaler{ - pixel_x = 0; - pixel_y = 8 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/device/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdJ" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 0 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/item/device/transfer_valve{ - pixel_x = 5 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdK" = ( -/obj/item/device/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/assembly/timer{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdL" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdN" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cdO" = ( -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/mixing) -"cdP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/toxins/mixing) -"cdQ" = ( -/obj/machinery/camera{ - c_tag = "Toxins Launch Room Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/mixing) -"cdR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/toxins/mixing) -"cdS" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/toxins/mixing) -"cdT" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdU" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cdV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdW" = ( -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cdX" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cdY" = ( -/obj/item/weapon/ore/silver, -/obj/item/weapon/ore/silver, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cdZ" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock External"; - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/quartermaster/miningdock) -"cea" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/closed/wall, -/area/quartermaster/miningdock) -"ceb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "brown" - }, -/area/quartermaster/miningdock) -"cec" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/pickaxe{ - pixel_x = 5 - }, -/obj/item/weapon/shovel{ - pixel_x = -5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ced" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cee" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"cef" = ( -/obj/machinery/mineral/equipment_vendor, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"ceg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"ceh" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cei" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/storage/tech) -"cej" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/micro_laser, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/manipulator, -/obj/item/weapon/stock_parts/capacitor, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/obj/item/weapon/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/storage/tech) -"cek" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/obj/item/weapon/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/storage/tech) -"cel" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cen" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/tech) -"ceo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cer" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"ces" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"cet" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/asmaint) -"ceu" = ( -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cev" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cew" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cex" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cey" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cez" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/sign/securearea{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceC" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j1s"; - sortType = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceF" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/medbay) -"ceG" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceH" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room 2"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/medbay) -"ceK" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceL" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "CM Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/cmo) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ceP" = ( -/obj/item/weapon/wrench, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceQ" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Xeno"); - pixel_x = 0; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceR" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 0; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceS" = ( -/obj/machinery/door/window/southleft{ - name = "Test Chamber"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceU" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ceW" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/toxins/xenobiology) -"ceX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"ceZ" = ( -/obj/machinery/camera{ - c_tag = "Research Division South"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cfa" = ( -/obj/structure/sign/fire, -/turf/closed/wall, -/area/medical/research{ - name = "Research Division" - }) -"cfb" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/mixing) -"cfc" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfd" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/toxins/mixing) -"cff" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plating, -/area/toxins/mixing) -"cfg" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfh" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfi" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/toxins/test_area) -"cfj" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - light = null; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien{ - anchored = 1 - }, -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cfk" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/labor) -"cfl" = ( -/obj/structure/ore_box, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/labor) -"cfm" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfp" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/turf/open/floor/plating, -/area/storage/tech) -"cfq" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/item/weapon/stock_parts/subspace/filter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfr" = ( -/obj/structure/table, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/ansible, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/obj/item/weapon/stock_parts/subspace/crystal, -/turf/open/floor/plating, -/area/storage/tech) -"cfs" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/device/t_scanner, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/storage/tech) -"cft" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/storage/tech) -"cfu" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = 0; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/storage/tech) -"cfv" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/storage/tech) -"cfw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 2"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cfy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cfz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cfA" = ( -/turf/closed/wall/r_wall, -/area/atmos) -"cfB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfE" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/atmos) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/atmos) -"cfG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cfJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfK" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/clothing/tie/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfL" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfM" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "medpriv1"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfN" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "medpriv1"; - name = "privacy door" - }, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/medbay) -"cfQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"cfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cfV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfX" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cfZ" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cga" = ( -/obj/machinery/processor{ - desc = "A machine used to process slimes and retrieve their extract."; - name = "Slime Processor" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgb" = ( -/obj/machinery/smartfridge/extract, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgc" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgd" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cge" = ( -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgf" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"cgh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/research{ - name = "Research Division" - }) -"cgi" = ( -/obj/machinery/door/poddoor{ - id = "mixvent2"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgk" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/mixing) -"cgm" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor2"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller{ - airpump_tag = "tox_airlock_pump2"; - exterior_door_tag = "tox_airlock_exterior2"; - id_tag = "tox_airlock_control"; - interior_door_tag = "tox_airlock_interior2"; - pixel_x = -24; - pixel_y = 0; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cgo" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cgp" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/mixing) -"cgq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgr" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cgs" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cgu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"cgv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cgw" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/hallway/primary/aft) -"cgx" = ( -/turf/closed/wall, -/area/atmos) -"cgy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/atmos) -"cgz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cgD" = ( -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/atmos) -"cgE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cgF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "wloop_atm_meter"; - name = "Waste Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North East" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 2 - }, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "dloop_atm_meter"; - name = "Distribution Loop" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Distro"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cgL" = ( -/turf/open/floor/plasteel, -/area/atmos) -"cgM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgN" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cgO" = ( -/turf/closed/wall, -/area/medical/virology) -"cgP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cgQ" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/medical/virology) -"cgR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cgT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cha" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"chb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "whitehall" - }, -/area/medical/research{ - name = "Research Division" - }) -"chc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/research{ - name = "Research Division" - }) -"chd" = ( -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"che" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_exterior2"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chf" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump2" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chg" = ( -/obj/machinery/door/airlock/glass_research{ - autoclose = 0; - frequency = 1449; - glass = 1; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "tox_airlock_interior2"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"chh" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chi" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"chj" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab East"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/mixing) -"chk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chl" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"chn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cho" = ( -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chp" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"chq" = ( -/turf/closed/wall, -/area/construction) -"chr" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction) -"chs" = ( -/turf/open/floor/plating, -/area/construction) -"cht" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction) -"chu" = ( -/turf/open/floor/plasteel, -/area/construction) -"chv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/construction) -"chw" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"chx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Monitoring"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/atmos) -"chB" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"chF" = ( -/obj/machinery/pipedispenser/disposal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chG" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"chM" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"chN" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/atmos) -"chO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"chP" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/weapon/reagent_containers/blood/AMinus, -/obj/item/weapon/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/item/weapon/reagent_containers/blood/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chQ" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/machinery/camera{ - c_tag = "Virology Break Room" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chS" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chT" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warnwhite" - }, -/area/medical/virology) -"chU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chV" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 5 - }, -/area/medical/virology) -"chW" = ( -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chX" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"chZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cia" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/toxins/xenobiology) -"cib" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cic" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cid" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cie" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cig" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cih" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cij" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cik" = ( -/turf/open/floor/plasteel{ - icon_state = "whitehall"; - dir = 1 - }, -/area/medical/research{ - name = "Research Division" - }) -"cil" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker2"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/toxins/mixing) -"cim" = ( -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/mixing) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/button/door{ - id = "mixvent2"; - name = "Mixing Room Vent Control"; - pixel_x = -25; - pixel_y = 5; - req_access_txt = "7" - }, -/obj/machinery/button/ignition{ - id = "mixingsparker2"; - pixel_x = -25; - pixel_y = -5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhitecorner" - }, -/area/toxins/mixing) -"cio" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/toxins/mixing) -"cip" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/mixing) -"ciq" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless{ - dir = 2; - icon_state = "warnplate" - }, -/area/toxins/test_area) -"cir" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/aft) -"cis" = ( -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction) -"cit" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/construction) -"ciu" = ( -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"civ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"ciw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "loadingarea" - }, -/area/hallway/primary/aft) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"ciz" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "loadingarea" - }, -/area/atmos) -"ciA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciB" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciD" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1441; - name = "Tank Monitor"; - sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ciE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/atmos) -"ciF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/autolathe/atmos, -/turf/open/floor/plasteel, -/area/atmos) -"ciG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/atmos) -"ciH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"ciI" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciJ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciK" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Waste In"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciN" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"ciO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Mix"; - on = 0 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ciQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "green" - }, -/area/atmos) -"ciR" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ciS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"ciT" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"ciU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "waste_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciV" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciW" = ( -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ciX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ciY" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ciZ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cja" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjc" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/medical/virology) -"cjd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cje" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cjf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cjg" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cji" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjj" = ( -/obj/structure/table/glass, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjk" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjn" = ( -/obj/structure/table, -/obj/item/weapon/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjo" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/monkeycubes, -/obj/item/weapon/storage/box/monkeycubes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjp" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjq" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cjs" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cjt" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cju" = ( -/turf/closed/wall, -/area/toxins/misc_lab) -"cjv" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjw" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cjx" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjy" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjz" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cjA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cjC" = ( -/obj/item/weapon/shard, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cjD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjE" = ( -/obj/structure/girder, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjF" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fsmaint2) -"cjG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjH" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"cjL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjM" = ( -/obj/structure/closet/crate, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/construction) -"cjO" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"cjQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Construction Area"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"cjR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cjU" = ( -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 5 - }, -/area/hallway/primary/aft) -"cjV" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cjW" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cka" = ( -/obj/machinery/computer/atmos_control{ - frequency = 1443; - level = 3; - name = "Distribution and Waste Monitor"; - sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"ckb" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"ckc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckd" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cke" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cki" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckl" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ckm" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "waste_in"; - name = "Gas Mix Tank Control"; - output_tag = "waste_out"; - sensors = list("waste_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 4 - }, -/area/atmos) -"ckn" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cko" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/atmos) -"ckp" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "waste_sensor"; - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"ckr" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cks" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckt" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cku" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -28; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"ckw" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warnwhite" - }, -/area/medical/virology) -"ckx" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cky" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckz" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "warnwhite"; - dir = 1 - }, -/area/toxins/xenobiology) -"ckB" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckC" = ( -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckD" = ( -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"ckE" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_x = 0; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckF" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/camera{ - c_tag = "Testing Lab North"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckH" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - req_access = null - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ckK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"ckM" = ( -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"ckN" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ckO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckQ" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckR" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"ckX" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction) -"ckY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/construction) -"ckZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cla" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "left"; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"clc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cle" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clf" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"clg" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/atmos) -"cli" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cll" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_atmos{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cln" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"clr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Unfiltered to Mix"; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cls" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "green"; - dir = 6 - }, -/area/atmos) -"clt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"clu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space) -"clv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "waste_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "vacuum floor"; - initial_gas_mix = "o2=0.01;n2=0.01" - }, -/area/atmos) -"clw" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cly" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"clB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"clC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clE" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"clI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"clJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"clK" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"clM" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/electropack, -/obj/item/device/healthanalyzer, -/obj/item/device/assembly/signaler, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"clN" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"clR" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark{ - name = "blobstart" - }, -/obj/structure/target_stake, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"clS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"clT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"clU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/maintenance/aft) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/rack, -/obj/item/clothing/head/cone, -/obj/item/weapon/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/aft) -"clW" = ( -/obj/item/weapon/storage/secure/safe, -/turf/closed/wall, -/area/maintenance/aft) -"clX" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clY" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - tag = "icon-intact (EAST)"; - icon_state = "intact"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - tag = "icon-connector_map (WEST)"; - icon_state = "connector_map"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cma" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmb" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cme" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmf" = ( -/obj/machinery/camera{ - c_tag = "Construction Area"; - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cmg" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/construction) -"cmh" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plating, -/area/construction) -"cmi" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/construction) -"cmj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cmk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cml" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - layer = 2.9; - name = "atmos blast door" - }, -/turf/open/floor/plating, -/area/atmos) -"cmm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/weapon/tank/internals/emergency_oxygen{ - pixel_x = -8; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cmo" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/atmos) -"cmp" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/atmos) -"cmq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/obj/item/device/t_scanner, -/turf/open/floor/plasteel, -/area/atmos) -"cmr" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cmt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmv" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cmA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmH" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Virology APC"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Virology Module" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmI" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cmJ" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmL" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cmN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cmO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cmP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - locked = 0; - pixel_x = -23; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cmR" = ( -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmS" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmU" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cmV" = ( -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmW" = ( -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/toxins/misc_lab) -"cmY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cmZ" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses/garb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cna" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnb" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/clothing/tie/black, -/obj/item/clothing/tie/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/skull, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cne" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cng" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cni" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/aft) -"cnj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/aft) -"cnl" = ( -/obj/machinery/power/apc{ - name = "Aft Hall APC"; - dir = 8; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cnm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnn" = ( -/obj/item/weapon/crowbar, -/obj/item/weapon/wrench, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "caution" - }, -/area/hallway/primary/aft) -"cno" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/atmos) -"cnp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/atmos) -"cnq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6; - initialize_directions = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnt" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cnx" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 5 - }, -/area/atmos) -"cny" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnz" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2O Tanks" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cnA" = ( -/turf/open/floor/engine/n2o, -/area/atmos) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/medical/virology) -"cnE" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnF" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cnI" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnK" = ( -/obj/structure/disposalpipe/segment, -/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/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cnL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cnM" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cnO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10; - pixel_x = 0; - initialize_directions = 10 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cnR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnS" = ( -/obj/structure/table, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/grenade/chem_grenade, -/obj/item/weapon/grenade/chem_grenade, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cnT" = ( -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnU" = ( -/obj/structure/target_stake, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cnV" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cnW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnX" = ( -/obj/machinery/door/window{ - dir = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/weapon/poster/legit, -/obj/item/weapon/poster/legit, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/storage/box/cups, -/turf/open/floor/plating, -/area/maintenance/aft) -"coa" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cob" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coc" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cod" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cof" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cog" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"coj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cok" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Construction Area APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"col" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Telecoms Monitoring APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"com" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"con" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 8 - }, -/area/atmos) -"cop" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"coq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cor" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/atmos) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cou" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to External"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cov" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cow" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cox" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel, -/area/atmos) -"coy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Pure to Port"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/atmos) -"coD" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 4 - }, -/area/atmos) -"coE" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coF" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/atmos) -"coG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"coH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"coK" = ( -/obj/machinery/smartfridge/chemistry/virology, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coM" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"coN" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"coO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation A"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coP" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"coQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_virology{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"coR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall, -/area/toxins/xenobiology) -"coS" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coT" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"coU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coV" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"coW" = ( -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"coX" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coY" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"coZ" = ( -/obj/machinery/camera{ - c_tag = "Testing Firing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpa" = ( -/obj/structure/target_stake, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"cpb" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall, -/area/maintenance/aft) -"cpc" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpd" = ( -/obj/item/weapon/cigbutt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cpg" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cph" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cpk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "caution" - }, -/area/atmos) -"cpl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "caution"; - dir = 4 - }, -/area/atmos) -"cpo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/atmos) -"cpp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "External to Filter"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/atmos) -"cps" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/atmos) -"cpt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/atmos) -"cpu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cpw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpx" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "n2o"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "escape"; - dir = 6 - }, -/area/atmos) -"cpz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/atmos) -"cpA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cpB" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = -32 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpC" = ( -/obj/structure/table, -/obj/item/weapon/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cpD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpF" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet, -/obj/effect/landmark{ - name = "revenantspawn" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cpH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpI" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cpJ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cpK" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpM" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cpP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/toxins/misc_lab) -"cpQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cpR" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cpS" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/maintenance/aft) -"cpT" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/aft) -"cpU" = ( -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpW" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "Telecoms Server APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpY" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cpZ" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqa" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqb" = ( -/obj/machinery/computer/message_monitor, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cqc" = ( -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecoms)"; - pixel_x = 0; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cqe" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cqg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cqh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmos blast door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/atmos) -"cqj" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cqk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cql" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics West"; - dir = 8; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air to Port"; - on = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqn" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cqo" = ( -/obj/structure/door_assembly/door_assembly_mai, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cqp" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/box/syringes, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqr" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Virologist" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqs" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/weapon/pen/red, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"cqt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"cqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqv" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cqx" = ( -/obj/effect/landmark{ - name = "revenantspawn" - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqy" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cqA" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqB" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqC" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqD" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 0; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqE" = ( -/obj/structure/rack, -/obj/item/weapon/wrench, -/obj/item/weapon/crowbar, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Moniter"; - network = list("Test"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet, -/obj/item/pipe{ - dir = 4; - icon_state = "mixer"; - name = "gas mixer fitting"; - pipe_type = 14 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cqH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cqJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/weapon/paper/range, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHEAST)"; - icon_state = "warnplate"; - dir = 6 - }, -/area/toxins/misc_lab) -"cqK" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plating{ - tag = "icon-warnplate (SOUTHWEST)"; - icon_state = "warnplate"; - dir = 10 - }, -/area/toxins/misc_lab) -"cqL" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cqM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cqO" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/aft) -"cqP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/pill/mannitol, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqQ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqR" = ( -/turf/closed/wall, -/area/maintenance/strangeroom) -"cqS" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cqT" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqU" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqW" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqX" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cqY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cqZ" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cra" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crc" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "escape" - }, -/area/atmos) -"cre" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/atmos) -"crf" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/atmos) -"crg" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/atmos) -"crh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 9 - }, -/area/security/checkpoint/engineering) -"cri" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/closet, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 1 - }, -/area/security/checkpoint/engineering) -"crj" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 5 - }, -/area/security/checkpoint/engineering) -"crk" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crl" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"crm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"crn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/atmos) -"cro" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"crp" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics East"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/atmos) -"crq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "tox_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crr" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Plasma Tank" - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crs" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"crt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cru" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"crv" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - anchored = 1; - density = 0; - pixel_x = -30 - }, -/obj/item/weapon/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/weapon/reagent_containers/syringe/antiviral, -/obj/item/weapon/reagent_containers/dropper, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cry" = ( -/obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "whitegreen" - }, -/area/medical/virology) -"crz" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/medical/virology) -"crA" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"crB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crC" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"crD" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"crE" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crF" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crG" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"crH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"crJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crL" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Firing Range"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"crM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"crO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (EAST)"; - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"crP" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crQ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/color/lightpurple, -/obj/item/stack/spacecash/c200, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"crR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/structure/kitchenspike, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"crT" = ( -/obj/effect/decal/cleanable/shreds, -/obj/machinery/power/apc{ - dir = 1; - name = "Worn Out APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"crU" = ( -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crV" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/molten_item, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"crW" = ( -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crX" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crY" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"crZ" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csa" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"csb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csd" = ( -/obj/structure/table, -/obj/item/weapon/folder/blue, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csn" = ( -/obj/machinery/suit_storage_unit/atmos, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/atmos) -"cso" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall, -/area/atmos) -"csp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"csq" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "tox_in"; - name = "Toxin Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/atmos) -"csr" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "tox_sensor"; - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"css" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cst" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"csu" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "whitegreen" - }, -/area/medical/virology) -"csw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"csx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology South"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"csz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - unacidable = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"csB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"csD" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"csE" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csF" = ( -/obj/structure/rack, -/obj/item/weapon/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"csG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"csH" = ( -/obj/structure/rack, -/obj/item/weapon/storage/box/lights, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csK" = ( -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"csL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csM" = ( -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (SOUTHWEST)"; - icon_state = "tracks"; - dir = 10 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"csN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (EAST)"; - icon_state = "tracks"; - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"csP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks{ - tag = "icon-tracks (NORTHEAST)"; - icon_state = "tracks"; - dir = 5 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"csQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"csT" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csU" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csV" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/tcommsat/computer) -"csW" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csX" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"csY" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cta" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"ctc" = ( -/turf/closed/wall, -/area/engine/break_room) -"ctd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cte" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"ctg" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cth" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cti" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 8 - }, -/area/security/checkpoint/engineering) -"ctj" = ( -/obj/structure/chair/withwheels/office/dark, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"ctk" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 4 - }, -/area/security/checkpoint/engineering) -"ctl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/item/weapon/wrench, -/turf/open/floor/plasteel, -/area/atmos) -"cto" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"ctp" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "plasma"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"ctq" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"ctr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"cts" = ( -/turf/open/floor/engine{ - name = "plasma floor"; - initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" - }, -/area/atmos) -"ctt" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"ctu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctv" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"ctx" = ( -/obj/machinery/airalarm{ - frequency = 1439; - pixel_y = 23 - }, -/obj/item/weapon/wrench, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 9 - }, -/area/maintenance/asmaint) -"cty" = ( -/obj/machinery/atmospherics/components/binary/valve/open{ - tag = "icon-mvalve_map (EAST)"; - icon_state = "mvalve_map"; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/maintenance/asmaint) -"ctz" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint) -"ctA" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"ctC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctD" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"ctE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"ctF" = ( -/obj/item/device/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"ctG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"ctH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 1 - }, -/area/toxins/misc_lab) -"ctI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warningcorner (WEST)"; - icon_state = "warningcorner"; - dir = 8 - }, -/area/toxins/misc_lab) -"ctJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctK" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"ctM" = ( -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"ctN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/r_leg, -/obj/item/bodypart/r_arm, -/obj/item/weapon/shard, -/obj/item/weapon/hatchet, -/obj/item/weapon/staplegun, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctO" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/bodypart/l_leg, -/obj/item/bodypart/l_arm, -/obj/item/weapon/restraints/handcuffs, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"ctQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-gcircuitoff"; - icon_state = "gcircuitoff" - }, -/area/maintenance/strangeroom) -"ctR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"ctS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"ctU" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctV" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/bluegrid{ - dir = 8; - icon_state = "vault"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"ctZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cua" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cub" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cuc" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Server Room"; - req_access_txt = "61" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 5 - }, -/area/tcommsat/computer) -"cud" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/tcommsat/computer) -"cue" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cuf" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Telecoms Monitoring"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cug" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cui" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cuj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuk" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cul" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cum" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"cun" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cuo" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cup" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cuq" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/security/checkpoint/engineering) -"cur" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/security/checkpoint/engineering) -"cus" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/structure/reagent_dispensers/peppertank{ - anchored = 1; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/security/checkpoint/engineering) -"cut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cuu" = ( -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuv" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/atmos) -"cux" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cuy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuA" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuF" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 10 - }, -/area/maintenance/asmaint) -"cuG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cuH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 6 - }, -/area/maintenance/asmaint) -"cuI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cuK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cuM" = ( -/obj/machinery/sparker{ - id = "testigniter"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuN" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuS" = ( -/obj/machinery/door/airlock/glass_research{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/toxins/misc_lab) -"cuT" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/toxins/misc_lab) -"cuU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Testing Lab APC"; - pixel_x = 26; - pixel_y = 0 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cuV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cuW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cuX" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuY" = ( -/obj/structure/table, -/obj/item/weapon/folder/white, -/obj/item/weapon/folder/white, -/obj/item/weapon/pen, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cuZ" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel{ - tag = "icon-damaged5"; - icon_state = "damaged5" - }, -/area/maintenance/strangeroom) -"cva" = ( -/obj/machinery/camera{ - c_tag = "Telecoms Server Room"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cvb" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvc" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cvd" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/tcommsat/computer) -"cve" = ( -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvf" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecoms Admin"; - departmentType = 5; - name = "Telecoms RC"; - pixel_x = 30; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvh" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 2; - icon_state = "pipe-j2s"; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "cautioncorner" - }, -/area/hallway/primary/aft) -"cvi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cvk" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cvn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cvp" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/plasteel, -/area/atmos) -"cvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/atmos) -"cvr" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/atmos) -"cvs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvt" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/weapon/cigbutt, -/turf/open/floor/plasteel, -/area/atmos) -"cvu" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cvv" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump"; - on = 0 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/atmos) -"cvw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvx" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics CO2 Tank" - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvy" = ( -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cvz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvD" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cvG" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2-1"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvH" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = 0; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/toxins/xenobiology) -"cvI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/xenobiology) -"cvJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/engine, -/area/toxins/xenobiology) -"cvK" = ( -/obj/machinery/camera{ - c_tag = "Testing Chamber"; - dir = 1; - network = list("Test","RD"); - pixel_x = 0 - }, -/obj/machinery/light, -/turf/open/floor/engine, -/area/toxins/misc_lab) -"cvL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 4 - }, -/area/toxins/misc_lab) -"cvM" = ( -/obj/machinery/camera{ - c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvN" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvO" = ( -/obj/structure/closet/crate, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cvP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cvQ" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cvS" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cvT" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/turf/open/floor/plasteel{ - tag = "icon-damaged2"; - icon_state = "damaged2" - }, -/area/maintenance/strangeroom) -"cvV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - tag = "icon-damaged1"; - icon_state = "damaged1" - }, -/area/maintenance/strangeroom) -"cvW" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28; - shattered = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cvX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cvY" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/chem_pile, -/turf/open/floor/plating, -/area/maintenance/strangeroom) -"cvZ" = ( -/obj/machinery/message_server, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwa" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwb" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cwc" = ( -/obj/structure/table, -/obj/item/device/multitool, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cwd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwe" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cwf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cwg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/hallway/primary/aft) -"cwl" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cwm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"cwn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwt" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cwu" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cwv" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cww" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cwy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cwz" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensors = list("co2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/atmos) -"cwA" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "co2_sensor"; - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwB" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cwD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwE" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 0; - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwF" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cwN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwP" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/toxins/xenobiology) -"cwQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cwR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwS" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "floorgrime" - }, -/area/toxins/misc_lab) -"cwT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cwU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cwW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cwX" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/spirit_board, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/strangeroom) -"cxd" = ( -/obj/structure/closet/crate/secure, -/obj/item/weapon/restraints/handcuffs, -/obj/item/weapon/pen, -/obj/item/weapon/paper{ - info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; - name = "Strange Paper" - }, -/turf/open/floor/plasteel{ - tag = "icon-damaged4"; - icon_state = "damaged4" - }, -/area/maintenance/strangeroom) -"cxe" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/strangeroom) -"cxf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gibber, -/turf/open/floor/plasteel, -/area/maintenance/strangeroom) -"cxg" = ( -/obj/machinery/vending/cart{ - desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; - icon_state = "cart-broken"; - name = "Old Machine"; - product_slogans = "Bzzzt..-6-4-!"; - products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb{ - tag = "icon-cobweb2"; - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel{ - tag = "icon-platingdmg1"; - icon_state = "platingdmg1" - }, -/area/maintenance/strangeroom) -"cxh" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxi" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxj" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxk" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cxl" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/tcommsat/computer) -"cxm" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxt" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cxw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxx" = ( -/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 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxC" = ( -/obj/machinery/vending/cigarette{ - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cxD" = ( -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/atmos) -"cxF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cxG" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - pixel_x = 0; - pixel_y = 0; - target_pressure = 4500 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1; - filter_type = "co2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cxJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/atmos) -"cxK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "co2_in"; - pixel_y = 1 - }, -/turf/open/floor/engine{ - name = "co2 floor"; - initial_gas_mix = "o2=0;n2=0;co2=50000" - }, -/area/atmos) -"cxL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxP" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cxW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cxY" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cxZ" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cya" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyc" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyd" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cye" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyj" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid{ - name = "Mainframe Base"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyk" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cyl" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/bluegrid{ - icon_state = "dark"; - name = "Mainframe Floor"; - initial_gas_mix = "o2=0;n2=100;TEMP=80" - }, -/area/tcommsat/server) -"cym" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cyn" = ( -/obj/structure/table, -/obj/item/device/radio/off, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/tcommsat/computer) -"cyo" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyp" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyq" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cyr" = ( -/obj/structure/sign/securearea{ - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/hallway/primary/aft) -"cys" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyt" = ( -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyv" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/hallway/primary/aft) -"cyx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/break_room) -"cyy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyB" = ( -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cyF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cyG" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"cyI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cyJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/atmos) -"cyK" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Incinerator APC"; - pixel_x = 0; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cyL" = ( -/obj/structure/sign/fire{ - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/maintenance/asmaint) -"cyN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyO" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyP" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint) -"cyS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cyU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cyX" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "bot" - }, -/area/toxins/misc_lab) -"cyY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/toxins/misc_lab) -"cyZ" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cza" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czb" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czc" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czd" = ( -/obj/item/clothing/under/rank/vice, -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/aft) -"cze" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"czi" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czj" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"czk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/chiefs_office) -"czl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow"; - dir = 10 - }, -/area/engine/break_room) -"czm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/break_room) -"czn" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "yellow" - }, -/area/engine/break_room) -"czo" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 2; - filter_type = "n2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"czp" = ( -/turf/closed/wall, -/area/maintenance/incinerator) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/incinerator) -"czr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"czs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/toy/minimeteor, -/obj/item/weapon/poster/contraband, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czt" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/reagent_containers/food/snacks/donkpocket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/weapon/c_tube, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czw" = ( -/obj/structure/mopbucket, -/obj/item/weapon/caution, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"czx" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Air Supply Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/toxins/misc_lab) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/toxins/misc_lab) -"czB" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting equipment"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"czD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/maintenance/portsolar) -"czE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"czF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"czG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/aft) -"czH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czI" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czN" = ( -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warnwhite" - }, -/area/engine/chiefs_office) -"czO" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czQ" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czS" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 4; - name = "CE Office APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"czT" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/engineering) -"czV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/engineering) -"czW" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/atmos) -"czX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/atmos) -"czY" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/atmos) -"czZ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAa" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4; - filter_type = "o2"; - on = 1 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4; - initialize_directions = 12 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAc" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/atmos) -"cAd" = ( -/obj/machinery/chem_master, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAe" = ( -/obj/structure/chair/withwheels/wheelchair, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/kitchenspike_frame, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAh" = ( -/obj/structure/table/wood, -/obj/item/weapon/staplegun, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAi" = ( -/obj/structure/table/wood, -/obj/item/weapon/retractor/alien, -/obj/item/weapon/reagent_containers/glass/bowl, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cAj" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint) -"cAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cAq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cAy" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAz" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cAD" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cAE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAF" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAG" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cAH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/portsolar) -"cAI" = ( -/obj/machinery/camera{ - c_tag = "Aft Port Solar Access"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAP" = ( -/obj/machinery/computer/atmos_alert, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/weapon/stamp/ce, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cAT" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cAU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAW" = ( -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cAX" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 10 - }, -/area/atmos) -"cAY" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensors = list("n2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "red" - }, -/area/atmos) -"cAZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "red"; - dir = 6 - }, -/area/atmos) -"cBa" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/atmos) -"cBb" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 10 - }, -/area/atmos) -"cBc" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1441; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensors = list("o2_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - dir = 0; - icon_state = "blue" - }, -/area/atmos) -"cBd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "blue"; - dir = 6 - }, -/area/atmos) -"cBe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 10 - }, -/area/atmos) -"cBf" = ( -/obj/machinery/computer/atmos_control/tank{ - frequency = 1443; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/turf/open/floor/plasteel{ - icon_state = "arrival" - }, -/area/atmos) -"cBg" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air Outlet Pump"; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "arrival"; - dir = 6 - }, -/area/atmos) -"cBh" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/atmos) -"cBi" = ( -/turf/open/floor/plating, -/area/atmos) -"cBj" = ( -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBk" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken6"; - icon_state = "wood-broken6" - }, -/area/maintenance/incinerator) -"cBl" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBm" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken5"; - icon_state = "wood-broken5" - }, -/area/maintenance/incinerator) -"cBn" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/item/weapon/reagent_containers/glass/beaker, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/weapon/lighter/greyscale, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/asmaint) -"cBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBq" = ( -/obj/structure/chair, -/obj/item/weapon/storage/fancy/cigarettes, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBr" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cBv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBB" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBE" = ( -/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{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cBG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/port) -"cBH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBI" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBK" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cBL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cBR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBV" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - icon_state = "pipe-j2s"; - sortType = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBZ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCa" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCb" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCd" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCe" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCf" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cCg" = ( -/turf/closed/wall, -/area/engine/engineering) -"cCh" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCi" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCj" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 0; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCk" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCl" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/paper/monitorkey, -/obj/item/weapon/coin/plasma, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCn" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cCo" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCq" = ( -/obj/effect/landmark{ - name = "lightsout" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCt" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCu" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/atmos) -"cCw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/atmos) -"cCx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCy" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cCC" = ( -/obj/structure/table, -/obj/item/weapon/cartridge/medical, -/obj/item/pizzabox/mushroom, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cCF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCH" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cCJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCN" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/switchblade{ - force = 12 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cCQ" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cCR" = ( -/obj/machinery/power/solar_control{ - id = "portsolar"; - name = "Aft Port Solar Control"; - track = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCS" = ( -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Aft Port Solar APC"; - pixel_x = 23; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/portsolar) -"cCU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCY" = ( -/obj/effect/landmark{ - name = "blobstart" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cCZ" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cDa" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cDb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDd" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDi" = ( -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22 - }, -/obj/machinery/computer/card/minor/ce, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDj" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/item/weapon/storage/fancy/cigarettes, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDl" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/structure/filingcabinet/chestdrawer, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engineering) -"cDp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space, -/area/space) -"cDq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space, -/area/space) -"cDr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space, -/area/space) -"cDs" = ( -/obj/structure/sign/science, -/turf/closed/wall, -/area/maintenance/incinerator) -"cDt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDv" = ( -/obj/structure/table/wood, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/random, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDw" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/tie/black, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDx" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDz" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cDA" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/shard, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDB" = ( -/obj/structure/disposalpipe/segment, -/obj/item/weapon/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cDC" = ( -/obj/structure/closet, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDD" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDE" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cDG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cDH" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDI" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cDJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cDM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cDR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDU" = ( -/obj/item/weapon/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/weapon/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/item/weapon/cartridge/atmos, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cDV" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/atmos) -"cDY" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_in_meter"; - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cDZ" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - frequency = 1443; - id_tag = "mair_out_meter"; - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/atmos) -"cEa" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEb" = ( -/obj/item/clothing/head/cone, -/obj/item/weapon/restraints/handcuffs/cable/orange, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Biohazard Disposals"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cEf" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cEg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEh" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEk" = ( -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEl" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEn" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cEo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEA" = ( -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/weapon/circuitboard/computer/solar_control, -/obj/item/weapon/electronics/tracker, -/obj/item/weapon/paper/solar, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cEB" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cED" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEE" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEF" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "neutralfull" - }, -/area/engine/chiefs_office) -"cEG" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/chiefs_office) -"cEH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/chiefs_office) -"cEI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEK" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "yellow" - }, -/area/engine/engineering) -"cEL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEM" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cEO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEP" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cEQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - frequency = 1441; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cER" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1443; - id = "air_in" - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cES" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor"; - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ - dir = 1; - external_pressure_bound = 0; - frequency = 1443; - icon_state = "vent_map"; - id_tag = "air_out"; - internal_pressure_bound = 2000; - on = 1; - pressure_checks = 2; - pump_direction = 0 - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cEU" = ( -/obj/machinery/iv_drip, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEV" = ( -/turf/open/floor/wood{ - tag = "icon-wood-broken7"; - icon_state = "wood-broken7" - }, -/area/maintenance/incinerator) -"cEW" = ( -/obj/item/clothing/suit/toggle/labcoat/mad, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEX" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cEY" = ( -/obj/structure/table/wood, -/obj/item/organ/internal/butt/xeno, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cEZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - tag = "icon-manifold (NORTH)"; - icon_state = "manifold"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cFe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFf" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFl" = ( -/obj/structure/rack{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cFr" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFs" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cFt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFu" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cFv" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cFw" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cFx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cFy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall, -/area/engine/engineering) -"cFz" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cFC" = ( -/obj/structure/table, -/obj/item/weapon/crowbar/large, -/obj/item/weapon/storage/box/lights/mixed, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFD" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/item/weapon/wrench, -/obj/item/weapon/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFE" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFF" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cFJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cFK" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics N2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFL" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFM" = ( -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cFN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics O2 Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFO" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFP" = ( -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cFQ" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Air-mix Tank"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFS" = ( -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cFT" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFU" = ( -/obj/item/weapon/kitchen/knife, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFV" = ( -/obj/structure/table/wood, -/obj/item/weapon/scalpel, -/obj/item/weapon/wirecutters, -/obj/item/organ/brain/alien, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cFW" = ( -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFX" = ( -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFY" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGb" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGd" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGe" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGh" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGi" = ( -/obj/effect/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - tag = "icon-platingdmg3"; - icon_state = "platingdmg3" - }, -/area/maintenance/asmaint2) -"cGj" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGl" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/asmaint2) -"cGn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGo" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGp" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cGq" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cGr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "bot" - }, -/area/engine/engineering) -"cGs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cGt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGu" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGE" = ( -/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/open/floor/plasteel, -/area/engine/engineering) -"cGF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGG" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cGH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cGI" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "n2 floor"; - initial_gas_mix = "o2=0;n2=100000" - }, -/area/atmos) -"cGJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "o2 floor"; - initial_gas_mix = "o2=100000;n2=0" - }, -/area/atmos) -"cGK" = ( -/obj/machinery/light/small, -/turf/open/floor/engine{ - name = "air floor"; - initial_gas_mix = "o2=2644;n2=10580" - }, -/area/atmos) -"cGL" = ( -/obj/structure/table/wood, -/obj/item/weapon/hatchet, -/obj/item/weapon/lighter, -/turf/open/floor/wood, -/area/maintenance/incinerator) -"cGM" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGN" = ( -/obj/structure/table/wood, -/obj/item/weapon/pen, -/obj/item/weapon/crowbar, -/turf/open/floor/plating, -/area/maintenance/incinerator) -"cGO" = ( -/obj/item/weapon/bedsheet/cult, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGP" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGT" = ( -/obj/machinery/light/small, -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/weapon/clipboard, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGU" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cGV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cGW" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cGX" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGY" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating{ - tag = "icon-panelscorched"; - icon_state = "panelscorched" - }, -/area/maintenance/asmaint2) -"cGZ" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHa" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"cHd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHe" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 4 - }, -/area/engine/engine_smes) -"cHf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/engine_smes) -"cHg" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 1 - }, -/area/engine/engine_smes) -"cHh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "SMES Room"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHi" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery" - }, -/area/engine/engineering) -"cHk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Middle"; - dir = 4; - network = list("SS13") - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cHl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHp" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellow" - }, -/area/engine/engineering) -"cHr" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Waste Out"; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - state = 2 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHt" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cHu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/maintenance/asmaint2) -"cHv" = ( -/obj/structure/table, -/obj/item/weapon/weldingtool, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cHx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cHz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/maintenance/starboardsolar) -"cHA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHB" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHC" = ( -/obj/machinery/door/window{ - name = "SMES Chamber"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHD" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHE" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/engine_smes) -"cHF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cHG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "SMES Access"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cHI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/engine/engineering) -"cHJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cHY" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/weapon/airlock_painter, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cHZ" = ( -/obj/machinery/camera{ - c_tag = "Engineering East"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cIa" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/asmaint) -"cIb" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIc" = ( -/turf/open/floor/plating, -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - tag = "icon-platingdmg2"; - icon_state = "platingdmg2" - }, -/area/maintenance/asmaint2) -"cId" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIe" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/donkpockets, -/turf/open/floor/plating, -/area/space) -"cIf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Starboard Solar APC"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIh" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIn" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cIq" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cIr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engineering) -"cIs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIx" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "loadingarea" - }, -/area/hallway/secondary/entry) -"cIz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 1 - }, -/area/hallway/primary/fore) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall, -/area/maintenance/fsmaint) -"cIC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "redcorner"; - dir = 4 - }, -/area/hallway/primary/fore) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/fsmaint) -"cIF" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/structure/window{ - tag = "icon-window (NORTH)"; - icon_state = "window"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIG" = ( -/obj/structure/window{ - tag = "icon-window (WEST)"; - icon_state = "window"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cII" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cIL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/engineering) -"cIM" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cIN" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f6"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIO" = ( -/turf/closed/wall/shuttle{ - icon_state = "swall12"; - dir = 2 - }, -/area/shuttle/pod_4) -"cIP" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - dir = 2; - icon_state = "swall_f10"; - layer = 2 - }, -/area/shuttle/pod_4) -"cIQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/space, -/area/space) -"cIR" = ( -/obj/structure/table_frame, -/obj/item/weapon/wirerod, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 5 - }, -/area/maintenance/asmaint2) -"cIS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space) -"cIT" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Control"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIU" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIV" = ( -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cIW" = ( -/obj/machinery/biogenerator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cIZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Research Shuttle"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/toxins/shuttledock) -"cJa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cJb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/toxins/shuttledock) -"cJc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/maintenance/asmaint2) -"cJe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cJg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJj" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/nuke_storage) -"cJk" = ( -/obj/structure/window, -/turf/open/floor/plating, -/area/toxins/mixing) -"cJl" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "0"; - req_one_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "white" - }, -/area/medical/virology) -"cJm" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - tag = "icon-pipe-j2 (NORTH)"; - icon_state = "pipe-j2"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/engine/engineering) -"cJt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"cJu" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel{ - icon_state = "yellow" - }, -/area/engine/engineering) -"cJv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJz" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/engineering) -"cJA" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cJB" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/weapon/storage/pod{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - density = 0; - layer = 3; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -30; - possible_destinations = "asteroid_pod4"; - shuttleId = "pod4" - }, -/turf/open/floor/plasteel/shuttle, -/area/shuttle/pod_4) -"cJE" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"cJF" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "asteroid_pod4" - }, -/turf/open/space, -/area/space) -"cJG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"cJI" = ( -/obj/machinery/power/solar_control{ - id = "starboardsolar"; - name = "Aft Starboard Solar Control"; - track = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJK" = ( -/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 = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cJL" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/engine/engineering) -"cJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJN" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJO" = ( -/obj/structure/table, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cJR" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering West"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJS" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJT" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJV" = ( -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cJW" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cJX" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/engineering) -"cJY" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plating, -/area/engine/engineering) -"cJZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engine/engineering) -"cKa" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKd" = ( -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cKe" = ( -/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_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKf" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKg" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/engineering) -"cKh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKj" = ( -/obj/structure/sign/pods{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engineering) -"cKk" = ( -/obj/machinery/camera{ - c_tag = "Engineering Escape Pod"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cKl" = ( -/turf/open/floor/plating, -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/shuttle{ - icon_state = "swall_f5"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKm" = ( -/turf/open/space, -/turf/closed/wall/shuttle{ - icon_state = "swall_f9"; - dir = 2 - }, -/area/shuttle/pod_4) -"cKn" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cKo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKq" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKs" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/obj/machinery/camera{ - c_tag = "Engineering Materials"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKt" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKu" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cKw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 101.325; - on = 1; - pressure_checks = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKy" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKz" = ( -/obj/machinery/requests_console{ - announcementConsole = 0; - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/engine/engineering) -"cKD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "yellow" - }, -/area/engine/engineering) -"cKE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKG" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboardsolar) -"cKI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKJ" = ( -/obj/machinery/computer/station_alert, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKM" = ( -/obj/structure/table, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/apc, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel{ - dir = 5; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cKP" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_particle_accelerator{ - pixel_y = 6 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKQ" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKS" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "32" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering) -"cKU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cKW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cKY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cKZ" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLa" = ( -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLb" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Port Engineering APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering North" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLc" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLe" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLf" = ( -/obj/machinery/camera{ - c_tag = "Engineering MiniSat Access"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLh" = ( -/obj/structure/transit_tube{ - tag = "icon-Block"; - icon_state = "Block" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLi" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access = null; - req_access_txt = "13" - }, -/obj/structure/sign/securearea{ - name = "EXTERNAL AIRLOCK"; - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/asmaint2) -"cLj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cLk" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/item/weapon/kitchen/fork, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/item/weapon/lighter{ - lit = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Entrance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLo" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cLp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLq" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -2 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLr" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = -6 - }, -/obj/item/stack/sheet/plasteel{ - amount = 50; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLs" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 18 - }, -/obj/item/weapon/storage/backpack/industrial, -/obj/item/stack/rods{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLt" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/weapon/electronics/airlock, -/obj/item/weapon/electronics/airlock, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLw" = ( -/obj/structure/table, -/obj/item/weapon/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLz" = ( -/obj/structure/table, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/weapon/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLF" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cLH" = ( -/obj/structure/transit_tube/station{ - dir = 8; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/obj/structure/transit_tube_pod, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cLI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cLJ" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cLL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLM" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cLN" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cLO" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLP" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cLQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cLR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Supermatter Control Room"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cLS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/supermatter) -"cLU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLV" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLX" = ( -/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; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cLZ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMa" = ( -/obj/structure/table, -/obj/item/weapon/pocketknife, -/obj/item/weapon/reagent_containers/food/snacks/beans{ - bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); - desc = "Smells kind of funny." - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMb" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMd" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/engineering) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMg" = ( -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMh" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMn" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/obj/item/weapon/reagent_containers/pill/charcoal, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering) -"cMp" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMq" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/engineering) -"cMr" = ( -/obj/structure/chair/withwheels/office/light, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cMs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cMu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMv" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/engine/supermatter) -"cMw" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cMx" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMz" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/engine/supermatter) -"cMA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/engine/supermatter) -"cMB" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cMC" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/engine/engineering) -"cMD" = ( -/obj/structure/transit_tube{ - tag = "icon-N-SE"; - icon_state = "N-SE" - }, -/turf/open/space, -/area/space) -"cME" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/turf/open/space, -/area/space) -"cMF" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMG" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/weapon/paper/gravity_gen{ - layer = 3 - }, -/obj/item/weapon/pen/blue, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - dir = 2; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMJ" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cMK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMM" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cMP" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cMQ" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cMR" = ( -/obj/structure/transit_tube{ - tag = "icon-E-NW"; - icon_state = "E-NW" - }, -/turf/open/space, -/area/space) -"cMS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMT" = ( -/obj/structure/transit_tube, -/turf/open/space, -/area/space) -"cMU" = ( -/obj/structure/transit_tube{ - tag = "icon-E-W-Pass"; - icon_state = "E-W-Pass" - }, -/turf/open/space, -/area/space) -"cMV" = ( -/obj/structure/transit_tube{ - icon_state = "W-SE" - }, -/turf/open/space, -/area/space) -"cMW" = ( -/obj/structure/transit_tube{ - icon_state = "D-SW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cMX" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cMY" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cMZ" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNa" = ( -/obj/structure/grille, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass_engineering{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNc" = ( -/obj/structure/grille, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNd" = ( -/obj/structure/table, -/obj/item/weapon/book/manual/engineering_singularity_safety, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNe" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNf" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNg" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cNh" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/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 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNk" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNl" = ( -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cNo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNp" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNs" = ( -/turf/open/floor/plating/airless{ - dir = 9; - icon_state = "warnplate" - }, -/area/space) -"cNt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cNu" = ( -/turf/open/floor/plating/airless{ - dir = 5; - icon_state = "warnplate" - }, -/area/space) -"cNv" = ( -/obj/item/weapon/crowbar, -/turf/open/space, -/area/space) -"cNw" = ( -/obj/structure/transit_tube{ - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNx" = ( -/turf/closed/wall/r_wall, -/area/aisat) -"cNy" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cNz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cNA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "warningcorner"; - dir = 2 - }, -/area/engine/engine_smes) -"cNC" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cND" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cNE" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/turf/open/space, -/area/space) -"cNF" = ( -/obj/machinery/computer/teleporter, -/turf/open/floor/plating, -/area/aisat) -"cNG" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/aisat) -"cNH" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/aisat) -"cNI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 8; - network = list("SS13"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNJ" = ( -/obj/item/weapon/weldingtool, -/turf/open/space, -/area/space) -"cNK" = ( -/turf/open/floor/plating/airless{ - dir = 10; - icon_state = "warnplate" - }, -/area/space) -"cNM" = ( -/turf/open/floor/plating/airless{ - dir = 6; - icon_state = "warnplate" - }, -/area/space) -"cNN" = ( -/obj/structure/transit_tube{ - tag = "icon-D-NE"; - icon_state = "D-NE" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNO" = ( -/obj/structure/transit_tube{ - icon_state = "NW-SE" - }, -/turf/open/space, -/area/space) -"cNP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNQ" = ( -/obj/machinery/bluespace_beacon, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/aisat) -"cNS" = ( -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNT" = ( -/obj/structure/transit_tube{ - tag = "icon-S-NW"; - icon_state = "S-NW" - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cNU" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNV" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNW" = ( -/obj/machinery/button/door{ - id = "teledoor"; - name = "AI Satellite Teleport Shutters Control"; - pixel_x = 25; - pixel_y = 0; - req_access_txt = "17;65" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 2; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cNX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cNZ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 6 - }, -/area/engine/gravity_generator) -"cOc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cOd" = ( -/turf/closed/wall, -/area/aisat) -"cOe" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/aisat) -"cOg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Teleporter Room"; - req_access_txt = "17;65" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "AI Satellite Teleport Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOi" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cOk" = ( -/obj/structure/transit_tube{ - icon_state = "N-S" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cOl" = ( -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOm" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOp" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - on = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOr" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOs" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cOt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOv" = ( -/obj/structure/transit_tube/station{ - dir = 4; - icon_state = "closed"; - reverse_launch = 1; - tag = "icon-closed (EAST)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOy" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access = null; - req_access_txt = "65;13" - }, -/turf/open/floor/plating, -/area/aisat) -"cOz" = ( -/turf/open/floor/plating, -/area/aisat) -"cOA" = ( -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cOB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cOC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cOD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cOE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cOF" = ( -/obj/structure/transit_tube{ - dir = 1; - icon_state = "Block"; - tag = "icon-Block (NORTH)" - }, -/turf/open/floor/plating, -/area/aisat) -"cOG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/aisat) -"cOH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOI" = ( -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOK" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_Toxins = 0 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cOM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cON" = ( -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"cOO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cOP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "MiniSat Entrance"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat External Power APC"; - pixel_x = -27; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/aisat) -"cOQ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/aisat) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/aisat) -"cOV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/aisat) -"cOW" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOY" = ( -/obj/machinery/turretid{ - control_area = "AI Satellite Antechamber"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 0; - pixel_y = -24; - req_access = list(65) - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/aisat) -"cOZ" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless{ - icon_state = "solarpanel" - }, -/area/solar/starboard) -"cPa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/aisat) -"cPc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/aisat) -"cPd" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/aisat) -"cPe" = ( -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/turret_protected/aisat_interior) -"cPi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/closed/wall, -/area/aisat) -"cPj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cPm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPo" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPv" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPw" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cPx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"cPy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/aisat) -"cPz" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_sw"; - name = "southwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cPA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cPB" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPC" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPG" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPI" = ( -/obj/machinery/hologram/holopad, -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (WEST)"; - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPL" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPN" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/aisat) -"cPO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "MiniSat Walkway Access"; - req_access_txt = "13;65" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/aisat) -"cPP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cPQ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPR" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners (WEST)"; - icon_state = "darkbluecorners"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPS" = ( -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cPT" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkbluecorners"; - icon_state = "darkbluecorners" - }, -/area/turret_protected/aisat_interior) -"cPU" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - cell_type = 2500; - dir = 4; - name = "MiniSat Antechamber APC"; - pixel_x = 29; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cPV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space, -/area/space) -"cPW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cPX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cPY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cPZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/simple_animal/bot/floorbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQb" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/aisat_interior) -"cQc" = ( -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQd" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Antechamber"; - dir = 1; - network = list("MiniSat") - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel{ - tag = "icon-darkblue"; - icon_state = "darkblue" - }, -/area/turret_protected/aisat_interior) -"cQe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/bot/cleanbot{ - on = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/aisat_interior) -"cQf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior North East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cQh" = ( -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQj" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQk" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - icon_state = "door_locked"; - locked = 1; - name = "AI Chamber"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQm" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQp" = ( -/obj/structure/chair/withwheels/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQq" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber North"; - dir = 2; - network = list("MiniSat","RD"); - pixel_x = 0; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQr" = ( -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQs" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/turret_protected/ai) -"cQt" = ( -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQw" = ( -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQy" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 4 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQz" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 0; - pixel_y = -21 - }, -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/obj/machinery/light, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQA" = ( -/obj/machinery/porta_turret{ - ai = 1; - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQC" = ( -/turf/closed/wall, -/area/turret_protected/ai) -"cQD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQE" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQF" = ( -/obj/machinery/ai_slipper{ - icon_state = "motion0"; - uses = 10 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 27 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQH" = ( -/obj/effect/landmark{ - name = "tripai" - }, -/obj/item/device/radio/intercom{ - anyai = 1; - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - freerange = 1; - listening = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - anyai = 1; - broadcasting = 0; - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 0; - pixel_y = -25 - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQI" = ( -/obj/machinery/power/apc{ - cell_type = 5000; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQJ" = ( -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber South"; - dir = 2; - network = list("RD","MiniSat") - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/bluegrid, -/area/turret_protected/ai) -"cQM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQN" = ( -/obj/machinery/airalarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQO" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South West"; - dir = 8; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cQR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQS" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/turret_protected/ai) -"cQT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior South East"; - dir = 4; - network = list("MiniSat"); - pixel_x = 0; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/aisat) -"cQV" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cQW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/turret_protected/ai) -"cQY" = ( -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cQZ" = ( -/obj/structure/rack, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/secure) -"cRc" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRd" = ( -/obj/structure/rack, -/obj/item/weapon/crowbar/red, -/obj/item/weapon/wrench, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space) -"cRf" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space) -"cRg" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRh" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "MiniSat Maint APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRi" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Air Out"; - on = 1 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHEAST)"; - icon_state = "warndark"; - dir = 5 - }, -/area/ai_monitored/storage/secure) -"cRj" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ai_monitored/storage/secure) -"cRk" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTHWEST)"; - icon_state = "warndark"; - dir = 9 - }, -/area/ai_monitored/storage/secure) -"cRl" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (NORTH)"; - icon_state = "warndark"; - dir = 1 - }, -/area/ai_monitored/storage/secure) -"cRm" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cRn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/aisat) -"cRo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/aisat) -"cRq" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRr" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4; - initialize_directions = 11 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRw" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "65" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/aisat) -"cRy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cRz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23; - pixel_y = 0 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRB" = ( -/obj/structure/chair, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/ai_monitored/storage/secure) -"cRF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"cRG" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 22; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space) -"cRH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRI" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRJ" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRK" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma{ - layer = 2.9 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/ai_monitored/storage/secure) -"cRM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/storage/secure) -"cRN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cRP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRS" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cRU" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "SMES room APC"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 10; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRV" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes) -"cRW" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 6; - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRX" = ( -/obj/structure/chair/withwheels/office/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "warning" - }, -/area/engine/engine_smes) -"cRY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cRZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (WEST)"; - icon_state = "warndark"; - dir = 8 - }, -/area/engine/supermatter) -"cSa" = ( -/obj/structure/chair/withwheels/office/light, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSb" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Supermatter Control Room"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters" - }, -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (EAST)"; - icon_state = "warndark"; - dir = 4 - }, -/area/engine/supermatter) -"cSc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel{ - icon_state = "dark" - }, -/area/engine/supermatter) -"cSd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSe" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSf" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSg" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSh" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSi" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/camera{ - c_tag = "Port Engineering North-East"; - dir = 5; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSn" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/multitool, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSo" = ( -/obj/machinery/vending/tool, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSp" = ( -/obj/machinery/vending/engivend, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSr" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSs" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSu" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSw" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "delivery"; - name = "floor" - }, -/area/engine/engine_smes) -"cSB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"cSC" = ( -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cSD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cSE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access_txt = "32" - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/supermatter) -"cSF" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHWEST)"; - icon_state = "warndark"; - dir = 10 - }, -/area/engine/supermatter) -"cSG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSH" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "smblast"; - name = "Control Room Shutters" - }, -/turf/open/floor/plasteel{ - tag = "icon-warndark (SOUTHEAST)"; - icon_state = "warndark"; - dir = 6 - }, -/area/engine/supermatter) -"cSJ" = ( -/obj/machinery/computer/monitor{ - name = "primary power monitoring console" - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - tag = "icon-warndark"; - icon_state = "warndark"; - dir = 2 - }, -/area/engine/supermatter) -"cSK" = ( -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSL" = ( -/obj/item/device/radio/off, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSM" = ( -/obj/machinery/power/emitter{ - anchored = 1; - state = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSN" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSO" = ( -/obj/structure/grille, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSP" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSQ" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cSS" = ( -/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 = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cST" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cSY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cSZ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTa" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - tag = "icon-manifold-r-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTe" = ( -/obj/structure/closet/radiation, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel{ - dir = 9; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (EAST)"; - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cTg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "warning" - }, -/area/engine/gravity_generator) -"cTh" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Power Storage"; - req_access_txt = "32"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cTi" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTm" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 8; - on = 1; - scrub_N2O = 0; - scrub_Toxins = 0 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTn" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTo" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smblast" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cTp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTq" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTr" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/tank/nitrogen{ - volume = 1e+007 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - tag = "icon-manifold-b-f (NORTH)"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTB" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/port_engineering) -"cTD" = ( -/obj/structure/table, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/obj/item/weapon/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "vault"; - dir = 8 - }, -/area/engine/heat_exchange) -"cTF" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTG" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTI" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTJ" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTK" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTL" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - layer = 3 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Center" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTM" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTO" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10; - initialize_directions = 10 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTQ" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Supermatter APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1; - d2 = 2 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTS" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cTX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cTY" = ( -/obj/machinery/power/rad_collector{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/port_engineering) -"cTZ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUa" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cUe" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1; - on = 1; - scrub_N2O = 1; - scrub_Toxins = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUh" = ( -/obj/machinery/atmospherics/components/binary/volume_pump, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUj" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/power/emitter, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUs" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/item/weapon/wrench, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUx" = ( -/turf/closed/wall, -/area/engine/port_engineering) -"cUA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8"; - tag = "" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUF" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUG" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cUH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space) -"cUI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space) -"cUJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cUK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cUL" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUN" = ( -/obj/machinery/power/apc{ - cell_type = 15000; - dir = 1; - name = "Filtering Room APC"; - pixel_x = 0; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUO" = ( -/obj/machinery/camera{ - c_tag = "Filtering Room" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cUQ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/camera{ - c_tag = "Supermatter West"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - id = "heatexchange"; - name = "Filtering Room Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUW" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "superinput"; - name = "Emitter Shutters"; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cUZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVb" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVc" = ( -/obj/machinery/field/generator{ - anchored = 1; - state = 2 - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cVf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVg" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVh" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVj" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space, -/area/space) -"cVl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVn" = ( -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVp" = ( -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVu" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVv" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVw" = ( -/obj/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "superinput" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVx" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cVz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - locked = 1; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/door{ - id = "smcollector"; - name = "Collector Shutters"; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVC" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/camera{ - c_tag = "Supermatter East"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall, -/area/engine/port_engineering) -"cVG" = ( -/obj/item/weapon/wirecutters, -/turf/open/space, -/area/space) -"cVH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/power/terminal{ - icon_state = "term"; - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cVL" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - brightness = 3; - color = "white"; - dir = 1; - on = 1 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVM" = ( -/obj/machinery/the_singularitygen{ - anchored = 0 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVN" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cVO" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVP" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVQ" = ( -/obj/machinery/atmospherics/components/unary/heat_exchanger{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVR" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Filtering Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cVS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVT" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/supermatter) -"cVU" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/supermatter) -"cVV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVW" = ( -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cVY" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/rad_collector{ - anchored = 1; - req_access = list(32) - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 4 - }, -/area/engine/supermatter) -"cVZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space) -"cWd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space) -"cWe" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWg" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWj" = ( -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWl" = ( -/obj/machinery/airalarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWm" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWo" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWp" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWq" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWr" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "heatexchange" - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWt" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWu" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWv" = ( -/obj/machinery/mass_driver{ - id = "engicannon" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - tag = "smin"; - volume_rate = 700 - }, -/obj/machinery/power/supermatter_shard{ - anchored = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWx" = ( -/obj/structure/window, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - tag = "icon-intact (NORTHWEST)"; - icon_state = "intact"; - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWz" = ( -/turf/open/floor/plating, -/area/engine/supermatter) -"cWA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cWB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8; - initialize_directions = 11 - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space, -/area/space) -"cWE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWF" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWG" = ( -/obj/structure/particle_accelerator/particle_emitter/left{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWI" = ( -/obj/machinery/particle_accelerator/control_box{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 0; - d2 = 2 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWK" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWL" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage1"; - name = "secure storage" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 8 - }, -/area/engine/port_engineering) -"cWM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cWN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/weapon/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/weapon/electronics/airlock, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cWO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engine/heat_exchange) -"cWP" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/tank_dispenser, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWQ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "smcollector" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 2; - external_pressure_bound = 0; - internal_pressure_bound = 1000; - on = 1; - pressure_checks = 1; - pump_direction = 0; - tag = "smout" - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWU" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cWV" = ( -/obj/structure/sign/securearea{ - color = ""; - desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; - name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"cWX" = ( -/turf/open/floor/plating/airless{ - dir = 8; - icon_state = "warnplate" - }, -/area/space) -"cWY" = ( -/turf/open/floor/plating/airless{ - dir = 4; - icon_state = "warnplate" - }, -/area/space) -"cXc" = ( -/obj/structure/particle_accelerator/power_box{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXd" = ( -/obj/structure/particle_accelerator/particle_emitter/center{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXe" = ( -/obj/structure/particle_accelerator/end_cap{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXf" = ( -/obj/structure/particle_accelerator/fuel_chamber{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXg" = ( -/obj/machinery/camera{ - c_tag = "Engineering PA"; - dir = 9; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXh" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the singularity chamber."; - dir = 2; - layer = 4; - name = "Singularity Engine Telescreen"; - network = list("Singularity"); - pixel_x = -30; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXi" = ( -/obj/item/weapon/storage/box/matches, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXj" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/camera{ - c_tag = "Port Engineering Secure Storage"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXk" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/closed/wall/r_wall, -/area/engine/heat_exchange) -"cXl" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXm" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXn" = ( -/obj/machinery/door/poddoor{ - id = "engicannon" - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, -/turf/open/floor/engine/vacuum, -/area/engine/supermatter) -"cXo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXp" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXq" = ( -/obj/structure/window{ - color = "red"; - desc = "A window, break in case of emergency."; - dir = 1; - icon_state = "window"; - tag = "icon-window (NORTH)" - }, -/obj/machinery/button/massdriver{ - id = "engicannon"; - name = "\improper JETTISON ENGINE"; - pixel_y = -22; - req_access_txt = "32" - }, -/turf/open/floor/plating{ - icon_state = "warnplate"; - dir = 1 - }, -/area/engine/supermatter) -"cXr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cXt" = ( -/obj/structure/particle_accelerator/particle_emitter/right{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXu" = ( -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXw" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage1"; - name = "Secure Storage"; - pixel_x = 24; - pixel_y = 0; - req_access_txt = "10" - }, -/obj/machinery/camera{ - c_tag = "Port Engineering Middle"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXx" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXy" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - volume_rate = 5000 - }, -/turf/open/floor/plating/airless, -/area/space) -"cXz" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; - pixel_y = 0 - }, -/turf/closed/wall, -/area/space) -"cXA" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXB" = ( -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = -25; - req_access_txt = "11" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXE" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXG" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXI" = ( -/obj/machinery/field/generator, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cXJ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Singularity"; - name = "radiation shutters" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "Singularity"; - name = "Shutters Control"; - pixel_x = 0; - pixel_y = 25; - req_access_txt = "11" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXM" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Port Engineering South" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXN" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/weapon/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/obj/structure/chair/stool, -/obj/effect/landmark/start{ - name = "Station Engineer" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXY" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cXZ" = ( -/obj/structure/table, -/obj/item/weapon/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYb" = ( -/obj/item/device/multitool, -/turf/open/space, -/area/space) -"cYd" = ( -/obj/structure/table, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = 5 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYe" = ( -/obj/structure/table, -/obj/item/device/flashlight{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/device/flashlight, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYf" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYg" = ( -/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 = 32 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYh" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 1; - state = 2 - }, -/obj/structure/cable{ - cable_color = "yellow"; - d2 = 2; - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYi" = ( -/obj/structure/grille, -/obj/machinery/light, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYj" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYk" = ( -/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 = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYm" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/obj/machinery/atmospherics/components/unary/vent_pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYq" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYr" = ( -/obj/structure/grille, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4"; - tag = "90Curve" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating/airless, -/area/engine/port_engineering) -"cYs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYt" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYu" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYw" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYx" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYz" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel, -/area/engine/port_engineering) -"cYA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0; - tag = "" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/port_engineering) -"cYD" = ( -/obj/structure/lattice, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/space, -/area/space) - -( -1, -1, -1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -"} - +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_n"; + name = "north of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aad" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aae" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"aaf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aag" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_ne"; + name = "northeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aah" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"aai" = ( +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aak" = ( +/obj/machinery/door/poddoor{ + id = "executionspacevent" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aal" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aam" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/open/space, +/area/space) +"aan" = ( +/obj/machinery/flasher{ + id = "executionflasher"; + pixel_y = 24 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/processing) +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/transfer) +"aaq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/processing) +"aar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/security/transfer) +"aas" = ( +/obj/machinery/sparker{ + id = "executionsparker"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/chair, +/turf/open/floor/engine, +/area/security/transfer) +"aau" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aax" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aay" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northwest"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aaF" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + heat_proof = 1; + name = "Prisoner Transfer Chamber"; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/transfer) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/grille, +/obj/structure/window, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/transfer) +"aaK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaL" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Labor Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"aaM" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 10000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaN" = ( +/obj/machinery/atmospherics/components/unary/tank/toxins, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaO" = ( +/obj/machinery/atmospherics/components/unary/tank/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaP" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/razor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaR" = ( +/obj/machinery/button/flasher{ + id = "executionflasher"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionspacevent"; + name = "vent to space"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaS" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/weapon/tank/internals/anesthetic, +/obj/item/weapon/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaV" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock Northeast"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"aaW" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaX" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaY" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aaZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aba" = ( +/obj/machinery/button/ignition{ + id = "executionsparker"; + pixel_x = 24; + pixel_y = 8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abd" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"abe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abf" = ( +/obj/machinery/flasher{ + id = "gulagshuttleflasher"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"abg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/transfer) +"abk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abq" = ( +/obj/machinery/door/airlock/security{ + name = "Prisoner Transfer"; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abt" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abw" = ( +/obj/structure/table, +/obj/item/device/electropack, +/obj/item/clothing/head/helmet, +/obj/item/device/assembly/signaler, +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Transfer Center APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"aby" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abz" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/transfer) +"abA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abF" = ( +/turf/closed/wall/r_wall, +/area/security/lockers) +"abG" = ( +/turf/closed/wall/r_wall, +/area/security/hos) +"abH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/hos) +"abI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abK" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Brig Interrogation" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"abL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"abN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/processing) +"abO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"abP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet, +/area/security/hos) +"abQ" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abS" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"abT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/carpet, +/area/security/hos) +"abU" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"abV" = ( +/obj/machinery/computer/card/minor/hos, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/security/hos) +"abW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/lockers) +"abX" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plasteel, +/area/security/lockers) +"abY" = ( +/turf/open/floor/plasteel, +/area/security/lockers) +"abZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Cappers! Fairly unremarkable really."; + name = "\improper Officer Cappers" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aca" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Camilla! He constantly seeks validation."; + name = "\improper Officer Camilla" + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acb" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ace" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acg" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"ach" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"aci" = ( +/obj/structure/table, +/obj/item/weapon/lighter, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"ack" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"acl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acm" = ( +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Prison Shuttle Dock APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aco" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acp" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acr" = ( +/obj/machinery/camera{ + c_tag = "Prison Shuttle Dock East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"act" = ( +/obj/structure/closet/ammunitionlocker, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acu" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acw" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/deputy, +/obj/item/weapon/storage/box/seccarts, +/turf/open/floor/carpet, +/area/security/hos) +"acx" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"acy" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acA" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acB" = ( +/turf/open/floor/carpet, +/area/security/hos) +"acC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acD" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acE" = ( +/obj/vehicle/secway, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/lockers) +"acF" = ( +/obj/structure/table, +/obj/item/device/taperecorder, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acG" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"acI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"acN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"acO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/security/hos) +"acQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/adamantine, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"acR" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/security/hos) +"acS" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/carpet, +/area/security/hos) +"acT" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Brig Locker Room West"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"acU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"acX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/lockers) +"acY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"acZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"ada" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"add" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"ade" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adf" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/processing) +"adg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/processing) +"adh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/processing) +"adi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/processing) +"adj" = ( +/obj/structure/closet/ammunitionlocker, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"adk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/security/hos) +"adn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/security/hos) +"ado" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adp" = ( +/turf/closed/wall, +/area/security/transfer) +"adq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/transfer) +"ads" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Security Locker Room APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adw" = ( +/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/open/floor/plasteel, +/area/security/lockers) +"adx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/brig) +"ady" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"adz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"adA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Transfer Wing"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"adC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"adE" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/red, +/obj/item/weapon/stamp/hos, +/turf/open/floor/carpet, +/area/security/hos) +"adF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Brig Riot Equipment"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"adG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/security/hos) +"adI" = ( +/turf/closed/wall, +/area/security/hos) +"adJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/carpet, +/area/security/hos) +"adK" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/security/hos) +"adL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/lockers) +"adO" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/lockers) +"adP" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adR" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 20 + }, +/obj/item/stack/sheet/metal{ + amount = 20 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/security/lockers) +"adT" = ( +/obj/structure/table, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/item/key/security, +/obj/machinery/camera{ + c_tag = "Brig Locker Room East"; + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"adU" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/lockers) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/isolation) +"adW" = ( +/obj/machinery/vending/medical{ + pixel_x = -2; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitered" + }, +/area/security/isolation) +"adX" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitered" + }, +/area/security/isolation) +"adY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"adZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aea" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aec" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aed" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor Northwest"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"aeg" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aei" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/camera/motion{ + c_tag = "Armory"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aej" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aek" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"ael" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aem" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/hos) +"aen" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/turf/open/floor/carpet, +/area/security/hos) +"aeo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/hos) +"aep" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/lockers) +"aer" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/main) +"aes" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"aet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"aeu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"aev" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aew" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Brig Medbay"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/isolation) +"aex" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"aey" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aez" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aeD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aeG" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aeH" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeK" = ( +/obj/machinery/button/door{ + id = "riotequipment"; + name = "Riot Equipment Shutters"; + pixel_x = 24; + pixel_y = 32; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeN" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeO" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "vault" + }, +/area/ai_monitored/security/armory) +"aeP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/hos) +"aeQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"aeR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"aeS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aeU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeV" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeW" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"aeZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/main) +"afa" = ( +/obj/machinery/computer/security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"afb" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afc" = ( +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afd" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afe" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"aff" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"afh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afi" = ( +/obj/structure/bed, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/isolation) +"afj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fpmaint) +"afm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afp" = ( +/obj/structure/rack, +/obj/item/weapon/storage/lockbox/loyalty, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afq" = ( +/mob/living/simple_animal/bot/secbot{ + desc = "It's Officer Lock n Lode! Would have an itchy trigger finger if he had hands."; + name = "\improper Officer Lock n Lode" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afs" = ( +/obj/structure/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/weapon/tank/internals/emergency_oxygen/double, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"aft" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 8; + name = "Armory APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afv" = ( +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"afw" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"afx" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"afy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"afz" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afB" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afC" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Shower Door" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"afE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/whitered, +/area/security/isolation) +"afF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitered" + }, +/area/security/isolation) +"afG" = ( +/obj/machinery/camera{ + c_tag = "Brig Medbay"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitered" + }, +/area/security/isolation) +"afH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afI" = ( +/turf/closed/wall, +/area/security/main) +"afJ" = ( +/obj/structure/grille, +/turf/open/space, +/area/space) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"afL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 6" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"afO" = ( +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Secure Cell 2"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"afQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"afR" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/melee/classic_baton/telescopic, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afS" = ( +/obj/machinery/door/window/brigdoor{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afT" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/obj/item/weapon/gun/energy/gun/advtaser, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afU" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/ecase, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afV" = ( +/obj/structure/window/reinforced, +/obj/structure/guncase/shotgun, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/obj/item/weapon/gun/projectile/shotgun/riot, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/security/armory) +"afW" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Riot Equipment"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/shutters{ + id = "riotequipment" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/security/armory) +"afX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/main) +"afY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"afZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aga" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"agc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"agd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"age" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/security/main) +"agf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"agh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Security Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"agi" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agj" = ( +/obj/machinery/door/airlock{ + name = "Showers"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agl" = ( +/obj/machinery/camera{ + c_tag = "Brig Showers"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"agm" = ( +/turf/open/floor/plasteel, +/area/security/main) +"agn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"ago" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitered" + }, +/area/security/isolation) +"agp" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitered" + }, +/area/security/isolation) +"agq" = ( +/obj/structure/table, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitered" + }, +/area/security/isolation) +"agr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ags" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"agt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Medbay APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/isolation) +"agu" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agv" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agw" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall14"; + dir = 2 + }, +/area/shuttle/pod_3) +"agx" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_3) +"agy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/pod_3) +"agz" = ( +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agA" = ( +/obj/machinery/flasher{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"agB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"agC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell2"; + name = "Secure Cell 2"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"agD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"agE" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agF" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"agJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"agK" = ( +/obj/vehicle/secway, +/obj/item/key/security, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/weapon/gun/energy/laser/practice, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/main) +"agM" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/security/main) +"agP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Security Office West"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/main) +"agQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/open/floor/plasteel, +/area/security/main) +"agR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agS" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Security Office East"; + dir = 8; + network = list("SS13") + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"agT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"agU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint) +"agY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"agZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aha" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahb" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahc" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahd" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc4" + }, +/area/shuttle/pod_3) +"ahe" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahf" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahg" = ( +/obj/structure/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ahh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahi" = ( +/obj/structure/chair, +/obj/item/weapon/storage/pod{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahj" = ( +/obj/structure/chair, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahk" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ahl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ahm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aho" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahp" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aht" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahx" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/main) +"ahy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ahz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahA" = ( +/obj/machinery/computer/shuttle/labor{ + name = "prison shuttle console" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahB" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -31; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weapon/restraints/handcuffs, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahC" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall1"; + dir = 2 + }, +/area/shuttle/labor) +"ahD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"ahF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahG" = ( +/obj/structure/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ahN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahO" = ( +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ahP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"ahQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"ahR" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahS" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/door{ + id = "armorylockdown"; + name = "Brig Control Lockdown"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahV" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahW" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Brig Control APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahX" = ( +/turf/closed/wall, +/area/security/warden) +"ahY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"ahZ" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/item/device/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/main) +"aia" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aib" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aid" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + dwidth = 2; + height = 9; + id = "pod3"; + name = "escape pod 3"; + width = 5 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aie" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aif" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Brig Escape Shuttle"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aig" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"aih" = ( +/obj/docking_port/stationary/random{ + dir = 4; + dwidth = 2; + height = 9; + id = "asteroid_pod3"; + width = 5 + }, +/turf/open/space, +/area/space) +"aii" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aij" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/main) +"aik" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/security/main) +"ail" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aim" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ain" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/security/main) +"aio" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aip" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"air" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ais" = ( +/obj/structure/table, +/obj/item/baseball, +/obj/item/baseball, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ait" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiy" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 5" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiz" = ( +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Secure Cell 1"; + pixel_x = -32 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "red" + }, +/area/security/brig) +"aiA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/brig) +"aiB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/security/warden) +"aiC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aiE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armorylockdown" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/warden) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/main) +"aiI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aiL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aiM" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aiN" = ( +/obj/machinery/flasher{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aiO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + id_tag = "SecureCell1"; + name = "Secure Cell 1"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Brig APC"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/security/brig) +"aiR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aiT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aiW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aiY" = ( +/turf/closed/wall/shuttle{ + icon_state = "swallc1" + }, +/area/shuttle/pod_3) +"aiZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"aja" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "brigshuttleflash"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/pod_3) +"ajb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "brigshuttleflash"; + name = "Flash Control"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "1" + }, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 0; + pixel_y = -31 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod3"; + shuttleId = "pod3" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_3) +"ajd" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajn" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "red" + }, +/area/security/brig) +"ajo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/brig) +"ajp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"ajq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/courtroom) +"ajs" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aju" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Courtroom North"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"ajv" = ( +/obj/structure/closet/secure_closet/courtroom, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ajw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/courtroom) +"ajx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice{ + pixel_y = 4 + }, +/obj/item/weapon/dice/d8{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajA" = ( +/obj/machinery/button/flasher{ + id = "gulagshuttleflasher"; + name = "Flash Control"; + pixel_x = 0; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ajB" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d20, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ajD" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5" + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Secure Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ajF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/security/brig) +"ajG" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajI" = ( +/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"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajL" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajM" = ( +/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/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"ajS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aka" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall13"; + dir = 2 + }, +/area/shuttle/pod_3) +"akb" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/pod_3) +"akc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"akd" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"ake" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"aki" = ( +/obj/structure/table/wood, +/obj/item/weapon/gavelblock, +/turf/open/floor/plasteel/darkblue, +/area/crew_quarters/courtroom) +"akj" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d12, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akk" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"akm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"akn" = ( +/turf/closed/wall, +/area/security/isolation) +"ako" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 4"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall7"; + dir = 2 + }, +/area/shuttle/labor) +"akr" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 3"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aks" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall11"; + dir = 2 + }, +/area/shuttle/labor) +"akt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + color = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aku" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"akw" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Evidence"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"aky" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akC" = ( +/obj/machinery/camera{ + c_tag = "Brig Cell Corridor East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/brig) +"akD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akE" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/courtroom) +"akG" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"akH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/courtroom) +"akI" = ( +/obj/structure/table/wood/poker, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akJ" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/dice/d10, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"akK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akL" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akM" = ( +/obj/structure/chair/comfy/brown, +/obj/item/clothing/under/rank/janitor, +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/obj/item/trash/cheesie, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/weapon/mop, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akO" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/ian, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"akP" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = -25; + prison_radio = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"akR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akS" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"akT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"akX" = ( +/turf/closed/wall, +/area/maintenance/fsmaint) +"akY" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"akZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"ala" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Front Desk"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/crew_quarters/courtroom) +"alc" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ald" = ( +/turf/closed/wall/r_wall, +/area/security/isolation) +"ale" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alf" = ( +/obj/item/weapon/dice/d4, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"alg" = ( +/obj/structure/grille, +/obj/item/weapon/reagent_containers/food/snacks/donut/chaos, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ali" = ( +/obj/item/stack/teeth/lizard{ + amount = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"all" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"aln" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alo" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alp" = ( +/obj/docking_port/mobile{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp"; + name = "perma prison shuttle"; + port_angle = 90; + width = 9 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + width = 9 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Prison Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"alq" = ( +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/rack, +/obj/item/clothing/head/bowler, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/computer/security, +/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/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aly" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "red" + }, +/area/crew_quarters/courtroom) +"alz" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/crew_quarters/courtroom) +"alA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 8; + name = "Courtroom APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alB" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alC" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alD" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alE" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigars, +/obj/item/weapon/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"alF" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 4"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alG" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 4" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alH" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 3" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 3"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alJ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 2"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alK" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 2" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alL" = ( +/obj/machinery/disposal/trapdoor{ + id = "Cell 1" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/obj/machinery/camera{ + c_tag = "Brig Cell 1"; + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"alN" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plasteel, +/area/security/brig) +"alP" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alQ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"alR" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/camera{ + c_tag = "Brig Lobby Desk"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/flasher{ + id = "lobbyflash"; + pixel_y = -4; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "lobbylockdown"; + name = "Lobby Lockdown"; + pixel_y = 4; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"alV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/crew_quarters/courtroom) +"alX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"alY" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/space) +"alZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"ama" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amb" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/weapon/gun/magic/staff, +/obj/item/weapon/gun/magic/wand, +/obj/item/weapon/sord, +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amc" = ( +/obj/structure/closet{ + name = "locker" + }, +/obj/item/clothing/suit/armor/riot/knight, +/obj/item/clothing/head/helmet/knight, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/clothing/head/helmet/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/under/roman, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/under/kilt, +/obj/item/clothing/under/pirate, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amd" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ame" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ami" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"amj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amk" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aml" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/northleft{ + dir = 2 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"amm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"amn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/contraband, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ams" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amt" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amw" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amx" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amz" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Brig Lobby" + }, +/obj/item/device/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amF" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amH" = ( +/obj/machinery/flasher{ + id = "lobbyflash"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"amI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/security/main) +"amJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"amL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"amN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amO" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"amS" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"amU" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"amV" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"amW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amY" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"amZ" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ana" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anb" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"and" = ( +/obj/structure/table, +/obj/item/weapon/stamp, +/obj/item/weapon/poster/legit, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ane" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ang" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anh" = ( +/obj/structure/rack, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ani" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ank" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ann" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ano" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anp" = ( +/obj/machinery/atmospherics/pipe/manifold, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ans" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ant" = ( +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anv" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"anw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"any" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Courtroom"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anA" = ( +/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"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"anD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"anE" = ( +/obj/structure/table, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anF" = ( +/obj/structure/rack, +/obj/item/weapon/reagent_containers/pill/morphine, +/obj/item/weapon/reagent_containers/pill/morphine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anG" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"anM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"anN" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"anO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anP" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anQ" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anS" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"anV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"anY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"anZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aob" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aoc" = ( +/turf/closed/wall, +/area/security/brig) +"aod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/brig) +"aoe" = ( +/obj/machinery/camera{ + c_tag = "Cargo North"; + dir = 4; + network = list("perma") + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"aof" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 8; + network = list("perma") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"aog" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoi" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"aoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aok" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aol" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aom" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aon" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"aoo" = ( +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aop" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aoq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aor" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aos" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/main) +"aot" = ( +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aou" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/courtroom) +"aov" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/matches, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aow" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 1; + color = "red"; + dir = 1 + }, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aox" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/bag/tray{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoy" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/photo_album, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoA" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoB" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoC" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoD" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoE" = ( +/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" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"aoG" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxport) +"aoH" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"aoJ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Port Engineering Hallway" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"aoK" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northwest"; + dir = 5; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoL" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Northeast"; + dir = 8; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoN" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southwest"; + dir = 4; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"aoO" = ( +/obj/item/weapon/crowbar, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aoP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoQ" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoR" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aoS" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoT" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Detective's Office"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoU" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aoX" = ( +/obj/structure/rack, +/obj/item/weapon/storage/backpack/satchel/sec, +/obj/item/weapon/storage/backpack/security, +/obj/item/weapon/storage/backpack/dufflebag/sec, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aoY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aoZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apa" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apb" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apd" = ( +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"ape" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apf" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"apg" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/drinkingglasses, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"aph" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"api" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apl" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apm" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apn" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"apo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"app" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"apr" = ( +/obj/machinery/button/door{ + id = "detshutters"; + name = "Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aps" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"apt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/brig) +"apu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apv" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/auxstarboard) +"apw" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/outpost) +"apx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apy" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"apA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"apC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"apD" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apF" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"apH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lobbylockdown" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Lobby" + }, +/turf/open/floor/plasteel/bar, +/area/security/brig) +"apI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/courtroom) +"apK" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"apM" = ( +/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" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"apN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Security Electrical Maintenance APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apP" = ( +/turf/closed/wall, +/area/maintenance/secelectrical) +"apQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"apU" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"apV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apW" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/adamantine, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apX" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apY" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"apZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqa" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/wirecutters, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqe" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqf" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aqi" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aqj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqk" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aql" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqo" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqu" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqx" = ( +/obj/item/weapon/poster/legit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqA" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"aqB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"aqC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"aqE" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Northeast" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aqG" = ( +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqH" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"aqI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqJ" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aqK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqL" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqM" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6; + icon_state = "tracks"; + tag = "icon-tracks (SOUTHWEST)" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aqR" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aqS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqU" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aqY" = ( +/obj/machinery/door/airlock/security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aqZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ara" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/security/brig) +"arc" = ( +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/space) +"ard" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"are" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ari" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"ark" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arl" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aro" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arp" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/secelectrical) +"arr" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/secelectrical) +"ars" = ( +/obj/structure/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"art" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aru" = ( +/obj/structure/closet/cardboard, +/obj/item/clothing/suit/jacket/miljacket, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"arv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arw" = ( +/obj/structure/table, +/obj/item/stack/ducttape, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arx" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c50, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ary" = ( +/obj/structure/table/wood, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"arz" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arB" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office Backroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"arD" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detshutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"arG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"arJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway North"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arN" = ( +/obj/structure/grille, +/obj/structure/grille, +/turf/open/space, +/area/space) +"arO" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod1" + }, +/turf/open/space, +/area/space) +"arP" = ( +/obj/docking_port/stationary/random{ + id = "asteroid_pod2" + }, +/turf/open/space, +/area/space) +"arQ" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/labor) +"arR" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/labor) +"arS" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/labor) +"arT" = ( +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/engine/port_engineering) +"arU" = ( +/obj/machinery/camera/emp_proof{ + c_tag = "Singularity Southeast"; + dir = 9; + network = list("Singularity") + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"arV" = ( +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/weapon/crowbar, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Red Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = 22; + pixel_y = -10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"arW" = ( +/obj/structure/table/reinforced, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel, +/area/bridge) +"arX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"arZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asb" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asc" = ( +/obj/structure/table/wood/poker, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"asd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/lawoffice) +"asf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawshutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"asg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ash" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ask" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Dormitory APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aso" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ass" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_1) +"ast" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_1) +"asu" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_1) +"asv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_2) +"asw" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_2) +"asx" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_2) +"asy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/labor) +"asz" = ( +/obj/machinery/ai_status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"asA" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"asB" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/assembly/flash, +/obj/item/device/assembly/flash, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"asC" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asE" = ( +/obj/structure/closet/crate, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asF" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plating, +/area/engine/port_engineering) +"asG" = ( +/obj/structure/table, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/engineering) +"asH" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"asI" = ( +/obj/structure/table, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"asJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asK" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"asL" = ( +/obj/structure/sign/atmosplaque{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/obj/item/weapon/storage/inflatable, +/turf/open/floor/plasteel, +/area/atmos) +"asM" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"asN" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/paicard, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/clothing/glasses/red, +/obj/item/clothing/glasses/orange, +/obj/item/clothing/glasses/gglasses, +/turf/open/floor/wood, +/area/lawoffice) +"asP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/lawoffice) +"asQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asR" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/carpet, +/area/lawoffice) +"asS" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"asT" = ( +/obj/structure/rack, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/turf/open/floor/carpet, +/area/lawoffice) +"asU" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"asV" = ( +/obj/machinery/button/door{ + id = "lawshutters"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"asW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"asX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"asZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"ata" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ate" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Pool APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"atf" = ( +/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/open/floor/plating, +/area/maintenance/fpmaint2) +"atg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ath" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_1) +"ati" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod1"; + shuttleId = "pod1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/pod_2) +"atk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -30; + pixel_y = 0; + possible_destinations = "asteroid_pod2"; + shuttleId = "pod2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atl" = ( +/obj/item/stack/rods, +/turf/open/space, +/area/space) +"atm" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"atn" = ( +/turf/open/floor/plasteel/shuttle{ + icon_state = "shuttlefloor4" + }, +/area/shuttle/labor) +"ato" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"atq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"atr" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"ats" = ( +/obj/effect/decal/cleanable/oil, +/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" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"att" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atu" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"atv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/item/weapon/storage/firstaid/surgery, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"aty" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/glass/bottle/morphine, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"atz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"atA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atD" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "42" + }, +/turf/open/floor/wood, +/area/lawoffice) +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Lawyer" + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"atL" = ( +/turf/closed/wall, +/area/maintenance/commiespy) +"atM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"atN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"atO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"atP" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxport) +"atQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"atR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/turf/open/floor/carpet, +/area/lawoffice) +"atT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atU" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atV" = ( +/obj/machinery/camera{ + c_tag = "Pool North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atW" = ( +/obj/structure/closet, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"atX" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Law Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/lawoffice) +"atY" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"atZ" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_labeler, +/obj/item/device/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"aua" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/lawoffice) +"aub" = ( +/obj/structure/closet/crate, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/wood, +/area/lawoffice) +"auc" = ( +/obj/structure/closet, +/obj/item/clothing/suit/jacket, +/obj/item/clothing/suit/jacket/miljacket, +/obj/item/clothing/under/griffin, +/obj/item/clothing/head/griffin, +/obj/item/clothing/shoes/griffin, +/obj/item/clothing/suit/toggle/owlwings/griffinwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/pig, +/obj/item/clothing/head/chicken, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/wood, +/area/lawoffice) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/carpet, +/area/lawoffice) +"aue" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/law, +/obj/item/weapon/pen/blue, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/computer/med_data, +/turf/open/floor/carpet, +/area/lawoffice) +"aug" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/lawoffice) +"auh" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/lawoffice) +"aui" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/lawoffice) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (WEST)"; + icon_state = "yellowcornersiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"auk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aum" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aun" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"auo" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (WEST)"; + icon_state = "yellowsiding"; + dir = 8 + }, +/area/crew_quarters/pool) +"aup" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auq" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/open/floor/engine, +/area/gateway) +"aur" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aus" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1351; + name = "Science intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1347; + name = "Supply intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1355; + name = "Medical intercom"; + pixel_x = -27; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"aut" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1353; + name = "Command intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1359; + name = "Security intercom"; + pixel_y = 25; + prison_radio = 1 + }, +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Stronk Russian APC"; + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/under/soviet, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"auw" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aux" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_1) +"auy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod1"; + name = "escape pod 1" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_1) +"auz" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_1) +"auA" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_2) +"auB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + id = "pod2"; + name = "escape pod 2" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_2) +"auC" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_2) +"auD" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/arrival) +"auE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/arrival) +"auF" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/arrival) +"auG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auH" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"auI" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"auJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (NORTH)"; + icon_state = "yellowcornersiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"auK" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"auL" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Garden APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"auM" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"auN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"auO" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auQ" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"auR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Maintenance"; + req_access_txt = list(27,12) + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hallway/secondary/entry) +"auU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/security/brig) +"auW" = ( +/obj/machinery/gateway, +/turf/open/floor/engine, +/area/gateway) +"auX" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway South"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"auY" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"ava" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avb" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avc" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avd" = ( +/turf/closed/wall, +/area/lawoffice) +"ave" = ( +/turf/closed/wall, +/area/maintenance/fsmaint2) +"avf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating/airless, +/area/maintenance/fsmaint2) +"avg" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1447; + name = "AI Private intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/storage/photo_album, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avh" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avi" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/syndie, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avl" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"avm" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avn" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avo" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"avq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"avr" = ( +/obj/machinery/vending/boozeomat{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avu" = ( +/obj/machinery/door/window/southright{ + name = "Gateway Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"avv" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avw" = ( +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avx" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"avy" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"avz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avG" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel Office APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/sleeper{ + dir = 4; + icon_state = "sleeper-open" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/camera{ + c_tag = "Arrivals Infirmary"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/hallway/secondary/entry) +"avM" = ( +/obj/structure/table/glass, +/obj/item/weapon/cultivator, +/obj/item/weapon/hatchet, +/obj/item/weapon/crowbar, +/obj/item/device/plant_analyzer, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avN" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/obj/item/weapon/reagent_containers/food/snacks/popcorn, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"avO" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"avP" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avS" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"avT" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"avU" = ( +/obj/machinery/door/airlock/external{ + name = "Airlock"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avV" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 1; + freqlock = 1; + frequency = 1357; + name = "Engineering intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avW" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/clothing/tie/stethoscope, +/obj/item/device/camera, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer{ + desc = "These possibly cant be even letters, blyat!"; + name = "Russian computer" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"avY" = ( +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"avZ" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awb" = ( +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awc" = ( +/obj/item/trash/candy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awd" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awe" = ( +/obj/structure/rack, +/obj/item/weapon/gun/projectile/shotgun/toy, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"awf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awg" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awj" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/arrival) +"awk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"awl" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awn" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awp" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awq" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"awr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aws" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"awt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"awu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"awv" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aww" = ( +/obj/effect/landmark/start{ + name = "Mime" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"awx" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/white, +/area/mime) +"awy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/office) +"awA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"awB" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/hallway/secondary/entry) +"awC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Infirmary" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/secondary/entry) +"awE" = ( +/obj/structure/bodycontainer/crematorium, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"awG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awH" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"awI" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"awK" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"awL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awP" = ( +/obj/machinery/door/window/northright{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"awQ" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"awR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awS" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/library) +"awT" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/storage/tools) +"awU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"awV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"awW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/auxstarboard) +"awX" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"awY" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"awZ" = ( +/obj/item/weapon/garrote, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"axa" = ( +/obj/machinery/vending/sustenance, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = -27; + pixel_y = 0; + prison_radio = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axb" = ( +/obj/machinery/computer/crew, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"axc" = ( +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axd" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axe" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/projectile/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"axf" = ( +/obj/structure/sign/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axg" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"axh" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axi" = ( +/obj/item/weapon/poster/legit, +/turf/closed/wall, +/area/hallway/secondary/entry) +"axj" = ( +/turf/closed/wall/shuttle{ + blocks_air = 6; + dir = 1; + icon_state = "swall13" + }, +/area/shuttle/arrival) +"axk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/arrival) +"axl" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"axm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"axo" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Port Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"axr" = ( +/turf/closed/wall, +/area/maintenance/fpmaint2) +"axs" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axt" = ( +/obj/structure/table/wood, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/obj/item/weapon/poster/contraband, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axw" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/bandana/red, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axx" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"axy" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"axz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axA" = ( +/obj/item/weapon/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"axB" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"axC" = ( +/obj/item/weapon/storage/box, +/obj/structure/table, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"axD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"axJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axK" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"axP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axQ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/quartermaster/storage) +"axR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/storage) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axT" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"axU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/button/door{ + dir = 2; + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteredcorner" + }, +/area/assembly/robotics) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"axW" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"axX" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axY" = ( +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"axZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency) +"aya" = ( +/turf/open/floor/wood, +/area/lawoffice) +"ayb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency) +"ayc" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency) +"ayd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency) +"aye" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"ayf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"ayh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"ayi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"ayk" = ( +/obj/machinery/vending/autodrobe{ + req_access_txt = "0" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayl" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aym" = ( +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"ayn" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayo" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayq" = ( +/obj/machinery/computer/security, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"ayr" = ( +/obj/item/ammo_casing/caseless/foam_dart, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"ays" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"ayu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayB" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"ayD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayE" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"ayG" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayL" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayM" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayN" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"ayO" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"ayP" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"ayR" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/labor) +"ayS" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"ayT" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/labor) +"ayU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"ayY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ayZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/medical) +"aza" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"azc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/medical) +"azd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aze" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"azf" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"azg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"azh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"azi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"azj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"azk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"azl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"azm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken"; + icon_state = "wood-broken" + }, +/area/maintenance/fsmaint2) +"azn" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/fsmaint2) +"azo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/maintenance/commiespy) +"azp" = ( +/obj/item/ammo_box/foambox, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azq" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fsmaint2) +"azr" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/fsmaint2) +"azs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azv" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azw" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azx" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/hallway/secondary/entry) +"azy" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Arrivals Shuttle Airlock" + }, +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "arrival_home"; + name = "port bay 1"; + width = 15 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azz" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"azA" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"azB" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Port Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azD" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"azE" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + tag = "icon-manifold (WEST)"; + icon_state = "manifold"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"azG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azH" = ( +/obj/item/trash/sosjerky, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azL" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"azM" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azN" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azO" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"azP" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"azQ" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/fpmaint2) +"azS" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"azT" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"azU" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azV" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"azY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"aAb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAc" = ( +/mob/living/simple_animal/bot/cleanbot{ + desc = "It's Dumpy the cleaning robot! A boon to lazy janitors everywhere."; + name = "\improper Dumpy"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aAd" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAf" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"aAj" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "caution" + }, +/area/engine/break_room) +"aAk" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/engine/break_room) +"aAl" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "caution" + }, +/area/engine/break_room) +"aAm" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"aAn" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aAo" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aAp" = ( +/obj/machinery/camera{ + c_tag = "Engineering Checkpoint"; + dir = 8; + network = list("perma") + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"aAq" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aAr" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/airless, +/area/space) +"aAs" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/space) +"aAt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aAu" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAv" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAw" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAx" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAy" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aAz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAC" = ( +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aAD" = ( +/obj/structure/table, +/obj/item/weapon/gun/projectile/automatic/toy/pistol, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aAF" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAG" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAH" = ( +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod Hallway"; + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAK" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aAM" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aAN" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aAO" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarport) +"aAP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarport) +"aAQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAS" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aAU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/under/rank/bartender, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aAW" = ( +/turf/closed/wall, +/area/maintenance/fpmaint) +"aAX" = ( +/obj/machinery/poolcontroller, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aBl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/fore) +"aBz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aBA" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Fore Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBC" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/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 = 32 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aBD" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/pipe, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBE" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aBG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBH" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBJ" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aBK" = ( +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBL" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aBM" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aBN" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aBO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aBP" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHEAST)"; + icon_state = "intact"; + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBS" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aBU" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBV" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBW" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBX" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/tile/wood{ + amount = 25 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBY" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aBZ" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCc" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aCr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/lawoffice) +"aCt" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCv" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aCw" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/fsmaint2) +"aCx" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fsmaint2) +"aCy" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/fsmaint2) +"aCz" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCB" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCD" = ( +/obj/structure/closet, +/obj/item/ammo_box/foambox, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aCE" = ( +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCG" = ( +/obj/structure/closet/wardrobe/blue, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCH" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCI" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aCJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aCK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCL" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCQ" = ( +/obj/structure/bed, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCT" = ( +/obj/structure/table/wood/poker, +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCV" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aCX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aCY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDc" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aDd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aDe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aDh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aDv" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Starboard Solar APC"; + pixel_x = -25; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDx" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aDy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fsmaint2) +"aDz" = ( +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aDC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDD" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aDE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDG" = ( +/obj/structure/closet/wardrobe/pink, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDH" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aDI" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aDJ" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDK" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aDN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDP" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTH)"; + icon_state = "intact"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDQ" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aDR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aDS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDU" = ( +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aDW" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aEd" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEk" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Detective"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEl" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aEm" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aEz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEA" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aEB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aEC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aED" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEE" = ( +/obj/structure/grille, +/obj/effect/landmark{ + name = "Syndicate Breach Area" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEF" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aEG" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + icon_state = "door_closed"; + locked = 0; + name = "Fore Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/auxsolarstarboard) +"aEI" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/auxsolarstarboard) +"aEJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEK" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEM" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEN" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEO" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/coin/gold, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aEQ" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aER" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aES" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"aET" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEU" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEV" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/arrival) +"aEW" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aEY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aEZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFc" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (SOUTHWEST)"; + icon_state = "intact"; + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFd" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFe" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North Maintenance APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFf" = ( +/obj/machinery/monkey_recycler, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/obj/item/weapon/reagent_containers/food/snacks/monkeycube, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aFg" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFh" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aFs" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/bodybags, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFt" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFA" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFD" = ( +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aFG" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFH" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFI" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFJ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aFL" = ( +/turf/closed/wall, +/area/crew_quarters/pool) +"aFM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/pool) +"aFQ" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"aFR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aFS" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFT" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFY" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aFZ" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGa" = ( +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/iron, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGb" = ( +/obj/structure/closet, +/obj/item/weapon/coin/iron, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGc" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aGd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aGf" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHEAST)"; + icon_state = "intact"; + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/fpmaint2) +"aGm" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen"; + opened = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGo" = ( +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/wood, +/area/maintenance/fpmaint2{ + icon_state = "storage"; + name = "Speakeasy" + }) +"aGq" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aGr" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGs" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGt" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aGw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aGH" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aGI" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGJ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aGL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/sleep) +"aGM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/crew_quarters/sleep) +"aGN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/crew_quarters/sleep) +"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aGS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aGW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHb" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aHc" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHe" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHf" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHh" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHi" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aHj" = ( +/turf/closed/wall, +/area/maintenance/electrical) +"aHk" = ( +/turf/closed/wall, +/area/space) +"aHl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/airless, +/area/space) +"aHm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHt" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aHu" = ( +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aHv" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aHw" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aHx" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/device/flashlight{ + luminosity = 0; + on = 1; + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHy" = ( +/obj/structure/chair/withwheels/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aHz" = ( +/obj/structure/closet/crate, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHA" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHB" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHC" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aHE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aHN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aHO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aHP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aHS" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aHV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHW" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/item/toy/carpplushie, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 8; + pixel_y = -25; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/structure/bed, +/obj/item/weapon/bedsheet/red, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aHY" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/item/weapon/reagent_containers/hypospray/medipen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding"; + icon_state = "yellowcornersiding" + }, +/area/crew_quarters/pool) +"aIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding"; + icon_state = "yellowsiding" + }, +/area/crew_quarters/pool) +"aIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aIg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIh" = ( +/obj/structure/table, +/obj/item/weapon/shard, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/shard{ + icon_state = "small" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIi" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIj" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C"; + pixel_x = 0; + pixel_y = 24; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIk" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aIl" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIm" = ( +/obj/item/stack/rods{ + amount = 50 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 10; + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aIn" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIo" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aIp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/electrical) +"aIq" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/maintenance/electrical) +"aIr" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aIs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aIx" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged3" + }, +/area/space) +"aIy" = ( +/turf/open/floor/plating/airless, +/area/space) +"aIz" = ( +/obj/item/weapon/paper/crumpled, +/turf/open/floor/plasteel/airless{ + icon_state = "damaged2" + }, +/area/space) +"aIA" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIC" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aID" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIE" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aIF" = ( +/obj/machinery/button/door{ + id = "hobodorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aIH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint) +"aII" = ( +/obj/machinery/button/door{ + id = "hobodorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/fpmaint) +"aIJ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aIN" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"aIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aIT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aIU" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/sleep) +"aIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aIX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aIY" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aIZ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/poolfilter{ + pixel_y = 11 + }, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aJb" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aJc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Holodeck" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJf" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aJg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJh" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aJn" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJo" = ( +/turf/open/floor/plating, +/area/maintenance/electrical) +"aJp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJr" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aJs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"aJt" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/arrival) +"aJu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plasteel/shuttle{ + icon = 'icons/turf/floors.dmi'; + icon_state = "dark" + }, +/area/shuttle/arrival) +"aJv" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/arrival) +"aJx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aJA" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/obj/item/weapon/shard{ + icon_state = "medium" + }, +/obj/item/weapon/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/chair, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJF" = ( +/obj/item/weapon/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space, +/area/space) +"aJG" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJI" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm1"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aJJ" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/fpmaint2) +"aJK" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/item/weapon/bedsheet/brown, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/fpmaint2) +"aJL" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/open/floor/plasteel, +/area/maintenance/fpmaint) +"aJM" = ( +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/fpmaint) +"aJN" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "hobodorm2"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aJV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aJY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aKa" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKb" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/crew_quarters/sleep) +"aKh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aKi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aKj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aKk" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/toy/poolnoodle/blue, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKl" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aKn" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKo" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aKp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aKr" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aKs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Electrical Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aKu" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aKx" = ( +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/weapon/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKz" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "damaged5" + }, +/area/space) +"aKA" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKF" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKK" = ( +/obj/machinery/atmospherics/pipe/manifold, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aKT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aKV" = ( +/turf/closed/wall, +/area/ai_monitored/storage/eva) +"aKW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"aLb" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLe" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLf" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/guitar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLg" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLh" = ( +/obj/structure/table/wood, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aLl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aLm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aLn" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/ladder, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLo" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/machinery/drain, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLp" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/structure/pool/Lboard, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aLr" = ( +/obj/structure/table, +/obj/item/weapon/paper{ + desc = ""; + info = "Brusies sustained in the holodeck can be healed simply by sleeping."; + name = "Holodeck Disclaimer" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aLs" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLt" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLu" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLv" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLw" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B"; + pixel_x = -28; + pixel_y = 4; + req_access_txt = "0" + }, +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A"; + pixel_x = -28; + pixel_y = -6; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLy" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLz" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aLC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aLI" = ( +/obj/structure/table, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/maintenance/electrical) +"aLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aLL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-West"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLP" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Arrivals North APC"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South-East"; + network = list("SS13","Prison") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aLW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLY" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aLZ" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aMc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aMs" = ( +/obj/structure/closet/crate/rcd, +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor"; + name = "motion-sensitive security camera" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/item/clothing/head/welding, +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "EVA Storage APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/device/radio/off, +/obj/item/device/assembly/timer, +/obj/structure/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMx" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMy" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/stock_parts/cell/high, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMz" = ( +/obj/item/device/aicard, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMB" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMC" = ( +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aMD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aME" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aMF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMG" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMH" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMI" = ( +/obj/structure/table/wood, +/obj/item/device/instrument/violin, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMJ" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMK" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aML" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Fitness" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aMO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/pool) +"aMP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aMQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/pool) +"aMT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aMX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aMZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNb" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aNc" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNi" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"aNj" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNk" = ( +/obj/structure/table/glass, +/obj/item/weapon/hemostat, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNl" = ( +/obj/structure/table/glass, +/obj/item/weapon/restraints/handcuffs/cable/zipties, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aNx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aNy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/closed/wall, +/area/maintenance/fpmaint) +"aNz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNA" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aNC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aND" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aNE" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNG" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNH" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aNI" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aNJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aNK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aNL" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aNO" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/sleep) +"aNP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (EAST)"; + icon_state = "yellowsiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aNQ" = ( +/turf/open/floor/plasteel{ + tag = "icon-greenbluefull (NORTH)"; + icon_state = "greenbluefull"; + dir = 1 + }, +/obj/item/clothing/under/shorts/red, +/turf/simulated/pool/water, +/area/crew_quarters/pool) +"aNR" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOd" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOf" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOg" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOh" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOi" = ( +/obj/machinery/power/terminal, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aOj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aOl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOm" = ( +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aOn" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aOo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOp" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aOs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aOt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aOu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aOv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aOw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOy" = ( +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aOA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/fpmaint2) +"aOC" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOD" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOE" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOH" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/patriot, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aOI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOJ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aOK" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/open/floor/engine, +/area/gateway) +"aOM" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/open/floor/engine, +/area/gateway) +"aON" = ( +/turf/open/floor/engine, +/area/gateway) +"aOO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aOP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aOY" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aOZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aPa" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 2 + }, +/area/crew_quarters/sleep) +"aPb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPe" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/sleep) +"aPf" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral" + }, +/area/crew_quarters/toilet) +"aPh" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/toilet) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowcornersiding (EAST)"; + icon_state = "yellowcornersiding"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-yellowsiding (NORTH)"; + icon_state = "yellowsiding"; + dir = 1 + }, +/area/crew_quarters/pool) +"aPp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/crew_quarters/pool) +"aPr" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPs" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPv" = ( +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPx" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aPy" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/electrical) +"aPA" = ( +/obj/machinery/computer/monitor{ + name = "backup power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPB" = ( +/obj/machinery/power/smes{ + charge = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/electrical) +"aPC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/space) +"aPD" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPE" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPF" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/security/checkpoint2) +"aPG" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aPI" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint2) +"aPJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/hallway/secondary/entry) +"aPK" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aPL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPT" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPV" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aPW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPX" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aPY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Primary Tool Storage APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/primary) +"aPZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQb" = ( +/obj/structure/bed/dogbed, +/obj/item/weapon/reagent_containers/food/drinks/flask/det{ + desc = "A Space Veteran's only friend."; + name = "space veteran's flask" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aQc" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"aQe" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/open/floor/engine, +/area/gateway) +"aQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/gateway) +"aQg" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aQh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aQi" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQj" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aQp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aQt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aQv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aQw" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aQx" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"aQy" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aQz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aQA" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/table/glass, +/obj/item/clothing/under/shorts/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQD" = ( +/obj/machinery/camera{ + c_tag = "Pool South"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQH" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/crew_quarters/pool) +"aQI" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/bruise_pack, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/crew_quarters/pool) +"aQJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aQL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQM" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQN" = ( +/obj/item/clothing/under/rank/mailman, +/obj/item/clothing/head/mailman, +/obj/structure/closet, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aQR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aQS" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/security/checkpoint2) +"aQT" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQU" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/security/checkpoint2) +"aQV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQW" = ( +/obj/machinery/light, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint2) +"aQX" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint2) +"aQY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRe" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRf" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aRi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRj" = ( +/turf/closed/wall, +/area/storage/primary) +"aRk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/primary) +"aRn" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"aRo" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/open/floor/engine, +/area/gateway) +"aRq" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/open/floor/engine, +/area/gateway) +"aRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aRs" = ( +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRv" = ( +/obj/item/weapon/pen{ + desc = "Writes upside down!"; + name = "astronaut pen" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aRx" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aRy" = ( +/obj/machinery/camera{ + c_tag = "EVA East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aRA" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/sleep) +"aRB" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRD" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aRG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRI" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/pool) +"aRK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/pool) +"aRM" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRO" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/fsmaint2) +"aRP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aRT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRY" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aRZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aSa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes/cigars/cohiba, +/obj/item/weapon/lighter, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cognac{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 8; + pixel_y = 9; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aSc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/grille, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1480; + name = "Confessional Intercom"; + pixel_x = 0; + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSf" = ( +/turf/closed/wall, +/area/chapel/main) +"aSg" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aSh" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/chapel/main) +"aSi" = ( +/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 = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/chapel/main) +"aSj" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/turf/open/floor/plating, +/area/chapel/main) +"aSm" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSo" = ( +/turf/closed/wall, +/area/security/checkpoint2) +"aSp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/security/checkpoint2) +"aSq" = ( +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aSz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSB" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aSC" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSE" = ( +/obj/structure/table, +/obj/item/weapon/wirecutters, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSF" = ( +/obj/structure/table, +/obj/item/device/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSG" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + departmentType = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSH" = ( +/obj/structure/table, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/item/device/multitool, +/obj/item/device/multitool{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSL" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aSM" = ( +/turf/closed/wall, +/area/mime) +"aSO" = ( +/turf/closed/wall, +/area/clown) +"aSP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/gateway) +"aSS" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aST" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSU" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aSX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aSZ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aTa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Command EVA"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aTc" = ( +/obj/machinery/door/airlock/command{ + name = "Command EVA"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aTd" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/sleep) +"aTe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aTf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aTg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTj" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aTm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTn" = ( +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTo" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aTq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aTr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j1s"; + sortType = 18 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTu" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTw" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTy" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/power/apc{ + dir = 2; + name = "Chapel APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/chapel/main) +"aTF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aTH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main) +"aTL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTM" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTN" = ( +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/main) +"aTP" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aTS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTT" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Green Arrivals"; + name = "Nothing To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTU" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTV" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTW" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint2) +"aTX" = ( +/obj/structure/table/reinforced, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTY" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aTZ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/secondary/entry) +"aUa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aUb" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aUj" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/plants{ + lootcount = 10; + name = "10plant_spawner" + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUk" = ( +/obj/machinery/door/airlock{ + name = "Garden"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aUl" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aUm" = ( +/obj/machinery/camera{ + c_tag = "Mime Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/mime, +/turf/open/floor/plasteel/black, +/area/mime) +"aUn" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aUo" = ( +/obj/item/weapon/bedsheet/mime, +/obj/structure/bed, +/turf/open/floor/plasteel/black, +/area/mime) +"aUp" = ( +/obj/machinery/camera{ + c_tag = "Clown Office Camera"; + dir = 4 + }, +/obj/structure/closet/secure_closet/clown, +/turf/open/floor/plasteel/green, +/area/clown) +"aUq" = ( +/obj/machinery/light{ + dir = 1; + icon_state = "tube1" + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aUr" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed, +/turf/open/floor/plasteel/green, +/area/clown) +"aUs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUt" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUu" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/gateway) +"aUw" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper/pamphlet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aUy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUA" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aUB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aUD" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + c_tag_order = 999; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aUE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aUF" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUH" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aUI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aUK" = ( +/obj/structure/dresser, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aUM" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUS" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aUU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aUZ" = ( +/turf/closed/wall, +/area/library) +"aVa" = ( +/turf/closed/wall, +/area/chapel/office) +"aVc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aVd" = ( +/obj/structure/falsewall, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aVe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVg" = ( +/obj/machinery/camera{ + c_tag = "Chapel North"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVh" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVi" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aVj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"aVk" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals No-Declare Lane"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aVl" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"aVm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"aVn" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "Green Arrivals Shutters"; + name = "Items To Declare Shutters"; + normaldoorcontrol = 0; + pixel_x = -22; + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVo" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aVq" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/entry) +"aVr" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"aVs" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/camera{ + c_tag = "Arrivals Declare Lane"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"aVQ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mime Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/mime) +"aVR" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVS" = ( +/obj/effect/landmark/start{ + name = "Clown" + }, +/turf/open/floor/plasteel/green, +/area/clown) +"aVT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aVY" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aWa" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWb" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWc" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aWd" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/storage/eva) +"aWe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWf" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/fore) +"aWg" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWh" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWk" = ( +/obj/structure/toilet{ + tag = "icon-toilet00 (WEST)"; + icon_state = "toilet00"; + dir = 8 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aWl" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/weapon/lipstick/random, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWm" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWn" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWr" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/space, +/area/space) +"aWJ" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j2s"; + sortType = 17 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aWL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/library) +"aWM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"aWN" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/library) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/wood, +/area/library) +"aWP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/library) +"aWR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/chapel/office) +"aWS" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWU" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWV" = ( +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWW" = ( +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aWX" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aWY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aXb" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"aXc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aXd" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aXe" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/snacks/grown/poppy, +/obj/item/weapon/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aXg" = ( +/obj/effect/landmark{ + name = "Marauder Entry" + }, +/turf/open/space, +/area/space) +"aXh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aXl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXm" = ( +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXn" = ( +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aXo" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXq" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/obj/item/weapon/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/storage/primary) +"aXr" = ( +/obj/structure/window, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/showcase/mimestatue, +/turf/open/floor/plasteel/black, +/area/mime) +"aXs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aXt" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/frame/computer{ + anchored = 1; + desc = "What, you can't see the screen?"; + name = "Mime's Computer" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"aXu" = ( +/obj/structure/reagent_dispensers/honk_cooler, +/turf/open/floor/plasteel/green, +/area/clown) +"aXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aXw" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/obj/item/weapon/bikehorn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aXx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Clown Office APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/clown) +"aXy" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aXz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aXA" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/gateway) +"aXB" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"aXC" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/eva) +"aXF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aXG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/crew_quarters/sleep) +"aXK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/crew_quarters/sleep) +"aXL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXM" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXO" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aXP" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXQ" = ( +/obj/structure/closet, +/obj/item/weapon/dnainjector/smilemut, +/turf/open/floor/plasteel{ + tag = "icon-redbluefull"; + icon_state = "redbluefull" + }, +/area/crew_quarters/theatre) +"aXR" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre) +"aXS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aXU" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Bar APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aXX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"aXY" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/bar) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aYa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + sortType = 21 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYj" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hydroponics) +"aYk" = ( +/turf/closed/wall, +/area/hydroponics) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/hydroponics) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aYn" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/library) +"aYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/library) +"aYp" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/camera{ + c_tag = "Library North"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYq" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/library) +"aYu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"aYv" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYw" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYx" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"aYz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/office) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aYC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYD" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"aYE" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aYF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aYG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"aYI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYJ" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"aYM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"aYN" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/entry) +"aYO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYQ" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge"; + dir = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYS" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYT" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYU" = ( +/obj/structure/table/glass, +/obj/item/weapon/hatchet, +/obj/item/weapon/cultivator, +/obj/item/weapon/crowbar, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYV" = ( +/obj/item/weapon/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/device/plant_analyzer, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"aYW" = ( +/obj/structure/table, +/obj/item/weapon/wrench, +/obj/item/device/analyzer, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYY" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"aYZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZb" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/storage/primary) +"aZc" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/storage/primary) +"aZd" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/storage/primary) +"aZe" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mime) +"aZf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/black, +/area/mime) +"aZg" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/mime) +"aZh" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp/bananalamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/red, +/area/clown) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/green, +/area/clown) +"aZj" = ( +/obj/structure/statue/bananium/clown, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"aZk" = ( +/obj/machinery/button/door{ + dir = 2; + id = "gateway_shutters"; + name = "Gateway Access Button"; + pixel_x = 0; + pixel_y = -27; + req_access_txt = "47" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"aZl" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZm" = ( +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZn" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aZp" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZs" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZt" = ( +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 40; + tag = "icon-direction_sec (NORTH)" + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = 32; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 24; + tag = "icon-direction_evac (EAST)" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"aZu" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZv" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"aZw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aZx" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"aZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/primary/central) +"aZz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"aZA" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZC" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small, +/obj/machinery/door/window/westright, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/toilet) +"aZD" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/fsmaint2) +"aZF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"aZG" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aZH" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/gun/projectile/revolver/doublebarrel, +/obj/structure/table/wood, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZJ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aZK" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/bar) +"aZL" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aZO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/crew_quarters/kitchen) +"aZP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/hydroponics) +"aZQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"aZR" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZS" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/paper/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"aZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/library) +"aZU" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"aZV" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"aZW" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"aZX" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"aZY" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/library) +"baa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bab" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bac" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bad" = ( +/obj/structure/table/wood, +/obj/item/weapon/nullrod, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"baf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bag" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bah" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"baj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bal" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"ban" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bao" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bap" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"baq" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bar" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Garden" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction{ + name = "\improper Garden" + }) +"bau" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bav" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"baw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"bax" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/primary) +"bay" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/mime) +"baz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/freezer{ + desc = "..."; + name = "Mime Office"; + req_access_txt = "46" + }, +/turf/open/floor/plasteel/black, +/area/mime) +"baA" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/mime) +"baB" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fpmaint2) +"baC" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/clown) +"baD" = ( +/obj/machinery/door/airlock/clown{ + name = "Clown Office"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/clown) +"baE" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/clown) +"baF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baG" = ( +/obj/machinery/door/airlock/research{ + name = "Gateway Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/gateway) +"baJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gateway_shutters"; + name = "Gateway Entry" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/gateway) +"baK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fpmaint) +"baL" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"baM" = ( +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"baN" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/primary/central) +"baP" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/lipstick, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baR" = ( +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baS" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Theatre Stage"; + dir = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"baU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baX" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"baZ" = ( +/obj/machinery/camera{ + c_tag = "Bar Storage" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bba" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bbb" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bbe" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/kitchen) +"bbf" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hydroponics) +"bbg" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbi" = ( +/obj/structure/closet/wardrobe/botanist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbj" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbk" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbm" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 0; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/weapon/watertank, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bbn" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/wood, +/area/library) +"bbo" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bbp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/library) +"bbr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bbt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "grimy" + }, +/area/chapel/office) +"bbw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bby" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel East"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bbD" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bbE" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbF" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbH" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbL" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbM" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/apc{ + name = "Port Hall APC"; + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/port) +"bcd" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/securearea{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bce" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-West"; + dir = 2 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bch" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bci" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bcj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bck" = ( +/turf/open/floor/plasteel{ + icon_state = "L1" + }, +/area/hallway/primary/central) +"bcl" = ( +/turf/open/floor/plasteel{ + icon_state = "L3" + }, +/area/hallway/primary/central) +"bcm" = ( +/turf/open/floor/plasteel{ + icon_state = "L5" + }, +/area/hallway/primary/central) +"bcn" = ( +/turf/open/floor/plasteel{ + icon_state = "L7" + }, +/area/hallway/primary/central) +"bco" = ( +/turf/open/floor/plasteel{ + icon_state = "L9" + }, +/area/hallway/primary/central) +"bcp" = ( +/turf/open/floor/plasteel{ + icon_state = "L11" + }, +/area/hallway/primary/central) +"bcq" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L13"; + name = "floor" + }, +/area/hallway/primary/central) +"bcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bct" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bcv" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutralcorner"; + dir = 1 + }, +/area/hallway/primary/central) +"bcw" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North-East"; + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcy" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcA" = ( +/obj/structure/piano, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bcE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcG" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcI" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bcJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcL" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bcM" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/wrench, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/wirecutters, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcT" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bcU" = ( +/turf/open/floor/wood, +/area/library) +"bcV" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"bcW" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bcY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/office) +"bcZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/chapel/main) +"bda" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdb" = ( +/obj/machinery/light, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdd" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bde" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdf" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bdg" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdk" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Arrivals Checkpoint South" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bdn" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bdo" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdp" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdq" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bdr" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bds" = ( +/turf/open/floor/goonplaque, +/area/hallway/secondary/entry) +"bdt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdK" = ( +/turf/open/floor/plasteel{ + icon_state = "L2" + }, +/area/hallway/primary/central) +"bdL" = ( +/turf/open/floor/plasteel{ + icon_state = "L4" + }, +/area/hallway/primary/central) +"bdM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/turf/open/floor/plasteel{ + icon_state = "L6" + }, +/area/hallway/primary/central) +"bdN" = ( +/turf/open/floor/plasteel{ + icon_state = "L8" + }, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/turf/open/floor/plasteel{ + icon_state = "L10" + }, +/area/hallway/primary/central) +"bdP" = ( +/turf/open/floor/plasteel{ + icon_state = "L12" + }, +/area/hallway/primary/central) +"bdQ" = ( +/turf/open/floor/plasteel{ + desc = ""; + icon_state = "L14" + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdU" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bdV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdW" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdX" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdY" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bdZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bea" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"beb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bec" = ( +/obj/machinery/vending/coffee, +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bed" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/kitchenspike, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bef" = ( +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hydroponics) +"bei" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"bej" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "hydrofloor" + }, +/area/hydroponics) +"bek" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/library) +"bel" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/library) +"bem" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/library) +"beo" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"beq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"ber" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bes" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bet" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"beu" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bew" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bex" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Green Arrivals"; + name = "Nothing to Declare Conveyor"; + operating = 0; + verted = -1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bey" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Red Arrivals"; + name = "Items to Declare Conveyor"; + operating = 0 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"bez" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Red Arrivals"; + name = "Items To Declare Conveyor"; + operating = 0; + verted = -1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint2) +"beA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"beB" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beC" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beD" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"beE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beI" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beJ" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beK" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beY" = ( +/obj/structure/sign/directions/security{ + dir = 4; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_sec (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfc" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfd" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfe" = ( +/obj/machinery/light, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bff" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bfi" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bfj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bfk" = ( +/obj/structure/closet/chefcloset, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bfo" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfp" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfq" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfr" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/camera{ + c_tag = "Hydroponics North"; + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bft" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bfu" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/open/floor/wood, +/area/library) +"bfv" = ( +/turf/open/floor/carpet, +/area/library) +"bfw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/library) +"bfx" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/turf/open/floor/wood, +/area/library) +"bfy" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/library) +"bfA" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfB" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/invisible, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bfD" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bfE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bfH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"bfI" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Escape Arm Holding Area"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/hallway/secondary/exit) +"bfJ" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfK" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfM" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bfN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/hallway/secondary/exit) +"bfO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bfP" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bfQ" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/hallway/secondary/entry) +"bfR" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"bfS" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bfV" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bfW" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"bga" = ( +/turf/closed/wall, +/area/maintenance/port) +"bgb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgc" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bgd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bge" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bgf" = ( +/turf/closed/wall, +/area/storage/art) +"bgg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/storage/art) +"bgh" = ( +/obj/machinery/door/airlock/glass{ + name = "Art Storage" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/art) +"bgj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bgk" = ( +/turf/closed/wall, +/area/storage/emergency2) +"bgl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgm" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgq" = ( +/turf/closed/wall, +/area/storage/tools) +"bgr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bgt" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bgu" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgw" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgx" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgy" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + layer = 2.9; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bgz" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgD" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgE" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgG" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bgH" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bgI" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "showroomfloor" + }, +/area/crew_quarters/kitchen) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "green" + }, +/area/hydroponics) +"bgK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bgL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/hydroponics) +"bgM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bgN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bgO" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgP" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgQ" = ( +/obj/structure/cult/tome, +/obj/item/clothing/under/suit_jacket/red, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bgR" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgS" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bgU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bgV" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/hallway/secondary/exit) +"bgW" = ( +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/exit) +"bgZ" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/exit) +"bha" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bhb" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhc" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bhd" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhj" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"bhk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bhl" = ( +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bho" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhp" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhs" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bht" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhv" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bhw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"bhx" = ( +/turf/open/floor/plasteel, +/area/storage/art) +"bhy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bhz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bhA" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bhB" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bhD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/turf/open/floor/plasteel, +/area/bridge) +"bhF" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/bridge) +"bhG" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/bridge) +"bhH" = ( +/obj/machinery/computer/monitor{ + name = "bridge power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/bridge) +"bhI" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bhJ" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bhK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bhL" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/bridge) +"bhM" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "green" + }, +/area/bridge) +"bhN" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "green" + }, +/area/bridge) +"bhO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/wrench, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/bridge) +"bhP" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhS" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhT" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhU" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhV" = ( +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhW" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhX" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bhY" = ( +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bhZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bia" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bib" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bic" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 2 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bie" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bif" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bih" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bij" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library) +"bik" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bil" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/turf/open/floor/wood, +/area/library) +"bim" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/library) +"bin" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/plasteel{ + icon_state = "cult"; + dir = 2 + }, +/area/library) +"bio" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bip" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"biq" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bir" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bis" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bit" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "green" + }, +/area/hallway/secondary/entry) +"biu" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel/green/side, +/area/hallway/secondary/entry) +"biz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hallway/secondary/entry) +"biA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/secondary/entry) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biD" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/hallway/secondary/entry) +"biH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway Central"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/hallway/secondary/entry) +"biI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biK" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biL" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biO" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"biP" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biQ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"biR" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/storage/art) +"biS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency2) +"biT" = ( +/turf/open/floor/plating, +/area/storage/emergency2) +"biU" = ( +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency2) +"biV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biY" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"biZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bja" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tools) +"bjc" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjd" = ( +/obj/structure/chair{ + dir = 1; + name = "Engineering Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bje" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/bridge) +"bjf" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/bridge) +"bjg" = ( +/obj/structure/chair{ + dir = 1; + name = "Command Station" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjh" = ( +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/bridge) +"bji" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "greencorner" + }, +/area/bridge) +"bjj" = ( +/obj/structure/chair{ + dir = 1; + name = "Crew Station" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjk" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "greencorner" + }, +/area/bridge) +"bjl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/bridge) +"bjm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bjn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjr" = ( +/obj/item/stack/spacecash/c10{ + amount = 10 + }, +/obj/item/stack/spacecash/c100{ + amount = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjs" = ( +/mob/living/carbon/monkey{ + name = "Pun Pun"; + real_name = "Pun Pun"; + unique_name = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bjt" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bju" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjv" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bjA" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bjB" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bjC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"bjD" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics) +"bjF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bjH" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/library) +"bjI" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement{ + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/library) +"bjJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjK" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bjN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"bjO" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bjP" = ( +/obj/machinery/vending/cola, +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bjQ" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bjU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/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 = 32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjV" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bjW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 11; + id = "emergency_home"; + name = "emergency evac bay"; + width = 22 + }, +/turf/open/space, +/area/space) +"bjX" = ( +/turf/closed/wall/r_wall, +/area/rec_room) +"bjY" = ( +/turf/closed/wall, +/area/rec_room) +"bjZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/rec_room) +"bka" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bkb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkc" = ( +/turf/closed/wall, +/area/security/vacantoffice) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bke" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/vacantoffice) +"bkf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bkh" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bki" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkk" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkl" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkm" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkn" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bko" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bkq" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/turf/open/floor/plasteel, +/area/storage/art) +"bkr" = ( +/obj/structure/table, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bks" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/table, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bkt" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/storage/emergency2) +"bku" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkv" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkw" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/storage/emergency2) +"bkx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bky" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkA" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"bkB" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bkC" = ( +/turf/closed/wall, +/area/bridge) +"bkD" = ( +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/bridge) +"bkE" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/bridge) +"bkF" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/bridge) +"bkG" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/bridge) +"bkH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkI" = ( +/turf/open/floor/plasteel, +/area/bridge) +"bkJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/bridge) +"bkL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "bluecorner" + }, +/area/bridge) +"bkM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/bridge) +"bkO" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/bridge) +"bkP" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/bridge) +"bkQ" = ( +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/bridge) +"bkR" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Bar West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkS" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkT" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkU" = ( +/obj/item/clothing/head/that{ + throwforce = 1; + throwing = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkV" = ( +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkW" = ( +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 8; + network = list("SS13") + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bkX" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkY" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bkZ" = ( +/obj/structure/table, +/obj/item/weapon/kitchen/rollingpin, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bla" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/chef_recipes, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"blc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/crew_quarters/kitchen) +"bld" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/hydroponics) +"ble" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 8 + }, +/area/hydroponics) +"blf" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"blg" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"blh" = ( +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/hydroponics) +"bli" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"blj" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/turf/open/floor/wood, +/area/library) +"blk" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/library) +"blm" = ( +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/wood, +/area/library) +"bln" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/library) +"blo" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"blp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"blq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"bls" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"blt" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"blu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"blx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bly" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Recreation Room APC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"blz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/carpet, +/area/rec_room) +"blA" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/rec_room) +"blB" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 9 + }, +/area/hallway/secondary/entry) +"blC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 1 + }, +/area/hallway/secondary/entry) +"blE" = ( +/obj/item/weapon/twohanded/required/kirbyplants, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 5 + }, +/area/hallway/secondary/entry) +"blF" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"blG" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blI" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blJ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"blL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"blN" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blR" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blS" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"blY" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bma" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bmc" = ( +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmd" = ( +/obj/machinery/camera{ + c_tag = "Bridge West"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/bridge) +"bme" = ( +/obj/structure/chair{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/bridge) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bmi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmk" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bml" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmn" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/bridge) +"bmq" = ( +/obj/structure/chair{ + dir = 1; + name = "Logistics Station" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bmr" = ( +/obj/machinery/camera{ + c_tag = "Bridge East"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "browncorner" + }, +/area/bridge) +"bms" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bmt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmu" = ( +/obj/machinery/camera{ + c_tag = "Bridge East Entrance"; + dir = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bmv" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bmw" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bmx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/weapon/reagent_containers/food/snacks/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar"; + name = "Bar Shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmy" = ( +/obj/structure/table, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmz" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmA" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmB" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmC" = ( +/obj/machinery/processor, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bmD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmE" = ( +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bmF" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hydroponics) +"bmG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"bmH" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper, +/turf/open/floor/wood, +/area/library) +"bmI" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bmK" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"bmL" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/library) +"bmM" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/library) +"bmN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"bmO" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"bmP" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bmR" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmS" = ( +/obj/machinery/door/window/northright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmT" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bmU" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmV" = ( +/turf/open/floor/carpet, +/area/rec_room) +"bmW" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/rec_room) +"bmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bmZ" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/rec_room) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"bnb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnd" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bne" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bnf" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bng" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bni" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnj" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen/red, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bnk" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"bnl" = ( +/obj/structure/grille, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnn" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnq" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Art Storage"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bny" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bnA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bnB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency2) +"bnC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bnD" = ( +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"bnE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/storage/tools) +"bnI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 4 + }, +/area/hallway/primary/central) +"bnJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bnL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"bnN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/bridge) +"bnQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnR" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnS" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnT" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnV" = ( +/obj/machinery/turretid{ + control_area = "AI Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Center"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnX" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnY" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Bridge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/bridge) +"boa" = ( +/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; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bob" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"boc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"boe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bof" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bog" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"boj" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bol" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bom" = ( +/obj/item/weapon/lighter, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bon" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boo" = ( +/obj/machinery/button/door{ + id = "bar"; + name = "Bar Shutters Control"; + pixel_x = -25; + pixel_y = 0; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bop" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"boq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 16 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bow" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"box" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"boy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/library) +"boz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"boC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"boE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"boF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/crew_quarters/courtroom) +"boH" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boI" = ( +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boK" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boN" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boO" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin, +/turf/open/floor/wood, +/area/rec_room) +"boP" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/rec_room) +"boQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/bikehorn/airhorn, +/turf/open/floor/wood, +/area/rec_room) +"boR" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"boS" = ( +/obj/structure/window/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/rec_room) +"boT" = ( +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 8 + }, +/area/hallway/secondary/entry) +"boU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"boW" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"boY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"boZ" = ( +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bpb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bpd" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port) +"bpe" = ( +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker/locker_toilet) +"bpg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bph" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpk" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/crew_quarters/locker) +"bpl" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/crew_quarters/locker) +"bpn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bpo" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Locker Room Maintenance APC"; + pixel_x = -27; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bpt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bpv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tools) +"bpz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/storage/tools) +"bpA" = ( +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpC" = ( +/obj/machinery/camera{ + c_tag = "Bridge West Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/hallway/primary/central) +"bpE" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge) +"bpF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/bridge) +"bpG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpI" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/bridge) +"bpK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_closed"; + locked = 0; + name = "AI Upload Access"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bpO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpP" = ( +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bpS" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/bridge) +"bpT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/bridge) +"bpU" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/hallway/primary/central) +"bpV" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Central Hall APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bpW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bpX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bpY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bpZ" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "25; 28" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"bqc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqe" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "green" + }, +/area/hydroponics) +"bqf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bqh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/hydroponics) +"bqi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/library) +"bqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/library) +"bqn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/library) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"bqs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"bqt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqw" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "Scaley."; + name = "Robusts-Many-Faces" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bqx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bqy" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/rec_room) +"bqz" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/rec_room) +"bqA" = ( +/obj/structure/table/wood, +/obj/item/device/taperecorder/empty, +/turf/open/floor/wood, +/area/rec_room) +"bqB" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bqC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bqD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bqF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqH" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bqJ" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bqK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bqM" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqN" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqO" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bqQ" = ( +/obj/structure/table, +/obj/item/weapon/razor, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqR" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqS" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit_jacket/female{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = -2; + pixel_y = 0 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bqT" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/crew_quarters/locker) +"bqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"bqW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bqZ" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"brb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"brc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"brg" = ( +/turf/closed/wall, +/area/quartermaster/office) +"brh" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bri" = ( +/turf/closed/wall/r_wall, +/area/bridge/meeting_room) +"brj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/bridge/meeting_room) +"brk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access = null; + req_access_txt = "19" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"brl" = ( +/turf/closed/wall, +/area/bridge/meeting_room) +"brm" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brn" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bro" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brp" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"brq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brr" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access = null; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"brt" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bru" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brv" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brw" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brx" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bry" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brz" = ( +/obj/machinery/camera{ + c_tag = "Bar South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brA" = ( +/obj/structure/noticeboard{ + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brB" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brC" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brE" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"brF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/kitchen) +"brH" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hydroponics) +"brJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brM" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brO" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/library) +"brP" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/library) +"brQ" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/library) +"brS" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/library) +"brT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/library) +"brU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brV" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"brW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/chapel/main) +"brX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Escape Hallway APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape shuttle Hallway"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"brY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bsa" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsb" = ( +/mob/living/simple_animal/cow, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bsc" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bsd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/hallway/secondary/entry) +"bsf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "neutral"; + dir = 4 + }, +/area/hallway/secondary/entry) +"bsg" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsh" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bsi" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Locker Restrooms APC"; + pixel_x = 27; + pixel_y = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/crew_quarters/locker/locker_toilet) +"bsl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bsn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bso" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/stock_parts/cell{ + maxcharge = 2000 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bsr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bss" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/office) +"bst" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/office) +"bsv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/office) +"bsw" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsx" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsy" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Conference Room"; + dir = 2 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsA" = ( +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsB" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsF" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/reset, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsH" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bsK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsN" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsP" = ( +/obj/machinery/status_display{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bsQ" = ( +/obj/machinery/power/apc{ + cell_type = 2500; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsR" = ( +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bsS" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bsT" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsU" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bsV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsW" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/library) +"bsX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/chapel/main) +"bsY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bsZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bta" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btb" = ( +/mob/living/simple_animal/hostile/lizard{ + desc = "A Lizard Wizard!"; + name = "Merlin" + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btc" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"btd" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bte" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-l"; + icon_state = "stairs-l" + }, +/area/hallway/secondary/entry) +"btf" = ( +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"btg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-stairs-m"; + icon_state = "stairs-m" + }, +/area/hallway/secondary/entry) +"bth" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-stairs-r"; + icon_state = "stairs-r" + }, +/area/hallway/secondary/entry) +"bti" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Vacant Office APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/security/vacantoffice) +"btj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"btk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btl" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"btn" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"bto" = ( +/obj/machinery/washing_machine, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/crew_quarters/locker) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btq" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"btr" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"bts" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btu" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 1 + }, +/area/quartermaster/office) +"btv" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 5 + }, +/area/quartermaster/office) +"btw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btx" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bty" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btA" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"btC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btD" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"btE" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btF" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btG" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/freeform, +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"btH" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btK" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btL" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"btN" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"btO" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btP" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = 32; + pixel_y = 28; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/sign/directions/security{ + dir = 1; + icon_state = "direction_sec"; + pixel_x = 32; + pixel_y = 36; + tag = "icon-direction_sec (NORTH)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btQ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btR" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btU" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btZ" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/secondary/exit) +"buc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bud" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bue" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/door/window/southright, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buf" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bug" = ( +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"buh" = ( +/obj/structure/window{ + tag = "icon-window (EAST)"; + icon_state = "window"; + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bui" = ( +/obj/structure/window, +/obj/machinery/vending/cola, +/turf/open/floor/carpet, +/area/rec_room) +"buj" = ( +/obj/structure/window, +/obj/machinery/vending/snack, +/turf/open/floor/carpet, +/area/rec_room) +"buk" = ( +/obj/structure/window, +/obj/item/weapon/twohanded/required/kirbyplants, +/turf/open/floor/carpet, +/area/rec_room) +"bul" = ( +/obj/structure/window, +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/rec_room) +"bum" = ( +/obj/structure/window, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/rec_room) +"bun" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bup" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bus" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"but" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"buu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"buv" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"buy" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"buA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/crew_quarters/locker) +"buB" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"buC" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buD" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"buF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/office) +"buH" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"buI" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + layer = 2.9; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"buK" = ( +/obj/item/weapon/hand_labeler, +/obj/item/device/assembly/timer, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buL" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buM" = ( +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buN" = ( +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"buP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buQ" = ( +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"buR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"buS" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai_upload) +"buT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"buU" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"buV" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"buW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"buX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bva" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j1"; + tag = "icon-pipe-j1 (EAST)" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bve" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bvn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bvo" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/obj/item/weapon/canvas/twentythreeXtwentythree, +/turf/open/floor/carpet, +/area/rec_room) +"bvp" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/weapon/storage/crayons, +/obj/item/weapon/pen, +/turf/open/floor/carpet, +/area/rec_room) +"bvq" = ( +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/rec_room) +"bvr" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"bvu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bvw" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvx" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bvy" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port) +"bvz" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"bvA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/locker) +"bvB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bvC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvE" = ( +/obj/structure/closet/crate, +/obj/machinery/doorButtons, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvF" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvG" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bvI" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bvJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bvL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bvM" = ( +/obj/item/weapon/storage/fancy/donut_box, +/obj/structure/table, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvN" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvO" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bvP" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bvQ" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/core/full/asimov, +/obj/item/weapon/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/corp, +/obj/item/weapon/aiModule/core/full/paladin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/aiModule/core/full/robocop, +/obj/item/weapon/aiModule/core/full/custom, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvS" = ( +/obj/machinery/computer/upload/ai, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvT" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 2; + name = "Upload APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvU" = ( +/obj/machinery/computer/upload/borg, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai_upload) +"bvV" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvW" = ( +/obj/structure/table, +/obj/item/weapon/aiModule/supplied/oxygen, +/obj/item/weapon/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/weapon/aiModule/reset/purge, +/obj/structure/window/reinforced, +/obj/item/weapon/aiModule/core/full/antimov, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/aiModule/supplied/protectStation, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai_upload) +"bvX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bwd" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/item/weapon/storage/lockbox/medal{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bwe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bwf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = 32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/science{ + dir = 4; + icon_state = "direction_sci"; + pixel_x = 32; + pixel_y = -32; + tag = "icon-direction_sci (EAST)" + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwi" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwj" = ( +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/hallway/primary/starboard) +"bwl" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "bluecorner" + }, +/area/hallway/primary/starboard) +"bwm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/hallway/primary/starboard) +"bwo" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/primary/starboard) +"bwp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bws" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwv" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bww" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/secondary/exit) +"bwx" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwy" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/hallway/secondary/exit) +"bwA" = ( +/obj/machinery/camera{ + c_tag = "Escape Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bwC" = ( +/obj/structure/easel, +/turf/open/floor/carpet, +/area/rec_room) +"bwD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/rec_room) +"bwH" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwI" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation Room"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/rec_room) +"bwJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwK" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bwL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwM" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwN" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwO" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage"; + verted = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwU" = ( +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwV" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"bwW" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Locker Room APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bwX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bxa" = ( +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxb" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"bxc" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxd" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bxf" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal" + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bxg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bxh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxj" = ( +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxl" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/bridge/meeting_room) +"bxn" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxq" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxr" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxs" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai_upload) +"bxv" = ( +/obj/structure/table/wood, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxw" = ( +/obj/structure/table/wood, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxx" = ( +/obj/structure/table/wood, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxy" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxA" = ( +/obj/structure/table/wood, +/obj/item/weapon/pinpointer, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bxB" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bxC" = ( +/obj/structure/sign/bluecross_2, +/turf/closed/wall, +/area/medical/medbay) +"bxD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bxE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bxG" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bxH" = ( +/turf/closed/wall, +/area/medical/morgue) +"bxI" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bxJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Primary Hallway APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxL" = ( +/turf/closed/wall, +/area/storage/emergency) +"bxM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bxN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/assembly/chargebay) +"bxO" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "loadingarea" + }, +/area/hallway/primary/starboard) +"bxP" = ( +/turf/closed/wall/r_wall, +/area/assembly/robotics) +"bxR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxS" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxT" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxU" = ( +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxV" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "purple" + }, +/area/hallway/primary/starboard) +"bxX" = ( +/turf/closed/wall/r_wall, +/area/toxins/lab) +"bxY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bxZ" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "escape" + }, +/area/hallway/secondary/exit) +"bya" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/exit) +"byc" = ( +/obj/structure/easel, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/rec_room) +"byd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/rec_room) +"bye" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals Hallway South"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"byf" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/food, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byg" = ( +/obj/structure/chair/stool{ + pixel_y = 0 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byh" = ( +/obj/structure/rack{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/contraband, +/obj/effect/spawner/lootdrop/plants, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal) +"byk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Disposal APC"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byo" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/locker/locker_toilet) +"byq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bys" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Bay APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"byw" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byz" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/storage) +"byA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/storage) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/quartermaster/office) +"byC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"byF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"byH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"byI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway West"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"byK" = ( +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Bridge Delivery"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/bridge/meeting_room) +"byL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byM" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"byP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"byQ" = ( +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byS" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"byU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"byV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Captain" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byW" = ( +/obj/machinery/computer/communications, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byX" = ( +/obj/structure/table/wood, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/item/weapon/coin/plasma, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"byZ" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/item/device/camera, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bza" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzb" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzc" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bzd" = ( +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bze" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzf" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bzg" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzh" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bzk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bzl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26; + req_access_txt = "5" + }, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/medical) +"bzm" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/medical) +"bzn" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/medical) +"bzo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzp" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bzu" = ( +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bzv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bzw" = ( +/turf/closed/wall, +/area/assembly/chargebay) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bzy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/assembly/chargebay) +"bzz" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzA" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bzC" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + closingLayer = 3.2; + dir = 2; + icon_state = "left"; + layer = 3.2; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bzE" = ( +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"bzF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bzG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bzH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + closingLayer = 3.2; + layer = 3.2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + closingLayer = 3.3; + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/toxins/lab) +"bzI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bzK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bzL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bzM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bzN" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/rec_room) +"bzP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/rec_room) +"bzQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage"; + verted = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bzX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bAh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/storage) +"bAj" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAk" = ( +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/quartermaster/office) +"bAl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bAo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 4 + }, +/area/quartermaster/office) +"bAp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bAq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bAs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "bluecorner" + }, +/area/hallway/primary/central) +"bAt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/bridge/meeting_room) +"bAu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bAv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/maintcentral) +"bAw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAx" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bAz" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = -28 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAA" = ( +/obj/machinery/computer/card, +/obj/item/weapon/card/id/captains_spare, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAB" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/weapon/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bAC" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAE" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bAH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bAJ" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bAK" = ( +/obj/machinery/computer/secure_data, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bAL" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bAO" = ( +/turf/open/floor/plating, +/area/storage/emergency) +"bAP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plating, +/area/storage/emergency) +"bAQ" = ( +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/storage/emergency) +"bAR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bAS" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAT" = ( +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bAU" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/assembly/chargebay) +"bAV" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/chargebay) +"bAW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bAY" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bBa" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBc" = ( +/obj/machinery/vending/robotics, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitered" + }, +/area/assembly/robotics) +"bBd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bBf" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access"; + dir = 2; + network = list("SS13") + }, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/research{ + name = "Research Division" + }) +"bBg" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurple" + }, +/area/toxins/lab) +"bBi" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + dir = 2; + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitepurplecorner" + }, +/area/toxins/lab) +"bBj" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bBl" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "arrival" + }, +/area/hallway/secondary/entry) +"bBr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "bluecorner" + }, +/area/hallway/secondary/entry) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bBu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + density = 0; + dir = 4; + icon_state = "rightopen"; + layer = 3 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/disposal) +"bBw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBx" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBy" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBz" = ( +/obj/machinery/mineral/stacking_unit_console{ + dir = 2; + machinedir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bBA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBB" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bBG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bBH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBI" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBK" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBL" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBO" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -1; + pixel_y = 24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bBP" = ( +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bBR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bBT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBU" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bridge Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBV" = ( +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bBW" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bBY" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bBZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCa" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCb" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bCc" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/folder/documents, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bCd" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCe" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Captain's Desk Door"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/captain) +"bCi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bCl" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/dropper, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bCm" = ( +/obj/machinery/smartfridge/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"bCn" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCs" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bCu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bCT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bCU" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bCX" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bDb" = ( +/turf/closed/wall, +/area/maintenance/asmaint2) +"bDc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 12; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space, +/area/space) +"bDd" = ( +/obj/machinery/door/airlock/external{ + id_tag = null; + name = "Port Docking Bay 2"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bDe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bDg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/hallway/secondary/entry) +"bDi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/hallway/secondary/entry) +"bDj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bDl" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage"; + layer = 2.5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + layer = 3; + name = "disposal exit vent" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bDn" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bDt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDu" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bDv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bDy" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bDz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bDA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bDF" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/office) +"bDG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Head of Personnel APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bDL" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bDM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Conference Room APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/bridge/meeting_room) +"bDN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Confrence Room South"; + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/meeting_room) +"bDO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bDQ" = ( +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDR" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/ai_monitored/nuke_storage) +"bDS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/ai_monitored/nuke_storage) +"bDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bDU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bDV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/captain) +"bDW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bDX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bDY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bEd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bEf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/glass/bottle/epinephrine, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEi" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bEk" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bEl" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/medical) +"bEm" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bEn" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/assembly/chargebay) +"bEo" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bEp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bEr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bEs" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/assembly/robotics) +"bEw" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bEy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEz" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bEA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEB" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bEC" = ( +/obj/machinery/r_n_d/protolathe, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/lab) +"bED" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bEE" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bEG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEJ" = ( +/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 = 32 + }, +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bEK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEL" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 4"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 3"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEO" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bEQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bER" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/disposal) +"bES" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bET" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEW" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/port) +"bEY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bEZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bFa" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFf" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bFi" = ( +/obj/machinery/status_display{ + density = 0; + pixel_y = 2; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/quartermaster/office) +"bFj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bFl" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/quartermaster/office) +"bFm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bFn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFo" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/maintcentral) +"bFp" = ( +/turf/closed/wall, +/area/crew_quarters/heads) +"bFq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads) +"bFr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/heads) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads) +"bFt" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/champion, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bFu" = ( +/obj/item/weapon/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bFv" = ( +/turf/closed/wall, +/area/crew_quarters/captain) +"bFw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFy" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bFz" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFA" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bFC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFE" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFI" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteyellow" + }, +/area/medical/chemistry) +"bFJ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFK" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + req_access_txt = "5" + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFM" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bFO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/medical) +"bFP" = ( +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/medical) +"bFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"bFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency) +"bFY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bFZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGc" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bGd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bGf" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bGg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/robotics) +"bGi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bGj" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bGl" = ( +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGm" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bGn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bGo" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGp" = ( +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGq" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/open/floor/plasteel, +/area/toxins/lab) +"bGr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/lab) +"bGs" = ( +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bGw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bGy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bGz" = ( +/obj/structure/grille, +/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 = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGB" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/hallway/secondary/entry) +"bGD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"bGE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bGF" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + icon_state = "switch-rev"; + id = "garbage"; + name = "disposal coveyor"; + position = -1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGG" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGH" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGI" = ( +/obj/structure/closet, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bGJ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGO" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bGP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/office) +"bGQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGS" = ( +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGT" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGU" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGV" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bGW" = ( +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/quartermaster/office) +"bGX" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/office) +"bGY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGZ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/hallway/primary/central) +"bHa" = ( +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = -4; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/pdapainter, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bHb" = ( +/obj/structure/table, +/obj/machinery/newscaster/security_unit{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHc" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bed/dogbed{ + anchored = 1; + desc = "Ian's bed! Looks comfy."; + name = "Ian's bed" + }, +/mob/living/simple_animal/pet/dog/corgi/Ian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bHf" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bHg" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bHh" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault" + }, +/area/ai_monitored/nuke_storage) +"bHi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 10 + }, +/area/ai_monitored/nuke_storage) +"bHj" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/gun/projectile/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bHk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/captain) +"bHl" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/captain, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHn" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bHo" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bHq" = ( +/obj/structure/table/glass, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHs" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bHt" = ( +/turf/closed/wall, +/area/medical/medbay) +"bHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bHw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/medbay) +"bHx" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHy" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bHz" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/medical) +"bHA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bHB" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "6;5" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/morgue) +"bHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bHD" = ( +/turf/closed/wall, +/area/medical/genetics) +"bHE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"bHG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bHI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bHJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bHK" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bHN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bHO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHP" = ( +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bHR" = ( +/obj/structure/table, +/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/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/crowbar, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bHS" = ( +/turf/closed/wall, +/area/assembly/robotics) +"bHT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHV" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bHW" = ( +/turf/closed/wall, +/area/toxins/lab) +"bHX" = ( +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/lab) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/lab) +"bIb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bIc" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/glass, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bId" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/lab) +"bIe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/lab) +"bIf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bIi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"bIj" = ( +/turf/closed/wall, +/area/toxins/shuttledock) +"bIk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s6"; + dir = 2 + }, +/area/shuttle/outpost) +"bIl" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/outpost) +"bIm" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bIn" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s10"; + dir = 2 + }, +/area/shuttle/outpost) +"bIo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bIp" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIq" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bIr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bIs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bIt" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bIu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIx" = ( +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bIz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/office) +"bIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bIC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/hallway/primary/central) +"bIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/hallway/primary/central) +"bIG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Reception Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bIM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bIN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIP" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIQ" = ( +/obj/machinery/door/airlock/vault{ + icon_state = "door_locked"; + locked = 1; + req_access_txt = "53" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bIR" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"bIU" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIV" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIW" = ( +/obj/structure/table/wood, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/crew_quarters/captain) +"bIX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/bikehorn/rubberducky, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "freezerfloor" + }, +/area/crew_quarters/captain) +"bIY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIZ" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJb" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJc" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bJd" = ( +/obj/structure/bed/roller, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bJe" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/medical/medbay) +"bJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bJl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall, +/area/medical/genetics) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJo" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTH)"; + icon_state = "whiteblue"; + dir = 1 + }, +/area/medical/genetics) +"bJp" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (NORTHEAST)"; + icon_state = "whiteblue"; + dir = 5 + }, +/area/medical/genetics) +"bJq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bJr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/weapon/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJs" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bJt" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bJu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJv" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bJw" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bJx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall, +/area/assembly/chargebay) +"bJy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/assembly/chargebay) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bJD" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/obj/item/weapon/hemostat, +/turf/open/floor/plasteel, +/area/assembly/robotics) +"bJF" = ( +/obj/structure/table, +/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/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bJG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/assembly/robotics) +"bJH" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/research{ + name = "Research Division" + }) +"bJJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/medical/research{ + name = "Research Division" + }) +"bJK" = ( +/obj/item/weapon/folder/white, +/obj/structure/table, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/tech_disk{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJO" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = -23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bJP" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/toxins/lab) +"bJQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/lab) +"bJR" = ( +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bJT" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJV" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Science Outpost Dock APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bJW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bJX" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall3"; + dir = 2 + }, +/area/shuttle/outpost) +"bJY" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bJZ" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bKa" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_ss13"; + name = "SS13 Arrival Docking"; + width = 35 + }, +/turf/open/space, +/area/space) +"bKb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKc" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bKd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bKe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKi" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bKj" = ( +/obj/machinery/autolathe, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKm" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKn" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKo" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bKp" = ( +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bKq" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bKr" = ( +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bKs" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bKt" = ( +/obj/machinery/computer/card, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bKu" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKv" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bKw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Vault Access"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/nuke_storage) +"bKy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bKz" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bKC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"bKD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bKF" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/chemistry) +"bKH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"bKJ" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel{ + tag = "icon-whitebot (WEST)"; + icon_state = "whitebot"; + dir = 8 + }, +/area/medical/medbay) +"bKK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKM" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bKQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor2"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKT" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKU" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKW" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bKX" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bKY" = ( +/turf/open/floor/plasteel, +/area/medical/genetics) +"bKZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 14 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bLa" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/assembly/chargebay) +"bLb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bLf" = ( +/obj/structure/table, +/obj/item/weapon/circular_saw, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/assembly/robotics) +"bLh" = ( +/obj/machinery/button/door{ + dir = 2; + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bLi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/assembly/robotics) +"bLj" = ( +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bLl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/lab) +"bLm" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "research lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/lab) +"bLo" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLp" = ( +/obj/structure/table, +/obj/item/weapon/pen, +/obj/machinery/camera{ + c_tag = "Experimentor Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/item/weapon/hand_labeler, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLq" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLr" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/toxins/explab) +"bLs" = ( +/obj/structure/closet/emcloset{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bLv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLw" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bLy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bLz" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bLA" = ( +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLB" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/outpost) +"bLC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLD" = ( +/turf/open/floor/plating, +/area/quartermaster/storage) +"bLE" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bLF" = ( +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/quartermaster/storage) +"bLG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bLH" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/device/multitool, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bLJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + layer = 2.9; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/heads) +"bLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads) +"bLO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bLP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bLQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/ai_monitored/nuke_storage) +"bLR" = ( +/turf/closed/wall, +/area/teleporter) +"bLS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLT" = ( +/obj/structure/table, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bLU" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/closet/crate, +/obj/item/weapon/crowbar, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLV" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLW" = ( +/obj/machinery/camera{ + c_tag = "Teleporter" + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLY" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bLZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bMa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bMc" = ( +/obj/structure/table, +/obj/item/weapon/crowbar, +/obj/item/clothing/tie/stethoscope, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellow" + }, +/area/medical/medbay) +"bMg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whiteyellowcorner" + }, +/area/medical/medbay) +"bMh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMn" = ( +/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" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bMo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/genetics) +"bMp" = ( +/obj/structure/table/glass, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor2"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bMr" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bMs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bMt" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMu" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/assembly/chargebay) +"bMw" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/assembly/chargebay) +"bMx" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 4 + }, +/area/assembly/robotics) +"bMy" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMz" = ( +/obj/machinery/computer/operating{ + name = "Robotics Operating Computer" + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bMB" = ( +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/assembly/robotics) +"bMD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bME" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bML" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bMN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/explab) +"bMO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMP" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bMU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"bMW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bMY" = ( +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bMZ" = ( +/turf/open/floor/plating, +/area/toxins/shuttledock) +"bNa" = ( +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "7" + }, +/turf/open/floor/plating, +/area/shuttle/outpost) +"bNb" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost_home"; + name = "outpost shuttle bay"; + width = 7 + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "outpost"; + name = "outpost shuttle"; + port_angle = 90; + width = 7 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall3" + }, +/area/shuttle/outpost) +"bNc" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + dir = 2; + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/quartermaster/storage) +"bNd" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bNe" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/folder/yellow, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNj" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bNk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bNl" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "blue" + }, +/area/crew_quarters/heads) +"bNm" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNn" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/coin/gold, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bNq" = ( +/turf/closed/wall, +/area/ai_monitored/nuke_storage) +"bNr" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/ai_monitored/nuke_storage) +"bNs" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bNv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bNw" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/ai_monitored/nuke_storage) +"bNx" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/ai_monitored/nuke_storage) +"bNy" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/teleporter) +"bNA" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel, +/area/teleporter) +"bNC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bND" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"bNF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bNG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bNH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"bNI" = ( +/obj/structure/table, +/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/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNS" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNT" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bNU" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/medical_cloning, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bNY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whiteblue" + }, +/area/medical/genetics) +"bNZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOa" = ( +/obj/structure/window/reinforced, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bOb" = ( +/turf/closed/wall/r_wall, +/area/assembly/chargebay) +"bOc" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/assembly/robotics) +"bOd" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/assembly/robotics) +"bOe" = ( +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOg" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOk" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bOm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOr" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOs" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bOt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/explab) +"bOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"bOy" = ( +/obj/machinery/computer/shuttle/outpost, +/turf/open/floor/plasteel/white, +/area/toxins/shuttledock) +"bOz" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "supply bay"; + width = 12 + }, +/turf/open/space, +/area/space) +"bOA" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bOB" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #3" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bOC" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bOF" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/hallway/primary/central) +"bOG" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 0 + }, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/crew_quarters/heads) +"bOH" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOI" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/stamp/hop, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bON" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bOQ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/ai_monitored/nuke_storage) +"bOR" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/teleporter) +"bOS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOT" = ( +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/teleporter) +"bOU" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/teleporter) +"bOV" = ( +/obj/machinery/shieldwallgen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOW" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/teleporter) +"bOX" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/teleporter) +"bOY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 8 + }, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30; + pixel_y = 0; + pixel_z = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPb" = ( +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPc" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bPd" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/sleeper) +"bPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bPf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera{ + c_tag = "Medbay Hallway"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bPg" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/pill_bottle/mutadone, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPh" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPj" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/disks, +/obj/item/device/radio/headset/headset_medsci, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPk" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 12 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bPm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/research{ + name = "Research Division" + }) +"bPn" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPp" = ( +/obj/machinery/camera{ + c_tag = "Research Division West"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bPy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bPz" = ( +/turf/closed/wall, +/area/crew_quarters/hor) +"bPA" = ( +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPB" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPC" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPD" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/explab) +"bPF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bPG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bPI" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light, +/obj/machinery/status_display{ + density = 0; + pixel_y = -30; + supply_display = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/quartermaster/storage) +"bPK" = ( +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/quartermaster/storage) +"bPL" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bPM" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "QM #4" + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/quartermaster/storage) +"bPN" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPO" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 2; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bPQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/quartermaster/office) +"bPR" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"bPS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bPU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bPV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/hallway/primary/central) +"bPW" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/crew_quarters/heads) +"bPX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPY" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bPZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bQc" = ( +/obj/machinery/button/door{ + id = "vaultshut"; + name = "Vault Shutters Control"; + pixel_x = -25; + pixel_y = -25; + req_access_txt = "1" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQe" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/withwheels/office/dark, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bQg" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "redcorner" + }, +/area/ai_monitored/nuke_storage) +"bQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/ai_monitored/nuke_storage) +"bQi" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/teleporter) +"bQj" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/teleporter) +"bQk" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/teleporter) +"bQl" = ( +/obj/structure/rack, +/obj/item/weapon/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/teleporter) +"bQm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/medbay) +"bQo" = ( +/obj/machinery/door/window/eastleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/medbay) +"bQp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bQs" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQt" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bQu" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bQv" = ( +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQw" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/medical/sleeper) +"bQx" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQy" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQz" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + dir = 2; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bQA" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bQF" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQG" = ( +/obj/structure/disposalpipe/sortjunction{ + sortType = 23 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bQI" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bQU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/disk/tech_disk/gooncode, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQV" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQW" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bQX" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bQY" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/crew_quarters/hor) +"bQZ" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/crew_quarters/hor) +"bRa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/explab) +"bRb" = ( +/turf/closed/wall, +/area/toxins/explab) +"bRc" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/book/manual/experimentor, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRd" = ( +/obj/machinery/computer/rdconsole/experiment, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/toxins/explab) +"bRe" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitecorner" + }, +/area/toxins/explab) +"bRf" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/explab) +"bRg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRi" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bRk" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s5"; + dir = 2 + }, +/area/shuttle/outpost) +"bRm" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall_s9"; + dir = 2 + }, +/area/shuttle/outpost) +"bRn" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bRo" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bRq" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bRs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bRt" = ( +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/supply) +"bRv" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/supply) +"bRw" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/supply) +"bRx" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/heads) +"bRz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"bRB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bRC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "vaultshut"; + layer = 2.9; + name = "Vault Shutters" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Vault Access"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red, +/area/ai_monitored/nuke_storage) +"bRD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South-East"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/sleeper) +"bRF" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = ""; + name = "Surgery Observation"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bRG" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRH" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bRI" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/medical/sleeper) +"bRJ" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRL" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bRN" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Genetics"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRP" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Research"; + req_access_txt = "5; 9" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRS" = ( +/obj/machinery/camera{ + c_tag = "Genetics Research"; + dir = 1; + network = list("SS13","RD"); + pixel_x = 0 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitepurple" + }, +/area/medical/genetics) +"bRT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bRU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRV" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bRW" = ( +/turf/closed/wall/r_wall, +/area/toxins/server) +"bRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bRY" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bSa" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/security/checkpoint/science) +"bSb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bSd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bSe" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "Research Lab Shutter Control"; + pixel_x = 5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/item/weapon/coin/uranium, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSf" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSg" = ( +/obj/machinery/computer/robotics, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bSh" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSi" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/crew_quarters/hor) +"bSj" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bSk" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/hor) +"bSl" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/toxins/explab) +"bSn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSo" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bSp" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30; + pixel_y = 0 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSq" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Quartermaster APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSr" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSs" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSu" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bSv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Dock APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bSz" = ( +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bSC" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/supply) +"bSD" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSE" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "blue" + }, +/area/hallway/primary/central) +"bSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/hallway/primary/central) +"bSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSK" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/hallway/primary/central) +"bSM" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/hallway/primary/central) +"bSN" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSO" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSP" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSQ" = ( +/obj/structure/chair, +/obj/machinery/camera{ + c_tag = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSS" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bST" = ( +/obj/structure/chair, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bSU" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 4; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSV" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bSZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bTa" = ( +/obj/machinery/light, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = 3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTb" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTc" = ( +/obj/machinery/computer/cloning, +/turf/open/floor/plasteel/whiteblue/side, +/area/medical/genetics) +"bTd" = ( +/obj/machinery/clonepod, +/turf/open/floor/plasteel/whiteblue/side{ + tag = "icon-whiteblue (SOUTHEAST)"; + icon_state = "whiteblue"; + dir = 6 + }, +/area/medical/genetics) +"bTe" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTg" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTh" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTi" = ( +/obj/structure/closet/wardrobe/genetics_white, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/genetics) +"bTj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"bTk" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 140; + on = 1; + pressure_checks = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bTm" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bTn" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTo" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Server Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTp" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bTq" = ( +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 25 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/science) +"bTs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTt" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of your own office."; + name = "Research Monitor"; + network = list("RD"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/science) +"bTu" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/science) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bTw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/hor) +"bTx" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/pen/blue, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTz" = ( +/obj/machinery/computer/mecha, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bTA" = ( +/obj/structure/rack, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTB" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTC" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/crew_quarters/hor) +"bTD" = ( +/turf/open/floor/engine, +/area/toxins/explab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTF" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTG" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bTH" = ( +/obj/machinery/computer/cargo, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTK" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bTN" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bTO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j2s"; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bTS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/supply) +"bUa" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUh" = ( +/obj/structure/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUj" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/medical/sleeper) +"bUl" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bUm" = ( +/obj/machinery/light, +/obj/machinery/sleeper{ + icon_state = "sleeper-open"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bUs" = ( +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bUu" = ( +/obj/machinery/airalarm/server{ + dir = 4; + pixel_x = -22; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUv" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Server Walkway"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Server Room"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUx" = ( +/obj/machinery/atmospherics/pipe/manifold{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUy" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUz" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bUA" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/science) +"bUC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUD" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bUE" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/science) +"bUF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bUH" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUM" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bUN" = ( +/obj/machinery/r_n_d/experimentor, +/turf/open/floor/engine, +/area/toxins/explab) +"bUO" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bUP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bUQ" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/status_display{ + density = 0; + pixel_x = -32; + pixel_y = 0; + supply_display = 1 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUS" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUT" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUU" = ( +/obj/structure/table, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUV" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "brown" + }, +/area/quartermaster/qm) +"bUW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bUZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bVa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bVb" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/supply) +"bVd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/supply) +"bVe" = ( +/obj/structure/filingcabinet, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/newscaster{ + hitstaken = 1; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/supply) +"bVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "browncorner" + }, +/area/hallway/primary/central) +"bVg" = ( +/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" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVh" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South-West"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVj" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVm" = ( +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVo" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + icon_state = "direction_med"; + pixel_x = -32; + pixel_y = -24; + tag = "icon-direction_med (EAST)" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + icon_state = "direction_evac"; + pixel_x = -32; + pixel_y = -32; + tag = "icon-direction_evac (EAST)" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway South"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVu" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVw" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVx" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVA" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgery"; + name = "Surgery Shutters" + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bVE" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Recovery Room"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bVF" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVG" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = 30; + pixel_z = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bVI" = ( +/turf/closed/wall, +/area/medical/cmo) +"bVJ" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVK" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bVP" = ( +/obj/machinery/r_n_d/server/core, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 120; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/bluegrid{ + name = "Server Base"; + initial_gas_mix = "o2=0;n2=500;TEMP=80" + }, +/area/toxins/server) +"bVR" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/server) +"bVS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVT" = ( +/obj/machinery/computer/rdservercontrol, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVU" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/toxins/server) +"bVV" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/science) +"bVX" = ( +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVY" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/science) +"bVZ" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/science) +"bWa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWb" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWc" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/item/weapon/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWd" = ( +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/computer/card/minor/rd, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWe" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/signal/toxins, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("SS13","RD") + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "cafeteria" + }, +/area/crew_quarters/hor) +"bWi" = ( +/obj/machinery/camera{ + c_tag = "Experimentor Lab Chamber"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/toxins/explab) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWl" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bWn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bWo" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bWp" = ( +/turf/closed/wall, +/area/storage/tech) +"bWq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/central) +"bWt" = ( +/turf/closed/wall, +/area/janitor) +"bWu" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bWv" = ( +/turf/closed/wall, +/area/maintenance/asmaint) +"bWw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWx" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/hallway/primary/central) +"bWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/weapon/surgicaldrill, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWz" = ( +/obj/structure/table, +/obj/item/weapon/hemostat, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWA" = ( +/obj/structure/table, +/obj/item/weapon/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/circular_saw, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWB" = ( +/obj/structure/table, +/obj/item/weapon/retractor, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 2 + }, +/area/medical/sleeper) +"bWC" = ( +/obj/structure/table, +/obj/item/weapon/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bWD" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/gun/syringe, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/soap/nanotrasen, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bWF" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWG" = ( +/obj/structure/closet/wardrobe/white/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWH" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWJ" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bWL" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/medbay) +"bWM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/cmo) +"bWN" = ( +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWO" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWP" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bWR" = ( +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"bWS" = ( +/turf/closed/wall, +/area/toxins/storage) +"bWT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWV" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bWW" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWX" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bWY" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 32 + }, +/turf/open/space, +/area/space) +"bWZ" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 0; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bXd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Cargo Security APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"bXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/table, +/obj/item/weapon/electronics/apc, +/obj/item/weapon/electronics/airlock, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXl" = ( +/obj/structure/table, +/obj/item/weapon/screwdriver{ + pixel_y = 16 + }, +/obj/item/weapon/wirecutters, +/turf/open/floor/plating, +/area/storage/tech) +"bXm" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXn" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 2 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Tech Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXo" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXp" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bXq" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bXr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bXt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bXu" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/plasteel, +/area/janitor) +"bXv" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXw" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/vehicle/janicart, +/turf/open/floor/plasteel, +/area/janitor) +"bXx" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/janitor) +"bXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bXz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bXA" = ( +/turf/open/floor/plasteel, +/area/janitor) +"bXB" = ( +/obj/machinery/door/window/westleft{ + name = "Janitoral Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/janitor) +"bXC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/janitor) +"bXD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bXF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "surgery"; + name = "Surgery Shutter Control"; + pixel_x = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXH" = ( +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXJ" = ( +/obj/structure/table, +/obj/item/weapon/surgical_drapes, +/obj/item/weapon/razor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"bXK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bXL" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bXM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bXO" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXR" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Medbay Storage"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/medbay) +"bXT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bXW" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/coin/silver, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXX" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/stamp/cmo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXY" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/obj/item/clothing/tie/stethoscope, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bYa" = ( +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYb" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 2; + network = list("Xeno","RD"); + pixel_x = 0 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"bYc" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYd" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/storage) +"bYe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Misc Research APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYg" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bYi" = ( +/turf/closed/wall, +/area/toxins/mixing) +"bYj" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/plasmaresearch, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab West"; + dir = 2; + network = list("SS13","RD"); + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + frequency = 1439; + locked = 0; + pixel_y = 23 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYo" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"bYq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/mixing) +"bYr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/toxins/mixing) +"bYs" = ( +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"bYt" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bYx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/mixing) +"bYy" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/labor) +"bYz" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYC" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/miner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"bYE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/maintenance/aft) +"bYJ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYL" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"bYN" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/open/floor/plating, +/area/storage/tech) +"bYO" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bYQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"bYR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"bYT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bYX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bYY" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"bYZ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/janitor) +"bZa" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZb" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 6 + }, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZc" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"bZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZi" = ( +/obj/structure/table/optable, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bZm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whiteblue" + }, +/area/medical/sleeper) +"bZn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZo" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"bZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bZq" = ( +/obj/structure/table, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"bZt" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"bZv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch{ + pixel_x = 28; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"bZy" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZz" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZA" = ( +/obj/effect/decal/cleanable/oil, +/obj/item/weapon/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"bZD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/storage) +"bZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZF" = ( +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"bZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/mixing) +"bZH" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"bZL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/toxins/mixing) +"bZP" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/mixing) +"bZQ" = ( +/turf/closed/indestructible, +/area/toxins/test_area) +"bZR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"bZS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZT" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"bZU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bZV" = ( +/obj/machinery/computer/shuttle/mining, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"bZW" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZY" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bZZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"caa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cab" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cac" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cad" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/borgupload{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/aiupload{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cae" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 2 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"caf" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"cag" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cah" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/pandemic{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/computer/rdconsole, +/obj/item/weapon/circuitboard/machine/rdserver{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/destructive_analyzer, +/obj/item/weapon/circuitboard/machine/protolathe, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/circuitboard/computer/aifixer, +/obj/item/weapon/circuitboard/computer/teleporter, +/obj/item/weapon/circuitboard/machine/circuit_imprinter, +/obj/item/weapon/circuitboard/machine/mechfab, +/turf/open/floor/plating, +/area/storage/tech) +"cai" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/mining, +/obj/item/weapon/circuitboard/machine/autolathe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/computer/arcade/battle, +/turf/open/floor/plating, +/area/storage/tech) +"caj" = ( +/obj/structure/rack, +/obj/item/weapon/circuitboard/machine/telecomms/processor, +/obj/item/weapon/circuitboard/machine/telecomms/receiver, +/obj/item/weapon/circuitboard/machine/telecomms/server, +/obj/item/weapon/circuitboard/machine/telecomms/bus, +/obj/item/weapon/circuitboard/machine/telecomms/broadcaster, +/obj/item/weapon/circuitboard/computer/message_monitor{ + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cak" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cal" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"cam" = ( +/obj/structure/table, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"can" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/janitor) +"cao" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/janitor) +"cap" = ( +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/restraints/legcuffs/beartrap, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/mousetraps, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"caq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/janitor) +"car" = ( +/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/open/floor/plating, +/area/maintenance/asmaint) +"cas" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cat" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cav" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "Treatment Center APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"caw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitehall" + }, +/area/medical/sleeper) +"cax" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cay" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caz" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "whitebluecorner" + }, +/area/medical/sleeper) +"caA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caB" = ( +/obj/machinery/vending/wallmed{ + pixel_x = 28; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("SS13") + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/gun/syringe, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"caE" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caF" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caG" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv4"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caH" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv4"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"caI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"caL" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Medical Officer"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caN" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"caP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/cmo) +"caQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"caS" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Toxins Storage APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"caY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"caZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cba" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"cbb" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cbe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cbf" = ( +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/mixing) +"cbg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"cbi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cbj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cbk" = ( +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cbl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("Toxins"); + pixel_x = 30; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cbm" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cbn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cbo" = ( +/obj/item/weapon/ore/iron, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbp" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cbq" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cbs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbt" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cbu" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"cbv" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"cbx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cby" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbA" = ( +/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 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cbE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cbG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/janitor) +"cbI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/janitor) +"cbJ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbL" = ( +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 25 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile{ + health = 35 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cbQ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbR" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbS" = ( +/obj/machinery/vending/wallmed{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Surgery Operating"; + dir = 1; + network = list("SS13"); + pixel_x = 22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/sleeper) +"cbU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/APlus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BMinus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/OPlus, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cbV" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbW" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbX" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbY" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cbZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cca" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccb" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 0; + pixel_y = -30; + pixel_z = 0 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccc" = ( +/obj/structure/table, +/obj/item/weapon/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/brute, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"ccd" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/sleeper) +"cce" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccg" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cch" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cci" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ccj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"cck" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weapon/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/cartridge/medical, +/obj/item/weapon/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccl" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"ccn" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "barber" + }, +/area/medical/cmo) +"cco" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"ccp" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ccq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"ccs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/toxins/storage) +"cct" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"ccu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccw" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/research{ + name = "Research Division" + }) +"ccx" = ( +/obj/item/device/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccA" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"ccD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"ccI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/mixing) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ccK" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible, +/area/toxins/test_area) +"ccL" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccM" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 1; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccN" = ( +/obj/structure/chair, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"ccO" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock"; + req_access_txt = "48" + }, +/obj/docking_port/mobile{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining"; + name = "mining shuttle"; + port_angle = 90; + width = 7 + }, +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating, +/area/shuttle/labor) +"ccP" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"ccQ" = ( +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ccS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"ccU" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"ccW" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"ccX" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/storage/tech) +"ccY" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/cloning{ + pixel_x = 0 + }, +/obj/item/weapon/circuitboard/computer/med_data{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/circuitboard/machine/clonescanner, +/obj/item/weapon/circuitboard/machine/clonepod, +/obj/item/weapon/circuitboard/computer/scan_consolenew, +/turf/open/floor/plating, +/area/storage/tech) +"ccZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cda" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/computer/powermonitor{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/computer/stationalert{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/computer/atmos_alert{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdb" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cdc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cde" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdm" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdn" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/sleeper) +"cds" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cdt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cdv" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/shieldwallgen{ + req_access = list(55) + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cdw" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdx" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdy" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdA" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cdB" = ( +/turf/closed/wall, +/area/toxins/xenobiology) +"cdC" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/storage) +"cdD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"cdG" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdH" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdI" = ( +/obj/item/device/assembly/signaler{ + pixel_x = 0; + pixel_y = 8 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/device/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdJ" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 0 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/item/device/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdK" = ( +/obj/item/device/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/assembly/timer{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdL" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdN" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cdO" = ( +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/mixing) +"cdP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/toxins/mixing) +"cdQ" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/mixing) +"cdR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/toxins/mixing) +"cdS" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/toxins/mixing) +"cdT" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdU" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cdV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdW" = ( +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cdX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cdY" = ( +/obj/item/weapon/ore/silver, +/obj/item/weapon/ore/silver, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cdZ" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/quartermaster/miningdock) +"cea" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/closed/wall, +/area/quartermaster/miningdock) +"ceb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "brown" + }, +/area/quartermaster/miningdock) +"cec" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/pickaxe{ + pixel_x = 5 + }, +/obj/item/weapon/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ced" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cee" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"cef" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/storage/tech) +"cej" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/obj/item/weapon/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/storage/tech) +"cek" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/storage/tech) +"cel" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cem" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cen" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/tech) +"ceo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ceq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cer" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"ces" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"cet" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/asmaint) +"ceu" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cev" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cew" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cex" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cey" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cez" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/sign/securearea{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j1s"; + sortType = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceF" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/medbay) +"ceG" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceH" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room 2"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/medbay) +"ceK" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceL" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "CM Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/cmo) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ceP" = ( +/obj/item/weapon/wrench, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceQ" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Xeno"); + pixel_x = 0; + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceR" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 0; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceS" = ( +/obj/machinery/door/window/southleft{ + name = "Test Chamber"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceU" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ceW" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/toxins/xenobiology) +"ceX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"ceZ" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cfa" = ( +/obj/structure/sign/fire, +/turf/closed/wall, +/area/medical/research{ + name = "Research Division" + }) +"cfb" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/mixing) +"cfc" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfd" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/toxins/mixing) +"cff" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plating, +/area/toxins/mixing) +"cfg" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfh" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfi" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/toxins/test_area) +"cfj" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + light = null; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien{ + anchored = 1 + }, +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cfk" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/labor) +"cfl" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/labor) +"cfm" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cfp" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/storage/tech) +"cfq" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/item/weapon/stock_parts/subspace/filter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfr" = ( +/obj/structure/table, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/open/floor/plating, +/area/storage/tech) +"cfs" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/device/t_scanner, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/storage/tech) +"cft" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/storage/tech) +"cfu" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = 0; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfv" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"cfw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cfA" = ( +/turf/closed/wall/r_wall, +/area/atmos) +"cfB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfC" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfE" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/atmos) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/atmos) +"cfG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cfJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfK" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/clothing/tie/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfL" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "medpriv1"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfN" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "medpriv1"; + name = "privacy door" + }, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/medbay) +"cfQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay) +"cfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cfV" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfX" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cfZ" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cga" = ( +/obj/machinery/processor{ + desc = "A machine used to process slimes and retrieve their extract."; + name = "Slime Processor" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgb" = ( +/obj/machinery/smartfridge/extract, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgc" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgd" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cge" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgf" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"cgh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/research{ + name = "Research Division" + }) +"cgi" = ( +/obj/machinery/door/poddoor{ + id = "mixvent2"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgk" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/mixing) +"cgm" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor2"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller{ + airpump_tag = "tox_airlock_pump2"; + exterior_door_tag = "tox_airlock_exterior2"; + id_tag = "tox_airlock_control"; + interior_door_tag = "tox_airlock_interior2"; + pixel_x = -24; + pixel_y = 0; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cgo" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "mix to port" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cgp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/mixing) +"cgq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgr" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cgs" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cgu" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/shuttle/labor) +"cgv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cgw" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/hallway/primary/aft) +"cgx" = ( +/turf/closed/wall, +/area/atmos) +"cgy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel, +/area/atmos) +"cgz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cgD" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/atmos) +"cgE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cgF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "wloop_atm_meter"; + name = "Waste Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North East" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 2 + }, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "dloop_atm_meter"; + name = "Distribution Loop" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Distro"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cgL" = ( +/turf/open/floor/plasteel, +/area/atmos) +"cgM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgN" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cgO" = ( +/turf/closed/wall, +/area/medical/virology) +"cgP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "39" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cgQ" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/medical/virology) +"cgR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cha" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"chb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "whitehall" + }, +/area/medical/research{ + name = "Research Division" + }) +"chc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/research{ + name = "Research Division" + }) +"chd" = ( +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"che" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior2"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chf" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump2" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chg" = ( +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1449; + glass = 1; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior2"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"chh" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chi" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"chj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/mixing) +"chk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chl" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"chn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cho" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"chq" = ( +/turf/closed/wall, +/area/construction) +"chr" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction) +"chs" = ( +/turf/open/floor/plating, +/area/construction) +"cht" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/construction) +"chu" = ( +/turf/open/floor/plasteel, +/area/construction) +"chv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/construction) +"chw" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"chx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring"; + dir = 2; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/atmos) +"chB" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"chF" = ( +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chG" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Distro"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"chM" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"chN" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/atmos) +"chO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"chP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/blood/AMinus, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/item/weapon/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chQ" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Virology Break Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chS" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chT" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warnwhite" + }, +/area/medical/virology) +"chU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chV" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 5 + }, +/area/medical/virology) +"chW" = ( +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chX" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"chZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cia" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/toxins/xenobiology) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cic" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cid" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cie" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cig" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cih" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cij" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cik" = ( +/turf/open/floor/plasteel{ + icon_state = "whitehall"; + dir = 1 + }, +/area/medical/research{ + name = "Research Division" + }) +"cil" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker2"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/toxins/mixing) +"cim" = ( +/obj/structure/sign/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/mixing) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/door{ + id = "mixvent2"; + name = "Mixing Room Vent Control"; + pixel_x = -25; + pixel_y = 5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "mixingsparker2"; + pixel_x = -25; + pixel_y = -5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhitecorner" + }, +/area/toxins/mixing) +"cio" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/toxins/mixing) +"cip" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/mixing) +"ciq" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless{ + dir = 2; + icon_state = "warnplate" + }, +/area/toxins/test_area) +"cir" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"cis" = ( +/obj/machinery/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction) +"cit" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/construction) +"ciu" = ( +/obj/machinery/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"civ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"ciw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "loadingarea" + }, +/area/hallway/primary/aft) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "loadingarea" + }, +/area/atmos) +"ciA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciB" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciD" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ciE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/atmos) +"ciF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/autolathe/atmos, +/turf/open/floor/plasteel, +/area/atmos) +"ciG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/atmos) +"ciH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"ciI" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciJ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Waste In"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciN" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"ciO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Mix"; + on = 0 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ciQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "green" + }, +/area/atmos) +"ciR" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ciS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"ciT" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"ciU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciW" = ( +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ciX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ciY" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ciZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cja" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjc" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/medical/virology) +"cjd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cjf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cjg" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cji" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjj" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjk" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjn" = ( +/obj/structure/table, +/obj/item/weapon/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjo" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjp" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjq" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cjs" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cjt" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cju" = ( +/turf/closed/wall, +/area/toxins/misc_lab) +"cjv" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjw" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cjx" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjy" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjz" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cjA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cjC" = ( +/obj/item/weapon/shard, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cjD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjE" = ( +/obj/structure/girder, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjF" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fsmaint2) +"cjG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjH" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjM" = ( +/obj/structure/closet/crate, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/construction) +"cjO" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"cjQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"cjR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cjU" = ( +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 5 + }, +/area/hallway/primary/aft) +"cjV" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cjW" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cka" = ( +/obj/machinery/computer/atmos_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Waste Loop") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"ckb" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckd" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cki" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckl" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ckm" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 4 + }, +/area/atmos) +"ckn" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/atmos) +"ckp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor"; + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"ckr" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cks" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckt" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cku" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"ckw" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warnwhite" + }, +/area/medical/virology) +"ckx" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cky" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckz" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "warnwhite"; + dir = 1 + }, +/area/toxins/xenobiology) +"ckB" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch{ + pixel_x = -20; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckC" = ( +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckD" = ( +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"ckE" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckF" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Testing Lab North"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + req_access = null + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ckK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"ckM" = ( +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"ckN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ckO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckQ" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"ckX" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction) +"ckY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/construction) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cla" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"clb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "left"; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"clc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cle" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clf" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"clg" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/atmos) +"cli" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cll" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_atmos{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cln" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"clr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Unfiltered to Mix"; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cls" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "green"; + dir = 6 + }, +/area/atmos) +"clt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"clu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space) +"clv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "waste_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "vacuum floor"; + initial_gas_mix = "o2=0.01;n2=0.01" + }, +/area/atmos) +"clw" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cly" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"clB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"clC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clE" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"clI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"clJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"clK" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"clM" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/electropack, +/obj/item/device/healthanalyzer, +/obj/item/device/assembly/signaler, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"clN" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"clR" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark{ + name = "blobstart" + }, +/obj/structure/target_stake, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"clS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"clT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"clU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/rack, +/obj/item/clothing/head/cone, +/obj/item/weapon/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/aft) +"clW" = ( +/obj/item/weapon/storage/secure/safe, +/turf/closed/wall, +/area/maintenance/aft) +"clX" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clY" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + tag = "icon-intact (EAST)"; + icon_state = "intact"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + tag = "icon-connector_map (WEST)"; + icon_state = "connector_map"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cma" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmc" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cme" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmf" = ( +/obj/machinery/camera{ + c_tag = "Construction Area"; + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"cmg" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/construction) +"cmh" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating, +/area/construction) +"cmi" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/construction) +"cmj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cmk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cml" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + layer = 2.9; + name = "atmos blast door" + }, +/turf/open/floor/plating, +/area/atmos) +"cmm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/weapon/tank/internals/emergency_oxygen{ + pixel_x = -8; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cmo" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/atmos) +"cmp" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/atmos) +"cmq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/obj/item/device/t_scanner, +/turf/open/floor/plasteel, +/area/atmos) +"cmr" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cmt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmv" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cmA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmH" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Virology APC"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology Module" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmI" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cmJ" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmL" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cmN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cmO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cmP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + locked = 0; + pixel_x = -23; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cmR" = ( +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmS" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmU" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/device/assembly/timer{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cmV" = ( +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmW" = ( +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/toxins/misc_lab) +"cmY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cmZ" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses/garb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cna" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnb" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/clothing/tie/black, +/obj/item/clothing/tie/red, +/obj/item/clothing/mask/bandana/red, +/obj/item/clothing/mask/bandana/skull, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cne" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cng" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cni" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/aft) +"cnj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/aft) +"cnl" = ( +/obj/machinery/power/apc{ + name = "Aft Hall APC"; + dir = 8; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cnm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnn" = ( +/obj/item/weapon/crowbar, +/obj/item/weapon/wrench, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "caution" + }, +/area/hallway/primary/aft) +"cno" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/atmos) +"cnp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/atmos) +"cnq" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6; + initialize_directions = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnt" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cnx" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 5 + }, +/area/atmos) +"cny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2O Tanks" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cnA" = ( +/turf/open/floor/engine/n2o, +/area/atmos) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/medical/virology) +"cnE" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cnI" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnK" = ( +/obj/structure/disposalpipe/segment, +/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/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cnL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cnM" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cnO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10; + pixel_x = 0; + initialize_directions = 10 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cnR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnS" = ( +/obj/structure/table, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cnT" = ( +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnU" = ( +/obj/structure/target_stake, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cnV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cnW" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnX" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/poster/legit, +/obj/item/weapon/poster/legit, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/storage/box/cups, +/turf/open/floor/plating, +/area/maintenance/aft) +"coa" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cob" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coc" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cod" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coe" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cof" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cog" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"coj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cok" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction) +"col" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Telecoms Monitoring APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"com" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"con" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 8 + }, +/area/atmos) +"cop" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"coq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cor" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/atmos) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cou" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to External"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cov" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cox" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel, +/area/atmos) +"coy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Pure to Port"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/atmos) +"coD" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 4 + }, +/area/atmos) +"coE" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coF" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/atmos) +"coG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"coH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"coK" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coM" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"coN" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"coO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation A"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coP" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"coQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_virology{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"coR" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall, +/area/toxins/xenobiology) +"coS" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coT" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"coU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coV" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"coW" = ( +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"coX" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"coZ" = ( +/obj/machinery/camera{ + c_tag = "Testing Firing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpa" = ( +/obj/structure/target_stake, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"cpb" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall, +/area/maintenance/aft) +"cpc" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpd" = ( +/obj/item/weapon/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cpg" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cph" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cpk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "caution" + }, +/area/atmos) +"cpl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "caution"; + dir = 4 + }, +/area/atmos) +"cpo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/atmos) +"cpp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "External to Filter"; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/atmos) +"cps" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/atmos) +"cpt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/atmos) +"cpu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cpw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpx" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "escape"; + dir = 6 + }, +/area/atmos) +"cpz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/atmos) +"cpA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cpB" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpC" = ( +/obj/structure/table, +/obj/item/weapon/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cpD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/effect/landmark{ + name = "revenantspawn" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cpH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cpJ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cpK" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpM" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cpP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/toxins/misc_lab) +"cpQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cpR" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cpS" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/maintenance/aft) +"cpT" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/aft) +"cpU" = ( +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpW" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "Telecoms Server APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpY" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cpZ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqa" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqb" = ( +/obj/machinery/computer/message_monitor, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cqc" = ( +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecoms)"; + pixel_x = 0; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cqe" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cqg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cqh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmos blast door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/atmos) +"cqj" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cqk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cql" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics West"; + dir = 8; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air to Port"; + on = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cqo" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cqp" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqr" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Virologist" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqs" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/pen/red, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"cqt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"cqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqv" = ( +/obj/structure/table, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cqx" = ( +/obj/effect/landmark{ + name = "revenantspawn" + }, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqy" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cqA" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqB" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqC" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/taperecorder{ + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqD" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqE" = ( +/obj/structure/rack, +/obj/item/weapon/wrench, +/obj/item/weapon/crowbar, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Moniter"; + network = list("Test"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet, +/obj/item/pipe{ + dir = 4; + icon_state = "mixer"; + name = "gas mixer fitting"; + pipe_type = 14 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cqH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cqJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/weapon/paper/range, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHEAST)"; + icon_state = "warnplate"; + dir = 6 + }, +/area/toxins/misc_lab) +"cqK" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plating{ + tag = "icon-warnplate (SOUTHWEST)"; + icon_state = "warnplate"; + dir = 10 + }, +/area/toxins/misc_lab) +"cqL" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cqM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqN" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cqO" = ( +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/aft) +"cqP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/pill/mannitol, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqQ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqR" = ( +/turf/closed/wall, +/area/maintenance/strangeroom) +"cqS" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cqT" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqU" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqW" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqX" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cqY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cqZ" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cra" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crc" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "escape" + }, +/area/atmos) +"cre" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/atmos) +"crf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/atmos) +"crg" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/atmos) +"crh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 9 + }, +/area/security/checkpoint/engineering) +"cri" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 1 + }, +/area/security/checkpoint/engineering) +"crj" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 5 + }, +/area/security/checkpoint/engineering) +"crk" = ( +/obj/structure/fireaxecabinet{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crl" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"crm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"crn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/atmos) +"cro" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"crp" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/atmos) +"crq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crr" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Plasma Tank" + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crs" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"crt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cru" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"crv" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + anchored = 1; + density = 0; + pixel_x = -30 + }, +/obj/item/weapon/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cry" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/deathsposal{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "whitegreen" + }, +/area/medical/virology) +"crz" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/medical/virology) +"crA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"crB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crC" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"crD" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"crE" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crF" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crG" = ( +/obj/structure/grille, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"crH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crI" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"crJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crL" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"crM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"crO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (EAST)"; + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"crP" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crQ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"crR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/structure/kitchenspike, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"crT" = ( +/obj/effect/decal/cleanable/shreds, +/obj/machinery/power/apc{ + dir = 1; + name = "Worn Out APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"crU" = ( +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crV" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"crW" = ( +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crX" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crY" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"crZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csa" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"csb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csd" = ( +/obj/structure/table, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csn" = ( +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/atmos) +"cso" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/atmos) +"csp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"csq" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "tox_in"; + name = "Toxin Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/atmos) +"csr" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor"; + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"css" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cst" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"csu" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csv" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "whitegreen" + }, +/area/medical/virology) +"csw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"csx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology South"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"csz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + unacidable = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"csB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"csD" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"csE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csF" = ( +/obj/structure/rack, +/obj/item/weapon/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"csG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"csH" = ( +/obj/structure/rack, +/obj/item/weapon/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csK" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"csL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (SOUTHWEST)"; + icon_state = "tracks"; + dir = 10 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"csN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (EAST)"; + icon_state = "tracks"; + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"csP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks{ + tag = "icon-tracks (NORTHEAST)"; + icon_state = "tracks"; + dir = 5 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"csQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csS" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"csT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csV" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/tcommsat/computer) +"csW" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csX" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"csY" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctb" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"ctc" = ( +/turf/closed/wall, +/area/engine/break_room) +"ctd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cte" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"ctg" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cth" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cti" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 8 + }, +/area/security/checkpoint/engineering) +"ctj" = ( +/obj/structure/chair/withwheels/office/dark, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ctk" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 4 + }, +/area/security/checkpoint/engineering) +"ctl" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/item/weapon/wrench, +/turf/open/floor/plasteel, +/area/atmos) +"cto" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"ctp" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"ctq" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"ctr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"cts" = ( +/turf/open/floor/engine{ + name = "plasma floor"; + initial_gas_mix = "o2=0;n2=0;plasma=70000;co2=0" + }, +/area/atmos) +"ctt" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"ctu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"ctx" = ( +/obj/machinery/airalarm{ + frequency = 1439; + pixel_y = 23 + }, +/obj/item/weapon/wrench, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 9 + }, +/area/maintenance/asmaint) +"cty" = ( +/obj/machinery/atmospherics/components/binary/valve/open{ + tag = "icon-mvalve_map (EAST)"; + icon_state = "mvalve_map"; + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/maintenance/asmaint) +"ctz" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint) +"ctA" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"ctC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctD" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"ctE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"ctF" = ( +/obj/item/device/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"ctG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"ctH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 1 + }, +/area/toxins/misc_lab) +"ctI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warningcorner (WEST)"; + icon_state = "warningcorner"; + dir = 8 + }, +/area/toxins/misc_lab) +"ctJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctK" = ( +/obj/structure/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"ctM" = ( +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"ctN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/r_arm, +/obj/item/weapon/shard, +/obj/item/weapon/hatchet, +/obj/item/weapon/staplegun, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctO" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/bodypart/l_leg, +/obj/item/bodypart/l_arm, +/obj/item/weapon/restraints/handcuffs, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"ctQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-gcircuitoff"; + icon_state = "gcircuitoff" + }, +/area/maintenance/strangeroom) +"ctR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"ctS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctT" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ctU" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/bluegrid{ + dir = 8; + icon_state = "vault"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"ctZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cua" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cub" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cuc" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Server Room"; + req_access_txt = "61" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 5 + }, +/area/tcommsat/computer) +"cud" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/tcommsat/computer) +"cue" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cuf" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Telecoms Monitoring"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cug" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cui" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cuj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cuk" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cul" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cum" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"cun" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cuo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cup" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cuq" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/security/checkpoint/engineering) +"cur" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/security/checkpoint/engineering) +"cus" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/structure/reagent_dispensers/peppertank{ + anchored = 1; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/security/checkpoint/engineering) +"cut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cuu" = ( +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuv" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/atmos) +"cux" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cuy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuz" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuA" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuF" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 10 + }, +/area/maintenance/asmaint) +"cuG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating{ + dir = 2; + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cuH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 6 + }, +/area/maintenance/asmaint) +"cuI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cuK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cuM" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuN" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuS" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/toxins/misc_lab) +"cuT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/toxins/misc_lab) +"cuU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Testing Lab APC"; + pixel_x = 26; + pixel_y = 0 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cuV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cuW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cuX" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuY" = ( +/obj/structure/table, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cuZ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel{ + tag = "icon-damaged5"; + icon_state = "damaged5" + }, +/area/maintenance/strangeroom) +"cva" = ( +/obj/machinery/camera{ + c_tag = "Telecoms Server Room"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cvb" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvc" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cvd" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/tcommsat/computer) +"cve" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecoms Admin"; + departmentType = 5; + name = "Telecoms RC"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvh" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + icon_state = "pipe-j2s"; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "cautioncorner" + }, +/area/hallway/primary/aft) +"cvi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cvk" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cvn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cvp" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/plasteel, +/area/atmos) +"cvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/atmos) +"cvr" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/atmos) +"cvs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvt" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/weapon/cigbutt, +/turf/open/floor/plasteel, +/area/atmos) +"cvu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cvv" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump"; + on = 0 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/atmos) +"cvw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvx" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics CO2 Tank" + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvy" = ( +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cvz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvD" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cvG" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2-1"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvH" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_x = 0; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/toxins/xenobiology) +"cvI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/xenobiology) +"cvJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/engine, +/area/toxins/xenobiology) +"cvK" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("Test","RD"); + pixel_x = 0 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/toxins/misc_lab) +"cvL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 4 + }, +/area/toxins/misc_lab) +"cvM" = ( +/obj/machinery/camera{ + c_tag = "Testing Lab South"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvN" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvO" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cvP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cvQ" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cvS" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cvT" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/plasteel{ + tag = "icon-damaged2"; + icon_state = "damaged2" + }, +/area/maintenance/strangeroom) +"cvV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + tag = "icon-damaged1"; + icon_state = "damaged1" + }, +/area/maintenance/strangeroom) +"cvW" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28; + shattered = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cvX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cvY" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/chem_pile, +/turf/open/floor/plating, +/area/maintenance/strangeroom) +"cvZ" = ( +/obj/machinery/message_server, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwa" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwb" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cwc" = ( +/obj/structure/table, +/obj/item/device/multitool, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cwd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwe" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cwf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cwg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/hallway/primary/aft) +"cwl" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cwm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"cwn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwt" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cwu" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cwv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cww" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cwy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cwz" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/atmos) +"cwA" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor"; + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwB" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cwD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwF" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwP" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/toxins/xenobiology) +"cwQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cwR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwS" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "floorgrime" + }, +/area/toxins/misc_lab) +"cwT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cwU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwV" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cwW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cwX" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/spirit_board, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/strangeroom) +"cxd" = ( +/obj/structure/closet/crate/secure, +/obj/item/weapon/restraints/handcuffs, +/obj/item/weapon/pen, +/obj/item/weapon/paper{ + info = "I can't believe that NanoTrasen's loyalty implants work so well. They've almost entirely stopped either of these two officialls from giving my any information on the Fenrir Incident. Almost. One of them actually gave me the location of an abandoned station where I may find some new information regarding it. If this is true, that'll bring me one step closer to exposing NanoTrasen as the true cause for the flashpoint between New-Russian forces and Fenririan settlers on Fenrir. All I've got to do is get hack an escape pod so that it may bring me as close as possible to the station, although it's unlikely it'll get me too close with the amount of fuel they have. I must be going soon, security is going to be looking everywhere for these two soon enough."; + name = "Strange Paper" + }, +/turf/open/floor/plasteel{ + tag = "icon-damaged4"; + icon_state = "damaged4" + }, +/area/maintenance/strangeroom) +"cxe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/strangeroom) +"cxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gibber, +/turf/open/floor/plasteel, +/area/maintenance/strangeroom) +"cxg" = ( +/obj/machinery/vending/cart{ + desc = "The front of this machine is covered in so much dirt and grime you can't possibly guess its age. It looks like it might be a vending machine of some sort."; + icon_state = "cart-broken"; + name = "Old Machine"; + product_slogans = "Bzzzt..-6-4-!"; + products = list(/obj/item/weapon/cartridge/medical = 7, /obj/item/weapon/cartridge/engineering = 6, /obj/item/weapon/cartridge/security = 2, /obj/item/weapon/cartridge/janitor = 4, /obj/item/weapon/cartridge/signal/toxins = 5, /obj/item/device/pda/heads = 0, /obj/item/weapon/cartridge/captain = 0, /obj/item/weapon/cartridge/quartermaster = 0) + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb{ + tag = "icon-cobweb2"; + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel{ + tag = "icon-platingdmg1"; + icon_state = "platingdmg1" + }, +/area/maintenance/strangeroom) +"cxh" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxi" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxj" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxk" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cxl" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/tcommsat/computer) +"cxm" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxt" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cxw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxx" = ( +/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 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxC" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cxD" = ( +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/atmos) +"cxF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cxG" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + pixel_x = 0; + pixel_y = 0; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxI" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1; + filter_type = 3; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cxJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/atmos) +"cxK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "co2_in"; + pixel_y = 1 + }, +/turf/open/floor/engine{ + name = "co2 floor"; + initial_gas_mix = "o2=0;n2=0;co2=50000" + }, +/area/atmos) +"cxL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxP" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cxW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cxY" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cxZ" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyc" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cye" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyj" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid{ + name = "Mainframe Base"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyk" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cyl" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/bluegrid{ + icon_state = "dark"; + name = "Mainframe Floor"; + initial_gas_mix = "o2=0;n2=100;TEMP=80" + }, +/area/tcommsat/server) +"cym" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cyn" = ( +/obj/structure/table, +/obj/item/device/radio/off, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/tcommsat/computer) +"cyo" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyp" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyq" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cyr" = ( +/obj/structure/sign/securearea{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyt" = ( +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyu" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyv" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/hallway/primary/aft) +"cyx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/break_room) +"cyy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyB" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cyF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cyG" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"cyI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cyJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/atmos) +"cyK" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Incinerator APC"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cyL" = ( +/obj/structure/sign/fire{ + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/maintenance/asmaint) +"cyN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyP" = ( +/obj/structure/sign/biohazard, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint) +"cyS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cyU" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyV" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cyX" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "bot" + }, +/area/toxins/misc_lab) +"cyY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/toxins/misc_lab) +"cyZ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cza" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czc" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czd" = ( +/obj/item/clothing/under/rank/vice, +/obj/structure/closet, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czg" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"czi" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czj" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"czk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/chiefs_office) +"czl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow"; + dir = 10 + }, +/area/engine/break_room) +"czm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/break_room) +"czn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "yellow" + }, +/area/engine/break_room) +"czo" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 2; + filter_type = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"czp" = ( +/turf/closed/wall, +/area/maintenance/incinerator) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/incinerator) +"czr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"czs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/toy/minimeteor, +/obj/item/weapon/poster/contraband, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czt" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/reagent_containers/food/snacks/donkpocket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/weapon/c_tube, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czw" = ( +/obj/structure/mopbucket, +/obj/item/weapon/caution, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"czx" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/toxins/misc_lab) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/toxins/misc_lab) +"czB" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting equipment"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"czD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/maintenance/portsolar) +"czE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"czF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"czG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/aft) +"czH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czI" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czJ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czN" = ( +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warnwhite" + }, +/area/engine/chiefs_office) +"czO" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czQ" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czS" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 4; + name = "CE Office APC"; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"czT" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/engineering) +"czV" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/engineering) +"czW" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/atmos) +"czX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/atmos) +"czY" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/atmos) +"czZ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAa" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4; + filter_type = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4; + initialize_directions = 12 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/atmos) +"cAd" = ( +/obj/machinery/chem_master, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAe" = ( +/obj/structure/chair/withwheels/wheelchair, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/kitchenspike_frame, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAh" = ( +/obj/structure/table/wood, +/obj/item/weapon/staplegun, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAi" = ( +/obj/structure/table/wood, +/obj/item/weapon/retractor/alien, +/obj/item/weapon/reagent_containers/glass/bowl, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cAj" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint) +"cAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cAq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAw" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cAy" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAz" = ( +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cAD" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cAE" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAF" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAG" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cAH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/portsolar) +"cAI" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAP" = ( +/obj/machinery/computer/atmos_alert, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/lighter, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cAT" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cAU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAW" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cAX" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 10 + }, +/area/atmos) +"cAY" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "n2_in"; + name = "Nitrogen Supply Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "red" + }, +/area/atmos) +"cAZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "red"; + dir = 6 + }, +/area/atmos) +"cBa" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/atmos) +"cBb" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 10 + }, +/area/atmos) +"cBc" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1441; + input_tag = "o2_in"; + name = "Oxygen Supply Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + dir = 0; + icon_state = "blue" + }, +/area/atmos) +"cBd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "blue"; + dir = 6 + }, +/area/atmos) +"cBe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 10 + }, +/area/atmos) +"cBf" = ( +/obj/machinery/computer/atmos_control/tank{ + frequency = 1443; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/turf/open/floor/plasteel{ + icon_state = "arrival" + }, +/area/atmos) +"cBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air Outlet Pump"; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "arrival"; + dir = 6 + }, +/area/atmos) +"cBh" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/atmos) +"cBi" = ( +/turf/open/floor/plating, +/area/atmos) +"cBj" = ( +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBk" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken6"; + icon_state = "wood-broken6" + }, +/area/maintenance/incinerator) +"cBl" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBm" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken5"; + icon_state = "wood-broken5" + }, +/area/maintenance/incinerator) +"cBn" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/lighter/greyscale, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/asmaint) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBq" = ( +/obj/structure/chair, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBr" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cBv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBB" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBE" = ( +/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{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cBG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/port) +"cBH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBI" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBK" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cBL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cBR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + icon_state = "pipe-j2s"; + sortType = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBZ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCa" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCd" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCe" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cCg" = ( +/turf/closed/wall, +/area/engine/engineering) +"cCh" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCi" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCj" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCk" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/coin/plasma, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCn" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cCo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCq" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCr" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCt" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCu" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/atmos) +"cCw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/atmos) +"cCx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCy" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cCC" = ( +/obj/structure/table, +/obj/item/weapon/cartridge/medical, +/obj/item/pizzabox/mushroom, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCE" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cCF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCH" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cCJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCN" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCO" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/switchblade{ + force = 12 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cCQ" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cCR" = ( +/obj/machinery/power/solar_control{ + id = "portsolar"; + name = "Aft Port Solar Control"; + track = 0 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCS" = ( +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Aft Port Solar APC"; + pixel_x = 23; + pixel_y = 2 + }, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/portsolar) +"cCU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCY" = ( +/obj/effect/landmark{ + name = "blobstart" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cCZ" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cDa" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cDb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDd" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDi" = ( +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/computer/card/minor/ce, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDj" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDl" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engineering) +"cDp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space, +/area/space) +"cDq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space, +/area/space) +"cDr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space, +/area/space) +"cDs" = ( +/obj/structure/sign/science, +/turf/closed/wall, +/area/maintenance/incinerator) +"cDt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDv" = ( +/obj/structure/table/wood, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/random, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDw" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/tie/black, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDx" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDz" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cDA" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/shard, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDB" = ( +/obj/structure/disposalpipe/segment, +/obj/item/weapon/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cDC" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDD" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDE" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cDG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cDH" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDI" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cDJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cDM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cDR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDU" = ( +/obj/item/weapon/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/item/weapon/cartridge/atmos, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cDV" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/atmos) +"cDY" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_in_meter"; + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cDZ" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + frequency = 1443; + id_tag = "mair_out_meter"; + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/atmos) +"cEa" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEb" = ( +/obj/item/clothing/head/cone, +/obj/item/weapon/restraints/handcuffs/cable/orange, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Biohazard Disposals"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cEf" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cEg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEk" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEl" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEm" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEn" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cEo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEp" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEs" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEA" = ( +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/weapon/circuitboard/computer/solar_control, +/obj/item/weapon/electronics/tracker, +/obj/item/weapon/paper/solar, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cEB" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cED" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEE" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEF" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "neutralfull" + }, +/area/engine/chiefs_office) +"cEG" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/chiefs_office) +"cEH" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/chiefs_office) +"cEI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "yellow" + }, +/area/engine/engineering) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEM" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cEO" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEP" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cEQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cER" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1443; + id = "air_in" + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cES" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + frequency = 1443; + icon_state = "vent_map"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + on = 1; + pressure_checks = 2; + pump_direction = 0 + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cEU" = ( +/obj/machinery/iv_drip, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEV" = ( +/turf/open/floor/wood{ + tag = "icon-wood-broken7"; + icon_state = "wood-broken7" + }, +/area/maintenance/incinerator) +"cEW" = ( +/obj/item/clothing/suit/toggle/labcoat/mad, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEX" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cEY" = ( +/obj/structure/table/wood, +/obj/item/organ/internal/butt/xeno, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFa" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + tag = "icon-manifold (NORTH)"; + icon_state = "manifold"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cFe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFf" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFl" = ( +/obj/structure/rack{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cFr" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFs" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFu" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cFv" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cFw" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cFx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cFy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall, +/area/engine/engineering) +"cFz" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cFC" = ( +/obj/structure/table, +/obj/item/weapon/crowbar/large, +/obj/item/weapon/storage/box/lights/mixed, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFD" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/wrench, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFE" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFF" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cFJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cFK" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics N2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFL" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFM" = ( +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cFN" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics O2 Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFO" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFP" = ( +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cFQ" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Air-mix Tank"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFR" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFS" = ( +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cFT" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFU" = ( +/obj/item/weapon/kitchen/knife, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFV" = ( +/obj/structure/table/wood, +/obj/item/weapon/scalpel, +/obj/item/weapon/wirecutters, +/obj/item/organ/brain/alien, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cFW" = ( +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFX" = ( +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGb" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGe" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGh" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGi" = ( +/obj/effect/landmark{ + name = "xeno_spawn"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + tag = "icon-platingdmg3"; + icon_state = "platingdmg3" + }, +/area/maintenance/asmaint2) +"cGj" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGl" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/asmaint2) +"cGn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGo" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGp" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cGq" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cGr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "bot" + }, +/area/engine/engineering) +"cGs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cGt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/securearea{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGE" = ( +/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/open/floor/plasteel, +/area/engine/engineering) +"cGF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cGH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cGI" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "n2 floor"; + initial_gas_mix = "o2=0;n2=100000" + }, +/area/atmos) +"cGJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "o2 floor"; + initial_gas_mix = "o2=100000;n2=0" + }, +/area/atmos) +"cGK" = ( +/obj/machinery/light/small, +/turf/open/floor/engine{ + name = "air floor"; + initial_gas_mix = "o2=2644;n2=10580" + }, +/area/atmos) +"cGL" = ( +/obj/structure/table/wood, +/obj/item/weapon/hatchet, +/obj/item/weapon/lighter, +/turf/open/floor/wood, +/area/maintenance/incinerator) +"cGM" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGN" = ( +/obj/structure/table/wood, +/obj/item/weapon/pen, +/obj/item/weapon/crowbar, +/turf/open/floor/plating, +/area/maintenance/incinerator) +"cGO" = ( +/obj/item/weapon/bedsheet/cult, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGP" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGT" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/weapon/clipboard, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGU" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cGV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cGW" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cGX" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGY" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating{ + tag = "icon-panelscorched"; + icon_state = "panelscorched" + }, +/area/maintenance/asmaint2) +"cGZ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHa" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"cHd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHe" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 4 + }, +/area/engine/engine_smes) +"cHf" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/engine_smes) +"cHg" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 1 + }, +/area/engine/engine_smes) +"cHh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "SMES Room"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHi" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery" + }, +/area/engine/engineering) +"cHk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Middle"; + dir = 4; + network = list("SS13") + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cHl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHp" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHq" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellow" + }, +/area/engine/engineering) +"cHr" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Waste Out"; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + state = 2 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHt" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cHu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/maintenance/asmaint2) +"cHv" = ( +/obj/structure/table, +/obj/item/weapon/weldingtool, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cHx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Aft Starboard Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cHz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboardsolar) +"cHA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHC" = ( +/obj/machinery/door/window{ + name = "SMES Chamber"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHD" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHE" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/engine_smes) +"cHF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cHG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "SMES Access"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cHI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/engine/engineering) +"cHJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHL" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cHY" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/airlock_painter, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cHZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cIa" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/asmaint) +"cIb" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIc" = ( +/turf/open/floor/plating, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/open/floor/plating{ + tag = "icon-platingdmg2"; + icon_state = "platingdmg2" + }, +/area/maintenance/asmaint2) +"cId" = ( +/obj/structure/table/glass, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIe" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/donkpockets, +/turf/open/floor/plating, +/area/space) +"cIf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Starboard Solar APC"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIh" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIn" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cIq" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cIr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engineering) +"cIs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "loadingarea" + }, +/area/hallway/secondary/entry) +"cIz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 1 + }, +/area/hallway/primary/fore) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall, +/area/maintenance/fsmaint) +"cIC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "redcorner"; + dir = 4 + }, +/area/hallway/primary/fore) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/fsmaint) +"cIF" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/structure/window{ + tag = "icon-window (NORTH)"; + icon_state = "window"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIG" = ( +/obj/structure/window{ + tag = "icon-window (WEST)"; + icon_state = "window"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cII" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cIL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/engineering) +"cIM" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cIN" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f6"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIO" = ( +/turf/closed/wall/shuttle{ + icon_state = "swall12"; + dir = 2 + }, +/area/shuttle/pod_4) +"cIP" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + dir = 2; + icon_state = "swall_f10"; + layer = 2 + }, +/area/shuttle/pod_4) +"cIQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/space, +/area/space) +"cIR" = ( +/obj/structure/table_frame, +/obj/item/weapon/wirerod, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 5 + }, +/area/maintenance/asmaint2) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space) +"cIT" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIU" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIV" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cIW" = ( +/obj/machinery/biogenerator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cIZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Shuttle"; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/toxins/shuttledock) +"cJa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cJb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/toxins/shuttledock) +"cJc" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/maintenance/asmaint2) +"cJe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cJg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJj" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access = null; + req_access_txt = "1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/nuke_storage) +"cJk" = ( +/obj/structure/window, +/turf/open/floor/plating, +/area/toxins/mixing) +"cJl" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "0"; + req_one_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "white" + }, +/area/medical/virology) +"cJm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + tag = "icon-pipe-j2 (NORTH)"; + icon_state = "pipe-j2"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/engine/engineering) +"cJt" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"cJu" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel{ + icon_state = "yellow" + }, +/area/engine/engineering) +"cJv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJz" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/engineering) +"cJA" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cJB" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/weapon/storage/pod{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + density = 0; + layer = 3; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -30; + possible_destinations = "asteroid_pod4"; + shuttleId = "pod4" + }, +/turf/open/floor/plasteel/shuttle, +/area/shuttle/pod_4) +"cJE" = ( +/obj/structure/grille, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"cJF" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "asteroid_pod4" + }, +/turf/open/space, +/area/space) +"cJG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"cJI" = ( +/obj/machinery/power/solar_control{ + id = "starboardsolar"; + name = "Aft Starboard Solar Control"; + track = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJK" = ( +/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 = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cJL" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/engine/engineering) +"cJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJN" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJO" = ( +/obj/structure/table, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cJR" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJS" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJT" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJU" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJV" = ( +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cJW" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cJX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/engineering) +"cJY" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/engine/engineering) +"cJZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engine/engineering) +"cKa" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKd" = ( +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cKe" = ( +/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_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKf" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKg" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/engineering) +"cKh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKj" = ( +/obj/structure/sign/pods{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engineering) +"cKk" = ( +/obj/machinery/camera{ + c_tag = "Engineering Escape Pod"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cKl" = ( +/turf/open/floor/plating, +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/closed/wall/shuttle{ + icon_state = "swall_f5"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKm" = ( +/turf/open/space, +/turf/closed/wall/shuttle{ + icon_state = "swall_f9"; + dir = 2 + }, +/area/shuttle/pod_4) +"cKn" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cKo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKs" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/obj/machinery/camera{ + c_tag = "Engineering Materials"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKt" = ( +/obj/structure/sign/map/left{ + pixel_y = 32 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKu" = ( +/obj/structure/sign/map/right{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"cKw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 101.325; + on = 1; + pressure_checks = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKy" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKz" = ( +/obj/machinery/requests_console{ + announcementConsole = 0; + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellowcorner" + }, +/area/engine/engineering) +"cKD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "yellow" + }, +/area/engine/engineering) +"cKE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKG" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboardsolar) +"cKI" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKM" = ( +/obj/structure/table, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/apc, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel{ + dir = 5; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cKP" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_y = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKQ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKS" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "32" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering) +"cKU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cKW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cKY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cKZ" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLa" = ( +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLb" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Port Engineering APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering North" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLe" = ( +/obj/structure/sign/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLf" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLh" = ( +/obj/structure/transit_tube{ + tag = "icon-Block"; + icon_state = "Block" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLi" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/structure/sign/securearea{ + name = "EXTERNAL AIRLOCK"; + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/asmaint2) +"cLj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cLk" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/item/weapon/kitchen/fork, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/item/weapon/lighter{ + lit = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Entrance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLo" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cLp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLq" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -2 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLr" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = -6 + }, +/obj/item/stack/sheet/plasteel{ + amount = 50; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 18 + }, +/obj/item/weapon/storage/backpack/industrial, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLt" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/obj/item/weapon/electronics/airlock, +/obj/item/weapon/electronics/airlock, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLw" = ( +/obj/structure/table, +/obj/item/weapon/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLz" = ( +/obj/structure/table, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/weapon/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLF" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cLH" = ( +/obj/structure/transit_tube/station{ + dir = 8; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/obj/structure/transit_tube_pod, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cLI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cLJ" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cLL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLM" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cLN" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cLO" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLP" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cLQ" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cLR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Supermatter Control Room"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cLS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/supermatter) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLV" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLX" = ( +/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; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cLZ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMa" = ( +/obj/structure/table, +/obj/item/weapon/pocketknife, +/obj/item/weapon/reagent_containers/food/snacks/beans{ + bonus_reagents = list("nutriment" = 1, "vitamin" = 1, "????" = 30); + desc = "Smells kind of funny." + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMb" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMd" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/engineering) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMg" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMh" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMn" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/obj/item/weapon/reagent_containers/pill/charcoal, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering) +"cMp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMq" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/engineering) +"cMr" = ( +/obj/structure/chair/withwheels/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cMu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMv" = ( +/obj/structure/closet/radiation, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/engine/supermatter) +"cMw" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cMx" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMz" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/engine/supermatter) +"cMA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/engine/supermatter) +"cMB" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cMC" = ( +/obj/structure/sign/securearea, +/turf/closed/wall, +/area/engine/engineering) +"cMD" = ( +/obj/structure/transit_tube{ + tag = "icon-N-SE"; + icon_state = "N-SE" + }, +/turf/open/space, +/area/space) +"cME" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/turf/open/space, +/area/space) +"cMF" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMG" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/weapon/paper/gravity_gen{ + layer = 3 + }, +/obj/item/weapon/pen/blue, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + dir = 2; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMJ" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cMK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMM" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cMP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cMQ" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cMR" = ( +/obj/structure/transit_tube{ + tag = "icon-E-NW"; + icon_state = "E-NW" + }, +/turf/open/space, +/area/space) +"cMS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMT" = ( +/obj/structure/transit_tube, +/turf/open/space, +/area/space) +"cMU" = ( +/obj/structure/transit_tube{ + tag = "icon-E-W-Pass"; + icon_state = "E-W-Pass" + }, +/turf/open/space, +/area/space) +"cMV" = ( +/obj/structure/transit_tube{ + icon_state = "W-SE" + }, +/turf/open/space, +/area/space) +"cMW" = ( +/obj/structure/transit_tube{ + icon_state = "D-SW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cMX" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cMY" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cMZ" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNa" = ( +/obj/structure/grille, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNc" = ( +/obj/structure/grille, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNd" = ( +/obj/structure/table, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNe" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNf" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNg" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cNh" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNk" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNl" = ( +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cNo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNp" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNs" = ( +/turf/open/floor/plating/airless{ + dir = 9; + icon_state = "warnplate" + }, +/area/space) +"cNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cNu" = ( +/turf/open/floor/plating/airless{ + dir = 5; + icon_state = "warnplate" + }, +/area/space) +"cNv" = ( +/obj/item/weapon/crowbar, +/turf/open/space, +/area/space) +"cNw" = ( +/obj/structure/transit_tube{ + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNx" = ( +/turf/closed/wall/r_wall, +/area/aisat) +"cNy" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cNz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cNA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "warningcorner"; + dir = 2 + }, +/area/engine/engine_smes) +"cNC" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cND" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cNE" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/turf/open/space, +/area/space) +"cNF" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plating, +/area/aisat) +"cNG" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/aisat) +"cNH" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/aisat) +"cNI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8; + network = list("SS13"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNJ" = ( +/obj/item/weapon/weldingtool, +/turf/open/space, +/area/space) +"cNK" = ( +/turf/open/floor/plating/airless{ + dir = 10; + icon_state = "warnplate" + }, +/area/space) +"cNM" = ( +/turf/open/floor/plating/airless{ + dir = 6; + icon_state = "warnplate" + }, +/area/space) +"cNN" = ( +/obj/structure/transit_tube{ + tag = "icon-D-NE"; + icon_state = "D-NE" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNO" = ( +/obj/structure/transit_tube{ + icon_state = "NW-SE" + }, +/turf/open/space, +/area/space) +"cNP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNQ" = ( +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/aisat) +"cNS" = ( +/obj/machinery/gravity_generator/main/station, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNT" = ( +/obj/structure/transit_tube{ + tag = "icon-S-NW"; + icon_state = "S-NW" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cNU" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNV" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNW" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "AI Satellite Teleport Shutters Control"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 2; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cNX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cNZ" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 6 + }, +/area/engine/gravity_generator) +"cOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cOd" = ( +/turf/closed/wall, +/area/aisat) +"cOe" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/aisat) +"cOg" = ( +/obj/machinery/door/airlock/hatch{ + name = "Teleporter Room"; + req_access_txt = "17;65" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "AI Satellite Teleport Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOi" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cOk" = ( +/obj/structure/transit_tube{ + icon_state = "N-S" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cOl" = ( +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOm" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + on = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOr" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOs" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cOt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOv" = ( +/obj/structure/transit_tube/station{ + dir = 4; + icon_state = "closed"; + reverse_launch = 1; + tag = "icon-closed (EAST)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOy" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access = null; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/aisat) +"cOz" = ( +/turf/open/floor/plating, +/area/aisat) +"cOA" = ( +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cOB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cOC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cOD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cOE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cOF" = ( +/obj/structure/transit_tube{ + dir = 1; + icon_state = "Block"; + tag = "icon-Block (NORTH)" + }, +/turf/open/floor/plating, +/area/aisat) +"cOG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/aisat) +"cOH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOI" = ( +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_Toxins = 0 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cOM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cON" = ( +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"cOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "11"; + req_one_access_txt = "0" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cOP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "MiniSat Entrance"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat External Power APC"; + pixel_x = -27; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/aisat) +"cOQ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/aisat) +"cOT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/aisat) +"cOV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/aisat) +"cOW" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOY" = ( +/obj/machinery/turretid{ + control_area = "AI Satellite Antechamber"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 0; + pixel_y = -24; + req_access = list(65) + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/aisat) +"cOZ" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless{ + icon_state = "solarpanel" + }, +/area/solar/starboard) +"cPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/aisat) +"cPc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/aisat) +"cPd" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/aisat) +"cPe" = ( +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/turret_protected/aisat_interior) +"cPi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/closed/wall, +/area/aisat) +"cPj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = -32; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cPm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPo" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPw" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cPx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"cPy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/aisat) +"cPz" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_sw"; + name = "southwest of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cPA" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cPB" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPC" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPG" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPI" = ( +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (WEST)"; + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPN" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/aisat) +"cPO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "MiniSat Walkway Access"; + req_access_txt = "13;65" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/aisat) +"cPP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cPQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPR" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners (WEST)"; + icon_state = "darkbluecorners"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cPT" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkbluecorners"; + icon_state = "darkbluecorners" + }, +/area/turret_protected/aisat_interior) +"cPU" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + cell_type = 2500; + dir = 4; + name = "MiniSat Antechamber APC"; + pixel_x = 29; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cPV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space, +/area/space) +"cPW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cPX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cPY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cPZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/simple_animal/bot/floorbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQb" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/aisat_interior) +"cQc" = ( +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQd" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Antechamber"; + dir = 1; + network = list("MiniSat") + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel{ + tag = "icon-darkblue"; + icon_state = "darkblue" + }, +/area/turret_protected/aisat_interior) +"cQe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/bot/cleanbot{ + on = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/aisat_interior) +"cQf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior North East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cQh" = ( +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQj" = ( +/obj/machinery/ai_status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQk" = ( +/obj/structure/sign/securearea, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + icon_state = "door_locked"; + locked = 1; + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQm" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQp" = ( +/obj/structure/chair/withwheels/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQq" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber North"; + dir = 2; + network = list("MiniSat","RD"); + pixel_x = 0; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQr" = ( +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQs" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/turret_protected/ai) +"cQt" = ( +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQw" = ( +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQy" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQz" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/obj/machinery/light, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQA" = ( +/obj/machinery/porta_turret{ + ai = 1; + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQC" = ( +/turf/closed/wall, +/area/turret_protected/ai) +"cQD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQE" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQF" = ( +/obj/machinery/ai_slipper{ + icon_state = "motion0"; + uses = 10 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 27 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQH" = ( +/obj/effect/landmark{ + name = "tripai" + }, +/obj/item/device/radio/intercom{ + anyai = 1; + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + freerange = 1; + listening = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + anyai = 1; + broadcasting = 0; + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 0; + pixel_y = -25 + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQI" = ( +/obj/machinery/power/apc{ + cell_type = 5000; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQJ" = ( +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber South"; + dir = 2; + network = list("RD","MiniSat") + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/bluegrid, +/area/turret_protected/ai) +"cQM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQN" = ( +/obj/machinery/airalarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South West"; + dir = 8; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cQR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/turret_protected/ai) +"cQT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior South East"; + dir = 4; + network = list("MiniSat"); + pixel_x = 0; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/aisat) +"cQV" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_se"; + name = "southeast of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cQW" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/turret_protected/ai) +"cQY" = ( +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cQZ" = ( +/obj/structure/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/secure) +"cRc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRd" = ( +/obj/structure/rack, +/obj/item/weapon/crowbar/red, +/obj/item/weapon/wrench, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space) +"cRf" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space) +"cRg" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRh" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "MiniSat Maint APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRi" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Air Out"; + on = 1 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHEAST)"; + icon_state = "warndark"; + dir = 5 + }, +/area/ai_monitored/storage/secure) +"cRj" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/open/floor/plating{ + icon_state = "warnplate" + }, +/area/ai_monitored/storage/secure) +"cRk" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTHWEST)"; + icon_state = "warndark"; + dir = 9 + }, +/area/ai_monitored/storage/secure) +"cRl" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (NORTH)"; + icon_state = "warndark"; + dir = 1 + }, +/area/ai_monitored/storage/secure) +"cRm" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cRn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/aisat) +"cRo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/aisat) +"cRq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRr" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4; + initialize_directions = 11 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "65" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/aisat) +"cRy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cRz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRB" = ( +/obj/structure/chair, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/ai_monitored/storage/secure) +"cRF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cRG" = ( +/obj/docking_port/stationary{ + dheight = 9; + dir = 2; + dwidth = 5; + height = 22; + id = "syndicate_s"; + name = "south of station"; + turf_type = /turf/open/space; + width = 18 + }, +/turf/open/space, +/area/space) +"cRH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRI" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRJ" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRK" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + layer = 2.9 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/ai_monitored/storage/secure) +"cRM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/storage/secure) +"cRN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cRP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRS" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cRU" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 2; + name = "SMES room APC"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 10; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRV" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes) +"cRW" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 6; + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRX" = ( +/obj/structure/chair/withwheels/office/light{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "warning" + }, +/area/engine/engine_smes) +"cRY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cRZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (WEST)"; + icon_state = "warndark"; + dir = 8 + }, +/area/engine/supermatter) +"cSa" = ( +/obj/structure/chair/withwheels/office/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSb" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Supermatter Control Room"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters" + }, +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (EAST)"; + icon_state = "warndark"; + dir = 4 + }, +/area/engine/supermatter) +"cSc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel{ + icon_state = "dark" + }, +/area/engine/supermatter) +"cSd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSe" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSf" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSg" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSh" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSi" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSj" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSl" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera{ + c_tag = "Port Engineering North-East"; + dir = 5; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSm" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSn" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/multitool, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSo" = ( +/obj/machinery/vending/tool, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSp" = ( +/obj/machinery/vending/engivend, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSq" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSr" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSs" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSw" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "delivery"; + name = "floor" + }, +/area/engine/engine_smes) +"cSB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"cSC" = ( +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cSD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cSE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "32" + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/supermatter) +"cSF" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHWEST)"; + icon_state = "warndark"; + dir = 10 + }, +/area/engine/supermatter) +"cSG" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSH" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "smblast"; + name = "Control Room Shutters" + }, +/turf/open/floor/plasteel{ + tag = "icon-warndark (SOUTHEAST)"; + icon_state = "warndark"; + dir = 6 + }, +/area/engine/supermatter) +"cSJ" = ( +/obj/machinery/computer/monitor{ + name = "primary power monitoring console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + tag = "icon-warndark"; + icon_state = "warndark"; + dir = 2 + }, +/area/engine/supermatter) +"cSK" = ( +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSL" = ( +/obj/item/device/radio/off, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSM" = ( +/obj/machinery/power/emitter{ + anchored = 1; + state = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSN" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSO" = ( +/obj/structure/grille, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSP" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSQ" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cSS" = ( +/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 = -32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cST" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cSY" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cSZ" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTa" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + tag = "icon-manifold-r-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTe" = ( +/obj/structure/closet/radiation, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel{ + dir = 9; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (EAST)"; + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cTg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "warning" + }, +/area/engine/gravity_generator) +"cTh" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Power Storage"; + req_access_txt = "32"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cTi" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTj" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8; + on = 1; + scrub_N2O = 0; + scrub_Toxins = 0 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTn" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTo" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smblast" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cTp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTq" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTr" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/tank/nitrogen{ + volume = 1e+007 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + tag = "icon-manifold-b-f (NORTH)"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTB" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/port_engineering) +"cTD" = ( +/obj/structure/table, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/obj/item/weapon/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "vault"; + dir = 8 + }, +/area/engine/heat_exchange) +"cTF" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTG" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTI" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTJ" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTK" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTL" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + layer = 3 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Center" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTM" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10; + initialize_directions = 10 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTQ" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Supermatter APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTS" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cTX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cTY" = ( +/obj/machinery/power/rad_collector{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/port_engineering) +"cTZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/hologram/holopad, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUa" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cUe" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1; + on = 1; + scrub_N2O = 1; + scrub_Toxins = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUh" = ( +/obj/machinery/atmospherics/components/binary/volume_pump, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUl" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/power/emitter, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUs" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/item/weapon/wrench, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUx" = ( +/turf/closed/wall, +/area/engine/port_engineering) +"cUA" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUE" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8"; + tag = "" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUF" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUG" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cUH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space) +"cUI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space) +"cUJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cUK" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cUL" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUN" = ( +/obj/machinery/power/apc{ + cell_type = 15000; + dir = 1; + name = "Filtering Room APC"; + pixel_x = 0; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUO" = ( +/obj/machinery/camera{ + c_tag = "Filtering Room" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cUQ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Supermatter West"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + id = "heatexchange"; + name = "Filtering Room Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUT" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUV" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "superinput"; + name = "Emitter Shutters"; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cUZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVb" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVc" = ( +/obj/machinery/field/generator{ + anchored = 1; + state = 2 + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cVf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVg" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVh" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space, +/area/space) +"cVl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVn" = ( +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVp" = ( +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVu" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVv" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVw" = ( +/obj/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "superinput" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cVz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + locked = 1; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/door{ + id = "smcollector"; + name = "Collector Shutters"; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVC" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/camera{ + c_tag = "Supermatter East"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVD" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall, +/area/engine/port_engineering) +"cVG" = ( +/obj/item/weapon/wirecutters, +/turf/open/space, +/area/space) +"cVH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cVL" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + brightness = 3; + color = "white"; + dir = 1; + on = 1 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVM" = ( +/obj/machinery/the_singularitygen{ + anchored = 0 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVN" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cVO" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVP" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVQ" = ( +/obj/machinery/atmospherics/components/unary/heat_exchanger{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVR" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Filtering Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cVS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVT" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/supermatter) +"cVU" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/supermatter) +"cVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVW" = ( +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cVY" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/rad_collector{ + anchored = 1; + req_access = list(32) + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 4 + }, +/area/engine/supermatter) +"cVZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWa" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space) +"cWd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cWe" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWj" = ( +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWl" = ( +/obj/machinery/airalarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWm" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWo" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWp" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWq" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWr" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "heatexchange" + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWt" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWu" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWv" = ( +/obj/machinery/mass_driver{ + id = "engicannon" + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + tag = "smin"; + volume_rate = 700 + }, +/obj/machinery/power/supermatter_shard{ + anchored = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWx" = ( +/obj/structure/window, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + tag = "icon-intact (NORTHWEST)"; + icon_state = "intact"; + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWz" = ( +/turf/open/floor/plating, +/area/engine/supermatter) +"cWA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cWB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8; + initialize_directions = 11 + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space, +/area/space) +"cWE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWF" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWG" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWH" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWI" = ( +/obj/machinery/particle_accelerator/control_box{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 0; + d2 = 2 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWK" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWL" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage1"; + name = "secure storage" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 8 + }, +/area/engine/port_engineering) +"cWM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cWN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/weapon/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/electronics/airlock, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cWO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engine/heat_exchange) +"cWP" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWQ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "smcollector" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 2; + external_pressure_bound = 0; + internal_pressure_bound = 1000; + on = 1; + pressure_checks = 1; + pump_direction = 0; + tag = "smout" + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cWV" = ( +/obj/structure/sign/securearea{ + color = ""; + desc = "A warning sign which reads 'WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE'."; + name = "\improper WARNING: ONLY BREAK GLASS IN EVENT OF CATASTROPHIC ENGINE FAILURE."; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"cWX" = ( +/turf/open/floor/plating/airless{ + dir = 8; + icon_state = "warnplate" + }, +/area/space) +"cWY" = ( +/turf/open/floor/plating/airless{ + dir = 4; + icon_state = "warnplate" + }, +/area/space) +"cXc" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXd" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXe" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXf" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXg" = ( +/obj/machinery/camera{ + c_tag = "Engineering PA"; + dir = 9; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the singularity chamber."; + dir = 2; + layer = 4; + name = "Singularity Engine Telescreen"; + network = list("Singularity"); + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXi" = ( +/obj/item/weapon/storage/box/matches, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXj" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/camera{ + c_tag = "Port Engineering Secure Storage"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXk" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/engine/heat_exchange) +"cXl" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXm" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXn" = ( +/obj/machinery/door/poddoor{ + id = "engicannon" + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/hidden, +/turf/open/floor/engine/vacuum, +/area/engine/supermatter) +"cXo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXq" = ( +/obj/structure/window{ + color = "red"; + desc = "A window, break in case of emergency."; + dir = 1; + icon_state = "window"; + tag = "icon-window (NORTH)" + }, +/obj/machinery/button/massdriver{ + id = "engicannon"; + name = "\improper JETTISON ENGINE"; + pixel_y = -22; + req_access_txt = "32" + }, +/turf/open/floor/plating{ + icon_state = "warnplate"; + dir = 1 + }, +/area/engine/supermatter) +"cXr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cXt" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXu" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXw" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage1"; + name = "Secure Storage"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "10" + }, +/obj/machinery/camera{ + c_tag = "Port Engineering Middle"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXx" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXy" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + volume_rate = 5000 + }, +/turf/open/floor/plating/airless, +/area/space) +"cXz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; + name = "KEEP CLEAR: DOCKING AREA"; + pixel_y = 0 + }, +/turf/closed/wall, +/area/space) +"cXA" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXB" = ( +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = -25; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXD" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXE" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXG" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXI" = ( +/obj/machinery/field/generator, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cXJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Singularity"; + name = "radiation shutters" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXL" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "Singularity"; + name = "Shutters Control"; + pixel_x = 0; + pixel_y = 25; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXM" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Port Engineering South" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXN" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/weapon/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/hologram/holopad, +/obj/structure/chair/stool, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXY" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cXZ" = ( +/obj/structure/table, +/obj/item/weapon/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYb" = ( +/obj/item/device/multitool, +/turf/open/space, +/area/space) +"cYd" = ( +/obj/structure/table, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYe" = ( +/obj/structure/table, +/obj/item/device/flashlight{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/device/flashlight, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYf" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYg" = ( +/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 = 32 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYh" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + cable_color = "yellow"; + d2 = 2; + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYi" = ( +/obj/structure/grille, +/obj/machinery/light, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYk" = ( +/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 = 32 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/obj/machinery/atmospherics/components/unary/vent_pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYn" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYq" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYr" = ( +/obj/structure/grille, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4"; + tag = "90Curve" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating/airless, +/area/engine/port_engineering) +"cYs" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYt" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYu" = ( +/obj/structure/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYz" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plasteel, +/area/engine/port_engineering) +"cYA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0; + tag = "" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile, +/obj/structure/cable, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/port_engineering) +"cYD" = ( +/obj/structure/lattice, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/space, +/area/space) + +( +1, +1, +1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaadaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaadaadaadaaaaaaaaaaadaadaaaaaaaaaaadaadaadaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaaaaaaaaaaaiaaiaaiaaiaaiaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaacaafaacaaaaacaaaaaaaaaaakaajaanaalaapaaoaaqauQarQarRarRarRarSauQaaqaaqauQagvagwagxagxagxagxagxagxagyaaaaaaabdaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaafaacaaaaaaaaaaaaaaaaakaaraataasaaiaauaavauQasyahBahAahDahCauQaaxaawauQagvahdaheahfahgahhahiahjahkaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaafaafaafaafaafaafaafaafaacaacaaaaaaaaaaaaaakaayaaAaazaapaaBaaDaaCarRatnajAatnaklaaEaaGaaFaaEaidaieaieaieaieaifaigaigahkaaaaihaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaiaaiaaiaaiaaiaaHaaJaaIaaiaaKaaDaaCakqbYybYyaaLaksauQaaGaaFauQagvaiYaiZajaaiZahhajbajcahkaaaaaaaacaafaacaadaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaiaaMaaOaaNaaQaaPaaSaaRadraaTaaUauQarRavyauKauKasyauQaaGaaVauQagvakaagxagxagxagxagxagxakbaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaacaacaaaaaiaaWaaXaaXaaZaaYabbabaadpabcabeaaCarRavyauKabfasyauQabhabgauQaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaafaacaacaacaaaaaaaaaaaaaaaaacaacaaaabjabiabkabkabmablaboabnabqabpabraaCarRavyauKauKalpaaEabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaacaacaacaaaaaaaaaaaaaacaacaacabjabtabvabuabxabwabzabyadpabAabBauQasyaxBaxBaxBasyauQabsaaDaaCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaaaaacaacaaaaacaacaacaaaaaaaacaacaacaacaaiaaiadpadpadpadpadpadpadpabCabDauQayRaySaySaySayTauQabEaaFauQaaaaaaaaaabGabGabHabGabHabGabGabFabFabFabFabFabFabFabFabFabFabFabFabFabFaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadafJafJaaaafJafJafJaaaaaaaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaacaqoaqkabJabIabKaoRaoRaoRaocabLabMauQauQabNabNabNauQauQabOaaFabSabSabSabSabSabPabRabQabVabTadIabWabYabXacaabZaccacbaceacdacdacfachacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaaaaaaaaaaaaacaacaaaaaaaaaaaaaacaacaacaacaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaqoaqDaoRapEapFaciapGaoRaocacjaclackacnacmacpacoacqackacsacrabSactacxacuabSacBacBacvacBacwadIacyabYaczacCacAaccacbacCacDacdacfacEacgabFaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaaaaafaafaafaafaafaafaafaafaafaacaaaafJaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaqoaoQaoRapEacGacFapGaoRaocacHacJacIacKasHacLasHasHacMabOacNabSactacxacOabSacPacRacQacBacSadIacTacUabYabYabYabYabYabYabYacVabYabYacWacXaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaacaaaaaaaamaafaaaaaaaacaacaacaaaaaaaafaaaaaaafJafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaqoapDarbacYaoRaoRacZaoRaocadaadcadbadeaddadfaddaddadgadiadhadkadjadlacuabSadmadEadnadqadoaePadsaduadtadtadtadtadtadtadtadvadtadtadwacXaacaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadabdaaaaaaaaaaafaaaaiiaiiaiiaiiaiiaacaafaaaaacaacaacaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaldaldaldaldaknaocadxaocaocaodadyaocadAadBabSabSabSadCabSabSabSadDabSabSadFacxacuabSadGadJadHacBadKadIadLadNadMadPadOadOadOadOadQadSadRadUadTabFaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafakcaaaaiiaaaaacaaaajdaacaafaafaafaafaafaafaafaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacakdaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaldadWadzadXadVadZadYaeaadZaecaebaeeaedaefabSaehaegaejaeiabUaekaelaekabSacxacxacuabSaemaeoaenadIadIadIaepaeqafIafIafIafIafIafIafIaerafIafIafIaevaevaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaacaacaacaaaaaaaiiaacakYaacaiiaaaaaaaaaaaaaaaaaaaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaiiafJafJafJafJaacaacaaaakZaaaaacaacaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaesaeuaetaexaewaezaeyaeBaeAaeCaeCaeEaeDaeFabSaeGacxaeIaeHaeJaeJaeLaeKaeNaeMaeQaeOaeSaeRaeUaeTaeWaeVaeXagraiXaeYafaaeZafIafbafdafcaffafeafhafhafhaevaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaiiaiiaiiaiiaacaacaaaalXaaaalYaacaiiaiiaiiaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaakZaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldafjafiafkaldafmaflaqoaqoaqoaqoaqoafnafoabSafpacxacxafqacxacxafsafrabSaftacxacuabSafuafwafvafxagmagmagraiXagmafzafyafIafIafIafAamIafBafDafCafCaevaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaajdaaaaaaaacaaaaacaaaaaaalXaaaaaaaacaaaaacaaaaaaaiiaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaamVaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaesafFafEafGaldafKafHaqoafLafNafMafPafOafQabSabSafRafTafSafVafUabSabSabSabSafWabSabSafXafZafYagcagaagaagdagfageaghaggagjagiafBagkamIaglagnafBafBaevaaaaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaacanManManManManMaaaanNaaaanManManManManMaacaiiaacaafaacaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaldagpagoagqaldagtagsaqoaguagAagzagCagBagDanvagFagEagEagGagHagHagJagIagLagKagNagMagPagOagRagQagQagQagmagmagTagSaevagUagVagVagVagWagWagVagXagVagVagVakXagYakXaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaiiaacaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaldaldaldaldaldahaagZaqoahbahlahcaoWahmahoahnahpagEagEahqagEagEahsahraiSaiSaiSahtaiSahuahvahuahuahuaiSahwahyahxahEahzahGahFahIahHahHahFahJahFahLahKakXahMakXaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaajdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWahOahNaqoaocaocaocaqoahPahQahnahSahRahUahTahWahVahYahXahZagmaibaiaaibaibaicaibaibaibaibaijailaikainaimaipaioaioaiqaisairaiuaitaiwaivakXagYakXaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaaaaafaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaeaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaixagZaqoaiyafNafMafPaizaiAanvaiCaiBahXaiDahXaiCaiEanvafIaiFafIaiGaiHafIaerafIaiHaiHafIaosaiIafIaiJaouaiKaotaotaotaouaotaotaiLaiwamOatgamOaqzaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaafaaaaacaacaaaaaaaaaaacaacaacaaaaaaaacaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaiMagZaqoaguaiNagzaiOagBaiQaiPaiRadZaeaaiTadZaiRaiVaiUajeaiWajgajfajiajhajkajjajlajlajnajmajpajoajrajqajtajsajuajsajwajvaotaiLajyajxajBajzamOaqzaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaiialYaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRrajCaqoajDajEahcaoWajFajHajGajIajHajKajJajHajLajMajHajKajNajPajOajRajQajTajSajVajUajXajWajZajYakfakeakhakgakiakgajwaplaotaiLajyakjakkajzamOaqzaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvaacaiiaadafJaadaadaacaacaacaaaaacaacaaaaaaaacaacaafaacafJaaaaaaaaaaaaafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaaanRaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAWaRragZaqoaqoaqoaqoaqoaqoakoakmaocakrakmaocakuaktaocakvakmaqoaocakwaocaqoapfakxakzakyakBakAakCatzaiJakDakFakEakEakEakHakGaotaiLajyakIakJajzamOaqzaaaaacaafaaaaaaaaaaaaaaaaadaadaadaadaaaaaaaaaaaaaafaacaaaaiiaaaaaaaaaaacaaaaaaaaaaoCaaaaaaaaaaacaaaaaaaaaaiiaacaaaaacaacaadaadarNaacaaaaacabdaacabdaacaafaacaacaacaaaaacaacaacaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaacaaaarOaaaaaaaaaarPaaaaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaacamUamUamUamUamUaaaanRaaaamUamUamUamUamUaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaCYaRragZakLakKakNakMakOaqoakQakPaocakQakPaocakQakPaocakQakPaqoalrapfakRaqoakTaodakUaocakWakVaocalaaiJalbalcaplaplaplalcaleaotaiLalfajzajzamOamOaqzaaaaacaafaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaacaafaacaaaaiiaacanManManManManMaaaaoCaaaanManManManManMaacaiiaaaaaaaaaaacabdaacaaaafJafJafJaacaacabdaacaafaafaafaafaafaafaafaafaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacassastasuaaaasvaswasxaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaanOanPanPanPanPanQanRanSanTanTanTanTanUaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacalgaRragZaDUalhaljalialkaqoalmallaocalmalnaocalmaloaocalmalqaqoalrapfakSaqoapfaltakzalualwalvalxakpaiJalyalcaplaplaplalcalzaotalAaiwamOamOamOaqzaqzaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaiiaaaaozaoAaoAaoAaoAaoBaoCaoDaoEaoEaoEaoEaoFaaaaiiaaaaaaaaaaacaacaacaacaaaaaaaacaacafJaacaaaaaaaaaaaaaacaacaacaacaaaaafaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaacathatiathaaaatjatkatjaacaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaajdatlaoGaoGaoGaoGaoGaaaanRaaaaoGaoGaoGaoGaoGaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaCYaRragZakLalBalDalCalEaqoalGalFaocalHalIaocalKalJaocalLalMaqoalralNalOaqoapfalPakzalualRalQalTalSaiJalValWalWalZalWalWalWaotaiLaiwamaamcambakXaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaacaaaaacaaaaacaaaaiiaacapvapvapvapvapvaaaaoCaaaapvapvapvapvapvatlajdaaaaaaaaaaacatLatLatLatLatLatLaacafJaaaaaaaaaaaaaacaacaacaacaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMathatNathatMatjatOatjatMaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaaatPaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaCYameamdaAWamfamhamgaAWaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoaqoamiauVaqoamjadxamkaocammamlammaocaiJboGamnamnapsamnamnamnaotaiLaiwakXakXakXakXakXakXakXaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaaaaacaaaaiiaaaaaaaacaaaaacaaaaaaaoCaaaaaaaacaaaaacaaaaaaaiiaacaacaaaaacatLausautauuauvatLaacafJaadaadaaaaacatmaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauxauyauzauwauAauBauCauwaaaaaaaaaaaaaacaaaauDauEauEauEauFaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaacaacaacauGauHauGaacaacaacaacaiiauIauIawrawrawrauIawrawrawrauIaxraxraxraAWaAWalsamoamqamqamqamramqamqamqamqamqamqamqamsamuamtamwampamvamqamqamyamzaKLamBamAamDamCamFamEamHamGaotamJamnamnapsamnamnamKamMamLamPamNawUawUawUawUamRakXaaaaaaaaaaaaaaaaaaaacaacaaaaaaaacaacaacaacaacaacaaaaiiaiiaiiaacaacaacaacaacaoCaacaacaacaacaacaiiaiiaiiabdabdaveavfatLavgavhaviavjatLaveaveaveavkaveaveaveaveaveaveaacaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwauwavlauwauwauwavlauwauwaaaaaaaaaaaaaacaaaavmavnavoavpavmaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacaaaauGavqauGaaaaaaaacaaaauIauIavravsavtamSamTavwavwavxauIaQaayPayPamWaDUamYamXamXamXamXanaancanbanganfanianhamXamXamXamXamXamXamXancamXanjanmanlanoannanoanqanramEantansaotanuanxanwanzanyanAanAanCanBanDapPapPapPapPapPayhakXaqzaqzakXakXakXaqzaqzakXakXaaaaacaacaacaacaaaaacaaaaaaaacaacaacaaaaacaaaaaaavTaaaaaaaacaaaaacaaaaveaveaveaveaveavUatLavVavWaviavXatLavYavZawbawbawbawcawdawbaweaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacauwawfawgawhauwawiawgawhauwaaaaaaaaaaaaaacaaaawjavnavoavpawjaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaacauGauGawkauGauGaaaauIauIauIawlawmavwavwawnawoavwawpawqawrayPayPayPaxraAWaCYaCYaAWaAWaDUaIKanEaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcaDcanFaRranGaAWantanHanJanIanranKantanLaotaogapsaohaoiakXakXakXakXaojaokapPaomaolaonapPayhamOamOamOaopaooamxamOazjatKakXaaaaaaaaaaaaaacaaaaacaaaaacaacaaaaaaaaaaacaaaaaaawWaaaaaaaacaacaveaveaveawXawYawZaveavYatLaxaaviaviaxbatLavYaveawbaxcawbaxdaxeawbawbaveabdaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacauwauwavlaxfaxgauwaxhaxfauwaxiauwauwaaaaacauDaxjaxkaxlaxkaxjauFaacaaaauwaxmaxmauwaaaaaaaaaaaaaacaaaaacaaaaaaaacaxnaxoaxpaxqaxnaxraxrauIaxsaxtaxuaxuaxvaxwaxxavwavwavwawraoraxzaxAawtaaaaaaaaaaaaaCYaDUaIKaovaDcaoxaowaoyaEdaoHaDcaoPaoMaoTaoSaoUaDcaoXaoVaoZaoYapbapaapcanIapeapdaphapgaotapiapsaohavNakXatKamOamOaojaokapPapkapjapjapPapmawUawUawUawUawUawUawUawUamRakXaaaaaaaaaaaaaacaaaaacaacaacaaaaaaaaaaaaaacaaaayiayjayiaacaacaacaveaykaylaymaymaymaveavUatLaynayoaypayqatLavYaveaxdayrawbawbaysawbaytaveabdaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaxmayuayvayvaywayxayvayyayzayAayBauwaxmauwawjayCavoavoavoapnawjauwaxmauwayEayFaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnayGayHayIaxnayJayJauIayKawqawqawqawqawqayLavwayMayNauIapoayPayQaxraAWaCYaCYaAWaAWaAWappaAWaDcaFsaFtaEgaEgaEgaEkaEgaFAapqaFAapraDcaAWaAWaAWaAWaocaptapAapuapHapCaocaocaotaotapJapIaotakXakXaCqakXaoqapLapKapMapMapNapPakXakXakXaCqakXakXakXakXakXayhaqzaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaacaaaayiazlayiaacaaaaveaveazmaymaymaznaymaveavYatLatLatLazoatLatLavYaveazpazqawbaxdazrawbawbaveaacaaaaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaxmazsaztaztaztaztaztaztaztazuazvazwazxazwazyavoazzazzazzavoaxlazwazxazwazAazvaxmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxnazBazCazDaxnazEazFazGazHazIazJazKazKazKapQapOapSapRapUapTazQazRaxrapVapXapWapYaAWaqaapZaqcaqbaEgaEgaEgaqdaqeaGAaqjaqfaqmaqlaGzaqnaqqaqpaqqaqraqtaqsaqvaquaqqaqwaAnaqxaqyaAnaAnaqCaqEaAnaqFaAnakXarnaokapPaqHaqGapjapPaqIamOakXamOamQaqJamOamOaCqayhaqzaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacayiayiayjayiayiaaaaveaAwaAxaymaymaymaAyaAzaAAaAAaAAaAAaABavYaACavYaveavYavYavYavYaADavYaAEaveaacaacaafafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaxmaAFaAGaAGaAGaAGaAHaAIauwaAJaAKauwaALauwawjavoavoavoavoaAMawjauwaALauwaANaAKaxmaxmaaaaaaaacaaaaaaaaaaaaaaaaaaaxnaxnaAOaAPaxnaAQauIauIavwavwaARavwavwavwaASavwaATavwazOaBQaAUaAVawtaqKaqMaqLaqOaqNaqQaqPaqRaDcaEgaqSaEgaqTaqUaDcaEgaqVaqXaqWaEgaqYaxXaxXaxXaxXaxXaqZardaraarfarearfargariarharkarjaBlaBlarmarlaroaAtaokapParqarparrapParsamOartamOamOaqJaruazjakXayhaqzaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaacaBzaBAaBBaBCaBzaaaaveaBDaAxaznaymaymaBEaBFaveavZaveaveaveaveavZaveaveaBGaveaveaveaveaBHaveaveaaaaacaafafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaatMatMatMaxmaxmaxmatMatMatMaBIaztayBaALaBJauEaBKazzazzazzaBLauEaBMaALaBNaztazvaBOauwaaaaaaaxraxraxraxraxraacaacaxraBPaBQaBRaBSaBTauIaBUavwaBVavwavwaBWaBXaBYaBZaCaazNauIamZayPaCcaxrarvaDUapZaDUaAWarxarwaryaDcaHEarzarBarAarDarCaFvarEaFvaFvaFvarFarGarGarGarGarHarGarJarIarLarKarXarMarYarYarYarZarYarYasaakXakXasbaokapPapPapPapPapPakXakXakXakXakXakXakXakXakXayhaqzaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaacaBzaCtaCuaCvaBzaaaaveaCwaymaCxaymaymaCyaBFaCzavYavYaCAaveavYavYavYavYavYavYaveavYaCBavYaCDaveaaaaacaCEaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaCFaztazvaALaBJauEaCGavoaCHavoaCIauEaBMaALazAaztaCJaxraxraxraxraxraCKaCLaCMaxraaaaaaaxrayPaCNaCOaCPaCQauIaCRayMavwaCSavwaBWaCTascaBZaCVaATauIandaneaCXaxraCYaAWasdaAWaAWaAWaAWaAWaAWaAWaAWaAWaAWaseavdavdavdavdavdavdavdasfasfasfasfavdavdaDdasgaDfashalUaDhalUaDiaDjaDkaDlasiasjasjaslaskasmasjasjasnaspasoaDjcHmasrasqawUawUaDtawUawUaDuakXaaaaaaaaaaaaaacaacaaaaaaaaaaafaafaafaaaaacaBzaDvaDwaDxaBzaDyaveaveaDzaAzaDAaDAaDAaDBavYavYavYavYaveavYaveaveaveaveavYaveaDCaDDavYaADaveaaaaacakcaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaacaacaacaacaaaaaaaaaaaaatMaDEaDFazvaALaBJauEaDGazzazzazzaDHauEaBMaALazAaDFaDIaxraDJaDKaDLaDMayPaDNayPaxrawtawtaxraDOaBQaDPaDOaxraDQauIawrawrawrawrauIauIauIauIaCVaCVauIaxragbaxraxraDSaDTaIKaDVaAWaDWasCasDasDasJasDasDasKavdasMasOasNasQasPavdasRasTasSasSayaasVasUaElasWaEmaEncHUcHTcHTcHTcHTcHTcHWasXasYasYasYasYasZasYasYasYatbataatdatcateakXaEzaEAakXatKatKaEBaECaEDaEEaEDaEDaEFaaaaacaacaacavkaEGavkaaaaDyaBzaBzaEHaEIaBzaEJavYaveavYaBFaEKavYaELaveavYaEMaENaEOaveavYaveaEPaEQaveavYaveaveaveaveaveaveaveaacabdaaaaamaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaatMaERaESaETaALaBJauEaEUavoavoavoaEVauEaBMaALaEWaEXaEYaxraDJaEZaFaaBSaFbaFcaFdaxraCXayPaFeayPaBQaDPayPayPayPayPayPayPayPayPaxraFfaxraFgaATaFhauIafgatfaPNatqaqOaqOatsaqOaqOaqOattaDUaIJatuaIJaAWaIKavdayaayaatvatAatwayeatBatCasSatDayaayaasfaElasWaAnaEncHXaFDaFDaFDaFDaFDaFEaFFaFDaFGaFHaFIaFDaFJaFKaFDaFLaFMaFLaFLaFNaFLaFLaFLaFLaFLaFLaFPaFQaFQaFQaFQaFQaFRaaaaaaaacaacaFSavYavkaaaaDyaFTaFUaFVaFWavYavYavYaveavYaBFaFXavYavYaveaEOaFYaFZavYaBHavYaveaGaaGbaveavYavYaACavYavYavYaGcaveaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaafaaaaaaaxmaCFaGdauwaALauwawjavoazzazzazzavoawjauwaALauwaGeazvaxraxraxraxraxraDRaGfaGgaGgaGhaGiaGjaGiaGkaGlaGmaGnaxrayPaxraxraxrayPaxraxraxrauIaGoaGoauIaBQaGqaGraGsaGtaGsaGuaAWaAWaAWaDUaAWaAWaAWaAWaAWaGwatEayaatGatFatFatFatIatHatQatJatSatRayaasfaElasWaGHaEncHXaFDaGIaGJaGKaGLaGMaGNaFDaGOaGPaGQaFDaGRaGPaFDaGSaGTaGUaGVaGWatTatVatUatUatWaHbaFRaFQaFQaFQaFQaFQaFRaaaaaaaveaveavkaEGavkavkaDyaHcavYaHdavYaHeavYaveaveaHfaBFaveaHgaveaveavYaHhaHiavYaveavYaHjaHjaHjaHjaHjaHjaHjaHjaHjavYaHiaveaHkaHlaHkaHkaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaafaaaaaaaxmaCFaGdazwazxazwaxlavoavoavoavoavoaxlazwazxazwaGeazvaxraHmaHnaHnaHnaHnaHnaHnaHoaHpaHqaxraxraxraxrayPaxraxrayPaHraxraGmaHsayPayPayPaDRaHtaHtaxraBQaxraHuaHvaHwaxraHxaHyaAWaHzaDUaAWaHAaHBaHCaAWatXavdatYauaatZaucaubavdaudaufaueauhaugauiavdaHNasWaHOaEncHXaFDaHPaHQaHRaHSaHTaHUaFDaHVaGPaHWaFDaHXaGPaFDaHYaHZaIaaIbaIaaAXaIaaIaaIaaujaIeaIfaFQaFQaFQaFQaFQaFRaFLaFLaFLaIgavYavYavYaEJaDyaIhaEOaHdavYaIiaACaIjaBHavYaHdavYavYaIkavYavYavYavYavYaBGavYaHjaIlaImaInaHjaIoaIpaIqaHjavYaEOavkaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaxmaCFaGdauwaxmauwawjaIraIraIraIraIrawjauwaxmauwaGeazvaDRaIsaItaIuaIuaIuaIuaIuaIuaIvaIwaIxaIyaIzaxrayPaIAaDOaGmaIBaxraICayPayPayPaIDaxraHtaIEaxraukaneaHuaIFaIGaxraIHaIIaAWaIJaDUaAWaDUaDUaDUaAWaIKavdavdavdavdavdavdavdaCraseavdavdavdavdavdaINaulaIPaIQcIkaFDaFDaFDaFDaFDaISaITaFDaFDaIUaFFaFDaFFaIVaFDaIWaIXaIYaIZaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaJdaJeaJfaFLaJgavYavYaJhavYaDyaJiavYaJjaJkaJkaJkaJkaJlaJkaJmavYavYavYaACavYavYavYavYaveaACaHjaJnaJoaJoaHjaJpaJqaJraHjavYaEOavkaacaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaAJaJsauwaaaaaaaJtaJuaJuaJuaJuaJuaJvaaaaaaauwcIwcIxaJxaJyaJzaCbaJAaJBaJCaJDaxraJEaIwaIyaJFaIxawtayPaHraxraxraxraxraxraxraxraJGaIDaxraHtaHtaxraGqaBQaJIaJJaJKaGtaJLaJMaJNaDUaDUaAWaAWaJOaAWaAWaJPaJQaJQaJQaJQaJQaJQaJQaJRaJSaJQaJQaJQaJQaJTcIzauncICcIBcIDaFDaGIaGJaJXaGLaJYaJZaKaaKbaKcaKdaKeaKfaKgaKhaKiaKjaKkaIYaIYaIYaKlaIYaIYaumaJbaKmaFQaFQaFQaFQaFQaKmaKnaKoaFLavYavYavYaveaveaDyaDyaDyaDyaDyaDyaDyaDyaDyaveaKpaKqaveaveaveaveaveaveaveaveavYaKraHjaJoaJoaKsaKtaJnaKuaHjavYaEOavkaacaacaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaKvaGdauwauwaxiauwauwauwaxiauwauwauwaxiauwauwaGeaKwaxraIsaJzayPaKxaKyayPayPaxraJEaIwaKzaacaKzaxrayPaKAaxraKBaKCaxraICaFdaKDaKEaKEaKEaKFaKGaKEaKEankaKJaKEaKEaKKaKLaKMaKLaKLaKNaKLaKPaKNaKQaKRaKSaKTaKTaKTaKTaKTaKTaKTaKUaKTaKVaKVaKVaKVaKVaKWaKXaKYaKZaLaaFDaHPaHRaHRaLbaHTaLcaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLnaIYaIYaLoaIYaIYaLpauoaJbaKmaFQaFQaFQaFQaFQaKmaLraKoaFLavYaLsaACavYaLtaveaIgaAEaLuaLvaHeaveaJiaHeaveaLwavYaveaLxavYaveaLyaLzaLAaLBaLBaLBaLCaLDaLEaLFaLGaLHaLIaHjavYavYaveaveaIyaIyaHkaHkaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaLJaLKaLLaLMaLNaLOaLNaLPaLPaLQaLRaLNaLSaLTaLNaLUaLVaxraLWaJzayPaLYaLZayPaMaaxraJEaMbaKEaKEaKEaKEaKIaKEaHqayPaLZaMcayPayPaMdaMeaMfaMgaMhaKFaMhaMhanVanpanXanWanXanYanZaMnaMnaMnaMnaMnaMnaMpaMqaMraKTaMsaMtaMuaMvaMwaMxaMyaKTaMzaMAaMBaMCaKVaMDaJVaMEakXamOaFDaFDaFDaFDaFDaISaMFaMGaMHaMIaMJaMKaMLaMMaMNaMOaMPaIYaIYaIYaIYaIYaIYaIYaumaJbaJcaFQaFQaFQaFQaFQaMQaMRaMSaFLavYavYavYavYavYavYavYaMTaJkaJkaJkaJkaJkaJkaJkaJmavYavYavYavYaBGavYavYaMUaMVaMWaMXaMYaMZaNaaJoaJoaJoaNbaHjavYaACaHeaveaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaNcaNdaNeaNfaNfaNfaNfaNfaNfaNfaNgaNfaNfaNhaNfaNdaNiaxraLWaJzaNjayPayPaNkaNlaxraNmaNnaNoaNoaNoaNoaNoaNpaIwaNqayPaxraNraNraIwaNsaxraxraNtaNuaNuaNxaoaaNxaNxaNxaNxaNyaNzaNAaNAaNAaNAaNAaNAaNAaNCaNDaKTaNEaNEaNEaNFaNEaNEaNGaNHaNIaNEaNEaNEaKVaNJaJVaMEakXamOaFDaGIaGJaNKaGLaNLaNMaMGaMGaMGaMHaMHaMGaNNaNOaIWaNPaIYaIYaNQaIYaIYaIYaIYaumaNRaKmaFQaFQaFQaFQaFQaFNaFLaFLaFLavYaHeaveaveaBHaveaveaHdaveaveaupaveaveaBHaveaHdaLsaveaveaBHaveavYaLsaMUaOcaFYaHjaOdaOeaOfaOgaOhaOeaOiaHjaOjavYaAEaveaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaatMaxmauwaOkaOlaOmaOnaztaztaztaOoaOpaOqaOraOsaOtaOuaOvaOwaOxaJzaxraxraobaxraOyaOyaOzaOAaOyaOyaOyaOyaOyaJEaMbaKEaKEaKEaKEaKEaOBaNsaCXaxraOCaODaOEaoraOGayPayPayPaOHaAWaOIaNAaOJaOKauqaOMaONaNAaNCaOOaOPaOQaOQaORaOSaOTaOTaOUaOVaOTaOWaOXaNEaKVaOYaJVaMEakXamOaFDaHPaHRaHRaOZaHTaPaaPbatoatratpaPeaPfaPgaPhaIWaPiaPjaPjaPkaPjaPlauraurauJaPpaKmaFQaFQaFQaFQaFQaFNaEJaEJaveaveaveaveaDDavYaveaDDaHdaveaPravYaveaPsavYaveaPtaPuaveaPvavYaveaBHaBHaMUaPxaBHaHjaPyaOeaPzaPAaPzaOeaPBaHjavYavYaJiaveaIyaHkaHkaHkaafaPCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaauwaOkaPDaPEaPFaPGaPGaPGaPHaPGaPIaPEaPJaPKauwaaaaxraPLaPMaPNaPNaPOauLaOyaPQaPRaPSaPTaPUaPVaPQaOyaPWaPXaPYaMhaMhaMhaMhaMhaPZaNraxraQaayPayPayPaOGayPayPayPaQbaAWaOIaNAaONaQcauMaQeaONaNAaQfaQgaQhaQiaQjaQkaQlaQmaQnaQoaQhaQpaQqaQraOTaQsaQtaQuaQvakXamOaFDaFDaFDaFDaFDaQwaITaQxaQxaQxaQxaQxaQxaQyaQxaQzaQAaQBaQCaQDaQEaQFauNaQEaQHaQIaQJaFQaFQaFQaFQaFQaFNauOaQLaQMaveaQNaveavYavYaveavYaHdaveavYavYaveavYavYaveaHdaACaveavYavYaveauPavYaMUaQPaHeaHjaHjaHjaHjaHjaHjaHjaHjaHjauRaveaveaveaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaauwaOkaPDaQRaQSaQTaQUaPEaQVaQWaQXaQYaPJaPKauwaaaauwauTauSauwauwauwauUaOyaPQaRdaReaRfaRgaRhaPQaOyaxraRiaRjaRjaRjaRjaRjaRjaRkaRjaRjaAvaAuaRnayPaOGayPayPayPayPaAWaOIaNAaONaRoauWaRqaONaNAaDUaRraKTaRsaRtaRuaNEaRvaRwaRxaKTaNEaNEaRyaNEaRzaOYaxXauXakXamOaFDaGIaGJaRAaGLaNLaITaQxaRBaRCaRDaRDaQxaREaRFaQxaQxaFLaFLaFLaFLaRGaZEaFLaFLaFLaRIaRJaRJaRJaRJaRJaRKaDDaRMaQMaveaveaveaveaveaveaRNaROaveaveaveaveaveaveaRPaRQaRRaRSaRSaRSaRTauYaRVaRWaRXaRYaRZaSaaSbaRZaScaSdaSeaSfaSgaSgaShaSiaSjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaxmauwaqgapBaSmaSnaSoaSnaSnaSpaSoaSnaSqaqhaqiauwaxmauwavaauZavcavbavbavbaOyaPQaSzaSAaSBaSAaSAaPQaOyaSCaSDaSEaSFaSGaSHaSIaSJaSKaSLaRjaSMaSMaSMaSMaOGaSOaSOaSOaSOaSOaOIaNAaSPaSPavuaSRaSPaNAaDUaSSaKTaSTaSUaSVaNEaSWaSXaSYaSZaTaaTbaKTaTcaKVaOYaxXaMEakXamOaFDaHPaHQaHRaTdaHTaTeaTfaTgaThaTiaTiaTjaTkaTlaQxaTmaTnaToaTpaTqaTraZEaaaaaaaaaaaaaaaaaaaaaaaaaaaaveaLsaTtaTuaTvaTwaveaIiavYaLsaHdavYaveaaaaveaQLaTxaTxaTyaTzaTAaTAaTAaTAaTAavvaTCaTDaTEaTFaTGaTHaTIaTGaTJaTKaTLaSfaTMaTNaSfaTOaSfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaTPaTQaTRaPDaTSaTTaSnaTUaTVaTWaSnaTXaTYaPJaTZaUaaUbauwavAavzavCavBavEavDaOyaUjaSAaSAaSAaSAaSAaSAaUkaUlaSDaUlaUlaUlaUlaUlaUlaSKaUlaRjaUmaUnaUoaSMaOGaSOaUpaUqaUraSOaUsaNAaUtaUuavFaUuaUwaNAaDUaUxaKTaKTaSZaKUaUyaUzaUAaKTaKTaNEaUBaKTaUCaKVaOYaxXaMEakXamOaFDaFDaFDaFDaFDaUDaUEaUFaUGaUHaUIaUIaUIaUIaUJaQxaUKaTnaTnaULaUMaUNaZEaveaveaveaveaveaveaveaveaveaveaveaveaveaUQaveaveaveaveaQLaURaTxaUSaUTaUSaUUaUVaUWaUXaUYaUZaUZaUZaUZaVaavGaVcaVaaVaaVaaVaaVaaVdaVaaSgaVeaVfaVgaSgaSgaVhaViaSfaVjaVjaVjaVjaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaVkaVlaVmaPDaTSaPGaSoaVnaVoarVaSoaPGaTYaPJaVqaVraVsauwavIavHavKavJavbavLaOyavMaSAaSAaSAaSAaSAavOaOyavPavRavQavSaUlaUlaUlawsawaawvaRjawxawwawyaSMaVQaSOaVRaVSaVTaSOaVUaNAaVVaVWavFaVXaVYaNAaDUaVZaKVaWaaWbaSVaNEaSWaWbaWcaKTaWdaWdaKTaNEaKVaWeaDeaWfakXamOamOamOamOamOaCqaISaITaQxaWgaWhaQxaWiaQxaWjaWkaQxaWlaTnaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWwaWxaWwaWwaWyaWzaWwaWwaWAaWBaWCaWDaRSaWEaWFaWGaWHaWIaWHaWJaWKaUZaWLaWMaUZaWNaWOaWPaVaawzaWRaVaaWSaWTaWUaWVaWWaWXaWYaWZaXaaXbaXbaSgaXcaViaSfaXdaXeaXdaXfaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMauwauwaqgapBaXhaPGaXiaPGaPGaPHaXiaPGaXjaqhaqiauwauwauwawBawAawDawCaxmawBaOyaOyaOyaOyaXlaSAaXmaXnaOyaXoaSDaUlaUlaUlaXpaUlaUlaSKaXqaRjaXraXsaXtaSMaOGaSOaXuaXvaXwaSOaXxaNAaXyaXzavFaVXaXAaNAaDUaXBaKVaXCaWbaXDaNEaXEaWbaXFaKTaTbaTbaKTaTcaKVaXGaXHaXIakXaCqakXakXakXakXakXaXJaXKaQxaXLaXMaQxaXNaQxaXOaQxaQxaXPaTnaTnaXQaUMaXRaXSaXTaXUaXVaXVaXWaXXaXVaXYaXZaYaaYbaYcaMWaYdaMWaYeaYfaYgaYhaYiaYjaYkaYkaYkaYlaYmaUZaYnaYoaYpaYqaYraYsaVaawEaYuaVaaYvaYwaYxaYyaWWaYzaSgaYAaYBaXbaXbaSgaYCaYDaSfaYEaYFaYEaYFaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacatMaYGaYHaTRaPDaYIaPGaSoaYJaPGawFaSoaPGaYLaPJaTZaYMaYNaYOaztaYPaztazuaztaYQaYRaYSaYTaOyaYUaSAaSAaYVaOyaYWaSDaUlaYXaYYaYZaZaaZbaZcaZdaRjaZeaZfaZgaSMaOGaSOaZhaZiaZjaSOaOIaNAaVXaZkavFaVXaXAaNAaDUaRraKVaZlaWbaNEaNEaNEaZmaZnaKVaaaaaaaZoaZpaZqaZraZsaZtaZuaZvaZoaaaaaaaZwaZxaZyaZzaQxaZAaXMaXMaXMaZBaXMaZCaQxaUMaUMaZDaUMaUMaUMaZEaZFaZGaZGaZHaZIaZJaZGaZKaZLaZLaZMaZNaZLaZOaZLaZPaYkaZQaYlaYkaYkaYkaZRaZSaYlaYmaUZaZTaZUaZVaZWaZXaZYaVaawGbaaaTGbabbacbadbaebafbagbahbaibajbakbakbalbahbambanbahbaoaSgaSgaVjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaALbapaztaYPaPDaYIaPGaSnbaqaPGbaraSnaPGaYLaPJaztaztaPKaYOaztaYPaztazuaztaztaztaztaztaOybasbatbasaOyaOybaubavbauaRjaRjaRjaRjbaubawbaxaRjbaybazbaAaSMbaBaSObaCbaDbaEaSObaFaNAbaGbaHawHbaJaNAaNAaAWbaKaKVaKVaKVaTbaUyaTbaKVaKVaKVaZoaZoaZobaLaZsaZsaZsaZsaZsbaMaZoaZoaZoaZwbaNaZybaOaQxaQxaQxaQxaQxaQxaQxaQxaQxbaPbaQbaQbaRbaSbaTbaUbaVbaWaZGbaXaZIbaYbaZbbaaZLbbbbbcbbdaZLbbeaZLbbfbbgbbhbbibbjbbjbbkbblbbmaYlaYmaUZbbnaZUbboaZWaZXbbpaVaawIbbrbbsbbtbbubbvaWWaWWaYzaSgbbwbbxbbybbybbybbybbzbbybbAbbBbbCaSgaVjaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDaYIaPGaSoaSoaXiaSoaSoaPGaYLaPJaztaztaPKbbEbbFbbGbbHbbIbbHbbEaztaztaztbbJbbKbbLbbLbbMbbLbbLbbNbbLbbLbbLbbLbbLbbLbbObbPbbQbbKbbRbbSbbTbbUbbVbbLbbRbbWbbXbbYbbZbcabcbawJbcabcdaXHbcebcfbcgbchbciaZuaZuaZuaZraZsaZsbcjaZsaZsbckbclbcmbcnbcobcpbcqaZsaZsbcjbcrbcsbctbcubcvbcwbcxbcyaZsbczaZsaUMbcAbcBbaQbaQbaQbcCbcDbcEbcFbbabcGbbabcHbbabbabcIaZLbbbbbcbcJbcKbcLaZLaZLbcMbcNbcObcPbcQbcRbcSbcTaYlaYmaUZbcUbcUbcVbcWbcUbcUaVaawKbcYaVaaWWaWWaWWaWWaVaaVaaSfbcZaVfaSgaSfbdabdbbdcbddaSfbdebdfbdfaVjaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaatMbdgbdhbdiaPDbdjaPGbdkaPFaPGaPIbdlaPGbdmaPJaztaztbdnbbEbdobbGbdpbdqbdrauwaztaztbdsaYObbKbdtbdubdvbdwbdxbdybbLbbLbbLbbLbbLbbLbbLbbPbbLbbKbbRbbLbbLbdzbdAbbTbdBbdCbdCbdDbbTbbTbdBawLbbTbdFbdGbdHbdIbdJaZsaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsbdKbdLbdMbdNbdObdPbdQaZsaZsbcjaZsaZsaZsaZsaZsaZsaZsaZsaZsbdRaZsaUMbaQbaQbaQbdSbdTbdTbdUbdVbdWbdXaZGbdYbdZbeabebbecaZLbedbbcbeebefbcLbegaZLaYkbehaYkaYkaYkbeibejbeiaYlaYmaUZbekbcUbcUbelbcUbemaVaaVaaVaaVaaVaaVaaVaaWXaVabeobepbeqberbesaSfbetbetbetbetbetbetbetbetbeubeubevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaALbbDaztaYPaPDbewbexbexaPFaPGaPIbeybeybezaPJaztaztbeAbbEbdobbGbeBbeCbeDauwaztaztaztaYObbKbbLbeEbeFbeFbeFbeGbeHbeIbeFbeJbeFbeFbeFbeKbeFbeLbeMbeNbeNbeObePbeQbeRbeSbeTbeUbeVbeVbeWawMbeYbeZbfabfbbfcaZsbfdbfdbfdbfdbfdbfdbfdbfdbfebfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbfdbffbfdbfdbfdbfdbfdbfdbfdbfdaZsaZsaZsaUMbfgbfgbfgbfgbfgbfgbfhbaUbcFbfiaZGaZGbfjaZGaZLaZLaZLbfkbflbfmbcLbcLbfnaZLbfobfpbfqbfrbfqbfqbfsbftaYlaYmaUZbfubfubfvbfwbfxbfxbfyaUZbfAbfBbfCaSfbfDbfEbfFaSgaSgbfGbfHaSgaSfbfIbfJbfKbfLbfMbfNbeubfObfObfObevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaaaaALbfPaztaYPbfQbfRbfRbfRbfPaztaPKbfSbfSbfSbfTaNfaNfbfUbfVbfWbfXbfYbfZbbHbbEaztaztaztbgabgabgabgbbgcbgcbgcbgcbgcbgcbgdbgebgcbgcbgcbgcbgcbgfbggbghbggbgibgjbgkbbLbbLbglbgmbgnbbLbgobbWbbLbgqbgqaZsbgrbciaZoaZoaZoaZoaZoaZoaZoaZobgsbgtbgubgvbgubgubgubgwbgubgxbgubgybgsaZoaZoaZoaZoaZoaZoaZoaZoaZraZsaZsaZGbgzbgzbgzbbabbabgAbbabaUbgBbgCbgDbgEbgFbgGaZLbgHaZLaZLbgIaZNaZLaZLaZLaZLbfqbgJbgKbgKbgKbgKbgLbfqaYlaYmaUZbgMbcUbfvbfwbcUbcUbgNaUZbgObgPbgQaSfaSgbgRbgSbeobeobgTbgUaSgaSfbgVbgWbgXbgYbgWbgZbeubhabhabhabhbbhcbhcbhbaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaacaacatMbfPaztaYPaztaztaztaztbfPbhdaPKaztaztaztbheaztaztaPKaYOaztbhfbhgbhhaNfaNfaNhbhiaztbgabhjbgabhkbgcbhlbhmbhnbhobhpbhmbhqbhrbhsbhtbhubhvbgfbhwbhxbhybgibhzbgkbgkbhAbgkbgkbgqbgqbhBawNbgqbgqbgqbhDaZsbciaZoaaaaaaaaaaaaaaaaaaaaabgsbhEbhFbhGbhHbhIbhJbhKbhLbhMbhNbhObgsaaaaaaaaaaaaaaaaaaaaaaZoaZraZsbhPaZGbhQbhRbhRbbabhSbhTbhUbaUbgBbgCbhVbbabhWbhXaZLbhYbhZbiabibbicbidbiebifaZLbfqbigbihbihbihbihbiibfqaYlbijaUZbikbikbfvbfwbilbilbimaUZaUZbinaUZaSfbiobfEbfFaXbaXbbfGbfHaSgaSfbevbevbipbiqbevbeubetbirbhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadatmaafaacaacatMbitaVlbiubivbiwbixbiybizbiAbiBbiCbiDbiEbiFbiGbiFbiHbiIbiJbdibiKaztbiLaztazubiMbiNbgabiObgabhkbgcbiPbhmbhmbhmbhmbhmbhqbiQbhmbhmbhmbhvbgfbiRbhxbhxbgibhzbgkbiSbiTbiTbiUbgqbiVbiWawObiYbiZbjaaZsaZsbciaZoaaaaaaaaaaaabgsbgsbgsbgsarWbjcbjdbjebjfbjgbjhbjibjjbjkbjlbgsbgsbgsbgsaaaaaaaaaaaaaZoaZraZsaZsbjmbbabbabbabbabjnbjobjpbjqbgBbjrbhRbbabjsbbabjtbhYbjubjvbjwbjxbjybjzbhYbjAbjBbjCbihbjDbjEbihbjFbfqaYlaYmaUZbcUbcUbfvbfwbcUbcUbcUawPbjHbcUbjIaSfbjJbjKbjLaXbaXbbjMbjNbjOaSfbjPbjQbjRbjSbjTbhabhabhabhabhabjUbhcbhcbjVbjWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacatMaALaALbjXbjXbjYbjYbjYbjZbkabjZbjYbjYauwaYObkbaYOauwbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbgabiObkfbkgbgcbkhbhmbkibkjbkkbklbkmbknbkobhmbhmbkpbgfbkqbkrbksbgibhzbgkbktbkubkvbkwbgqbkxbkyawQbkAbkBbjaaZsaZsbciaZoaZoaZwbkCbgsbgsbkDbkEbkFbkGbkHbkIbkJbkKbkIbkLbkIbkIbkMbkNbkObkPbkQbgsbgsbkCaZwaZoaZoaZraZsaZsaZGbkRbbabgAbbabkSbbabbabbabkTbkUbbabkVbbabkWaZLbhYbhYbkXbkYbkZblablbbhYblcbldblebihblfblgbihblhbliaYlaYmaUZbljbljbfvbfwblkbcUbcUbrSbcUblmblnaSfbloblpblqaXbaXbblrblsaSgaSfbltbhablublvblwblwblwblwblxbhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaabjXblyblzblzblzblzblzblzblzblAblBblCblDblCblEbkcblFblGblHblIblHblJblKblHbkcbiObiOblLblMbgcblNblOblPblQblRblSblTblUblVblWblXbhvbgfbgfbgfbgfbgibhzbgkbgkbgkbgkbgkbgqblYbkAawRbkAbkAbjaaZsaZsbciaZuaZubmabmbbmcbgsbmdbmebmfbmgbmhbmgbmibmjbmkbmlbmmbmnbmobmmbmpbmqbmrbgsbmsbmbbmtbmuaZuaZraZsaZsbmvbbabhSbmwbhUbbabbabgAbbabgBbgCbbabbabbabbabmxbhYbhYbmybmzbmAbmBblbbmCaZLbmDblebmEbihbihbihblhbmFaYlbmGaUZaUZaUZbfvbfwbmHbmIbcUawSbmKbmLbmMaSfaSgbjKbjLaXbaXbbmNbjNbmOaSfbmPbhabjRcIFbmRbmSbmTbhabjRbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaabjXbmUbmVbmWbmWbmWbmWbmXbmYbmZbnabnbbncbndbnebkcbnfbngbnhblFbnibnjblKblHbkcbnkbnlbnmbgabgcbnnbnobnpbnqbnrbnrbnsbnrbnrbnrbntbnubgcbnvbnwbnxbnybnzbnAbnBbnCbgabnDbgqbnEbnFawTbnHbnHbjaaZsaZsaZsaZsaZsbnIbnJbnKbnLbnMbnNbnObnPbnQbnRbnSbnTbnUbnVbnWbnXbnYbnZbnOboabobbocbodboebofbogbohboiaZsaZsaZGbojbbabokbbabbabhSbolbhUbcFbgCbombgCbgCbonaZLboobhYbhYbopbhYbhYblbboqaZLbfqblebihbihbihbihblhbfqaYlborbosbotboubovbowboxboxboybfvbfvbfvbfvbozaXbaXbaXbaXbaXbboAboBboCboDboEboFcIHcIGboIboJboKboLbjRbhabevaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaadaadaadaadaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNboOboPboQboOboRbmVboSboTaztbndboUboVbkcboWboXboYboZboZbpabpbbpcbkcbpdbiObnmbpebpebpebpfbpgbpebphbpibpjbpkbplbplbpmbpnbgcbpobppbpqbprbpsbptbpubpvbpwbpwbpxbpxbpxbpxbpxbpzbgqaZsaZsbpAbpBbpCbpDbpEbpFbgsbpGbpHbpIbpJbpKbpLbpLbpMbpNbpObpPbpQbpRbpSbpIbpTbpGbgsbpFbpEbpUbpVbpBbpWaZsaZsbmvbbabbabbabbabbabbabokbbabaYbbabpXbhRbhRbbabpYbpZbhYbhYbhYbhYbhYbqabqbaZLbqcbqdbihbqebqebqfbqdbqgbqhbqibqjbqjbqkbqlbqmbfvbfvbqnbfvbfvbfvbfvbozbqobqpbqpbqpbqpbqpbqqbqrbqsbqtbqubqvboHboIbqwboKboLbqxbhabevaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaboMbmVboNbqybqzbqAbqyboRbqBbjYboTaztbqCbqDbqEbqFbqGbqHbqIbqIbqIbqIbqJblFbkcbqKbqLbnmbpebqMbqNbqObqPbpebqQbqRbqSbgcbqTbqUbqVbqWbgcbqXbqYbqZbrabqZbqZbrbbqZbqZbrcbrdbrdbrdawVbrdbrfbrgbcjbcjbrhbribribribribribribrjbrkbrlbpKbpMbrmbrnbrnbrobrnbrnbrpbpObpRbrqbrrbrsbrqbrqbrqbrqbrqbrqbrtbcjbcjaZGbrubrvbrwbrxbbabbabbabrybrzbrAbbabrBbrCbrDaZLaZLbrEbrFbrGbrGbrGaZLaZLaZLbrHbihbihbrIbrIbrJbrKbrIaYlbrLbrMbrNaUZbrObrPbrQbmIbcUaxybrSbmIbrTaSfbrUaSgbrVaXbaXbbrVaSgbrWaSfbrXbrYbrZbsabsbboIboKboLbhabhabevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaacboMbmVbmVbscbscbscbscbmVbsdbjYboTbndbsebndbsfbkcblHbngblHblFbsgblHbshblHbkcbsibsjbskbpebpebpebslbsmbpebqRbqRbqRbgcbqTbqUbqVbqWbgcbqXbqYbqZbsnbsobsobspbsqbqZbsrbssbstbsubrgbrgbrgbrgaZsaZsbpAbribswbsxbsybszbsAbsBbsCbsDbsEbsFbrnbrnbsGbsHbsGbrnbrnbsIbsJbsKbsLbsMbsNbsObsPbsQbsRbrqbpWaZsaZsaZGaZGaZGaZGaZGbjmbmvbjmbsSaZGaZGaZGaZGaZGaZGaZLbsTbsTbsTbsTbsTbsTbsUbsTaZLbrIbsVbsVbrIbrMbrMbrMbrMaYlbrLbrMbrNaUZaUZaUZbsWaUZbsWaUZbsWaUZaUZaSfaSfbsXbsXbsXbsXbsXbsXaSfaSfbsYbsZbtaboHbtbboIbtcboLbhabhabjVbhcbhcbjVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaaaaaaaacbjXbmVbmVbmVbmVbmVbmVbmVbtdbjYbtebtfbtgbtfbthbkcbkcbkdbkcbkcbkcbkcbkebkcbkcbtibtjbtkbpebqMbtlbslbtmbpebtnbtobtnbgcbqTbqUbqVbqWbgcbqXbqYbqZbtpbtqbtqbspbtqbqZbsrbtrbtsbtsaxCbtubtvbrgbtwaZsbpAbtxbtybsAbtzbtAbtAbtBbtCbtDbsEbtEbrnbrnbsGbtFbsGbrnbrnbtGbsJbtHbtIbtJbtKbtLbtMbsRbtNbrqbpWbtObtPaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbtRbrMbrMbrMbrMbtSbrMbrMbrMbrMbrMbrMbrMbrMbtQbrMbrMbrMbrMbrMbrMbrMbtTbtUbtVbtWbrMbtXbrMbrMbrMbrMbrMbrMbrMbrMbrMbtSbtZbrMbrMbrMbrMbrMbrMbtQbuabubbucbudbuebufbugbuhbhabhabhabevbevbevbisaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaacaacbjXbuibujbukbmVbmVbukbulbumbjYaztaztazuaztbunbuobupbuqburburburbusbutbuubgabuvbqXbhkbpebpebpebuybuzbpebgcbgcbgcbgcbqTbqUbuAbuBbgcbqXbqYbqZbtpbuCbsobuDbuEbqZbsrbuFbtsbtsbtsbtsbuHbrgbuIaZsbpAbuJbuKbsAbuLbuMbuNbuObuPbuQbsEbuRbsGbrnbuSbuTbuSbrnbsGbrpbsJbuUbtIbtJbtKbuVbtMbsRbsRbrqbuWaZsaZsaXHbtQbrMbrMbrMbrMbrMbrMbrMbrMbrMbuXbrMbrMbrMbrMbrMbuYbqjbqjbqjbqjbuZbrMbtQbrMbrMbrMbrMbrMbrMbvabvbbvcbvdbvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvebvgbvhbvibvjbvkbvlbvmbhabhabhabhabhabhabvnbhcbhcbvnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbjXbvobvobvpbmVbmVbvqbvqbvqbjYaBOaztazuaztaYPbvrbvsbvrbvrbvrbvrbvtbvubgabgabgabqXbnmbpebqMbvwbvxbtmbpebvybvzbvybgcbgcbgcbvAbvBbgcbqXbqYbqZbvCbvDbvEbvFbvGbqZbsrbrgaoebtsbtsbvIbvJbvKbvLaZsbpAbuJbvMbsAbuLbvNbvObuObuPbvPbsEbvQbvRbrnbvSbvTbvUbrnbvVbvWbsJbvXbvYbvZbwabwbbwcbsRbwdbrqbwebwfbwgaXHbtQbrMbrMbwhbrMbwibwjbwjbwjbwjbwkbwjbwjbwlbrMbrMbrMbrMbrMbrMbwmbwnbwobtQbrMbrMbrMbrMbrMbwpbwqbwrbwsbwtbrMbrMbrMbrMbrMbwubwvbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbrMbtQbwwbwxbwybwzbjSbjTbhabhabhabwAbwBbevbevbevbevaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacbjXbwCbmVbwDbwEbwFbmVbwGbwHbwIbjYaBOaztazuaztbwJbvrbwKbwLbwMbwNbwObvtbwPbwQbwRbwRaxDbwTbpebpebpebwUbwVbpebgabgabgabgabwWbnxbwXbwYbnxbwZbqYbqZbxabsobsobxbbsobqZbxcbrgbxdbtsaxEbtsbxfbxgbxhaZsbpAbribsAbxibxjbxkbxlbxmbuPbxnbxobpLbxpbxqbxrbxrbxrbxsbxtbpQbxubxvbxwbxxbxybsRbxzbsRbxAbrqbpWaZsaZsbxBbxBbxBbxBbxBbxBbxBbxCbxDbxDbxDbxEbxFbxCbxGbxGbxGbxGbxGbxHbxHbxHbxIbxHbxHbxHbxHbxJbrMbwubxKbxLbxMbxNbrMbrMbrMbxObxObxPbxPbxPbxPbxPbxRbxSbxSbxSbxTbxSbxUbxVbxSbxSbxWbxXbxXbxXbxXbxYbxZbyabybbetbetbetbetbetaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALatMbjXbycboRbmVbmVbydbmVbmVbmVbtdbjYaBOaztazuaztbyebvrbyfbygbygbyhbyibyjbykbylbnxbnxbsjbynbpebqMbyobwUbypbpebyqbyqbiObyrbysbpqbytbyubyubyubyvbqZbtpbywbyxbyybyzbyAbyBbrgbyCbtsaxFbyEbyFbyGbyHbyIbyJbribyKbrlbyLbyMbyNbyObuPbsAbyPbyQbyRbyQbyQbySbyQbyQbyTbyQbyUbsRbyVbyWbyXbsRbyYbsRbyZbrqbpWaZsbzabxBbzbbzcbzdbzebzfbxBbzgbzhbzhbzhbzibzjbzjbzkbzlbzmbznbxGbzobzpbzqbzrbzpbzsbztbxHbxLbzubxLbxLbxLbzvbxNbzwbzxbzwbzybzybxPbzzbzAbzBbxPbzCbzDbzCbxPbzEbzFbzEbxXbzGbzHbzGbxXbzIbzJbxXbzKbzLbevbevbetaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmbzMaztaDFbzNbzNbjYbjYbjYbjYbzObzPbzObzObjYbjYbjYauwaYObzQaYObzRbvrbzSbzTbzTbzUbzVbvrbuvbiObzWbzXaxHaxGaxIaxIaxIaxIaxIaxIaxKaxJaxMaxLaxOaxNaxNaxNaxNaxNaxNaxNaxQaxPaxNaxNaxNaxRbAjbAkbAlbAmaxSbAmbAobApbAqbArbAsbribAtbrlbrlbrlbrlbyObuPbAubribAvbAwbAxbAxbAxbAxbAxbAybAvbrqbAzbtIbAAbABbsRbxzbsRbsRbrqbpWaZsaZsbxBbACbADbAEbAEbAFbAGbzjbAHbzjbzjbzibzjbzjbzkaxTbAJbAKbxGbALbzpbALbAMbALbANbzpbxHbAObAObAPbAQbxLbARbxNbASbATbAUbAVbAVbxPbAWbAXbAYaxUbBabBbbBcbxPbBdbBebBfbxXbBgbBhbBgbBibBjbBjbxXbBkbzLaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBlaxmaxmazAbBmbiAbiAbBnbBobBobBobBobBpbBobBobBobBnbBqbBrbiAbBsbBtbncbvrbBubBvbBwbBxbBybBzbvrbiObBAbgabBBbBCbBDbBDbBDbBEbBEbBEbBEbBEbBEbBFbBGbqZbBHbBIbBJbBKbBLbBMbBNbBObqZbBPbBQbsvbrgbrgbBRbtsaxVbtsbtsbrgbxhbcfbpAbAvbyQbBTbBUbBVbrlbBWbBXbribriaacbAwbBYbBZbCabCbbCcbAyaacbrqbrqbCdbtJbCebsRbCfbCgbChbrqbpWaZsaZsbxBbCibADbCjbCkbClbCmbzjbCnbCobCpbCqbCrbCsbzkaxTbCuaxWbxGbALbzpbALbAMbALbANaxYbxHaybaxZaydaycbxLbzvbxNayfaygaygayOayDayVayUayXayWbAYbAYbAYbCTbxPbCUbCVbCWbxXbCXbBjbBjbCYbCZbDabxXbBkbzLbDbbDbbDbbDbaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDcbDdawgbDdaztaztaztbDebDfaNfbDfbDgaNfbqDbDhbDfaNfbDfbDiaNfaNfbDjaYPbDkbvrbDlbDmbDnbDobDpbDqbDrbptbDsbDtbDtbDubDtbDtbDtbDubDtbgabgabqZbqZbAhbDvbqZbBLbBLbBLbBLbBLbBLbDwbDxbDybDzbDAbDBbDCbyEbDDbyEayYbtsbDFbrgbxhbDGbDHbDIbDJbDKbDLbDMbrlbDNbuPbriaacaacbDObDPbDQbDRbDSbDTbDUaacaacbrqbDVbDWbrqbrqbrqbrqbDXbrqbDYaZsaZsbxBbDZbEabEbbAEbAFbEcbzjbEdbEebEfbEgbEhbEibxGayZbEkbElbxGbALbzpbALbAMbALbANbzpbxHbxLbxLbxLbxLbxLbzvbxNbEmbEnbEobEpbEqbErbEsbEtbEubEubEwbAYaszbxPbEybCVbEzbxXbEAbEBbECbEDbEEbEFbxXbBkbEGbEHbEIbEJbEIaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmaxmaxmazAbEKaNfbDjaxmbELaxmazAaztaztazvaxmbEMaxmbENbEObEPbEPbEQaAGbvrbERbESbETbEUbEVbEWbvrbEXbEXbDtaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbEZbFabFbbFcbFdbBLbBLbBLbBLbBLbBLbFebFfbFgbAmbFhbFibApbFjbxgazabrgbFlbrgbFmbFnbcjbAvbFobFpbFpbFpbFpbFqbFrbFsaacaaabAwbFtbDQbDQbDSbFubAyaaaaacbFvbFwbFxbFybFzbFAbFvazbbFvbFCaZsbFDbxBbFEbFFbFGbFHbFIbxBbFJbEdbEebFKbFLbzjbFMbxGazcbFObFPbxGbzpbFQbFRbFSbFTbFUbFTbFVbFWbFXbFWbFWbFWbFYbxNbFZbATbGabGbbGcbGdasAbGfbGgbGgbGibGjbGkbxPbGlbGmbGnbxXbGobGpbGqbGrbBjbGsbxXbGtbGubGvbGwbGwbGwbGwbGwbGwbGxaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxmayuaztaztbGybGybGzawgaxmbzMbGAbGBbGCaxmawgbGzaxmatMbGDatMatMatMbGEbEUbESbGFbGGbGHbGIbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabEYbGJbGKbGLbGMbGNbGNbGNbGNbGNbGNbGNbGNbGObGPbGQbGRbGSbGTbxgbGUbtsbGVbGWbGXbxhbGYbGZbAvbAvbFsbHabHbbHcbHdbHebFsaaaaaabAwbHfbHgbHhbHibHjbAyaaaaaabHkbHlbHmbHnbFvbHobFvazbbFvbFCaZsbHpbxBbHqbFFbHrbAEbHsbxBbHtbHubHvbHwbHxbzjbHybxGbzkbHzbHAbxGbHBbHCbHDbHEbHFbHGbHHbHHbHHbHHbHHbHHbHHbHIbHJbHKbEnbEobHLbHMbHNbHObHPbHPbHPbEwbAYbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabIbbIcbxXbIdbIebIfbIgbIgbIgbIgbIgbIhbIibIjbIjbIjbIjaaaaaabIkbIlbImbIlbInaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatMatMaALaALaALaALaxmbELaxmaxmaxmaxmaxmaxmbEMaxmaacaacaacaacaacaacbGEbIobGEbESbESbGEbGEbGEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbIqbGKbBLbBNbIrbIrbIrbIrbBLbBLbBLbBLbIsbItbIubIvbIwbIxbIybIzazdbtsbtsbGXbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMaacaaabINbIObIPbIQbIRbISbITaaaaacbFvbIUbIVbIWbFvbIXbFvazbbFvbIYaZsbHpbxBbIZbFFbJabJbbJcbxBbJdbEdbzibHwbJebJfbHtbHtbJgbJhbJibJjbJkbJlbJmbJnbJobJpbJqbJrbJsbJtbJubJvbJwbzvbJxbJybJzbJAbJBbJCbxPbJDbHPbHPazebEwbAYbJFbJGbJHbJIbJJbHWbJKbJLbJMbJNbBjbJObJPbJQbxXbJRbJRbJRbJRbJRbJRbJSbIibJTbJUbJVbJWaaaaaabJXbJYbJZbJYbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaabKaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabKbbKcbKbbKdbKebKfbKgbKhbBLbBLbBLbBLbBLbKibqZbqZbKjbtsbKkbKlbKmbxgbDFbtsbKnbtsbKobFCbGYbKpbKqbKrbKsbKtbKubKvbIKbHebIMaaaaaaaaaaaabKwbKxbKyaaaaaaaaaaaabKzbKAbKBbKzbKzbKzbKzbKCbKzbKDbcjbKEbxBbKFbKGbKHbKIbxBbxBbKJbKKbKLbzjbzjbzjbzjbKMbKNbKObKPbKPbKPbKQbKRbKSbKTbKUbJqbKVbKWbKXbJubKYbJwbKZbLabLbbLcbLcbLdbLebxPbLfbAYbAYazfbEwbAYbLhbLibLjbCVbLkbHWbHWbLlbLmbLnbLlbHWbxXbxXbxXbLobLpbLqbLrbLsbJRcIJcIIbOwbLwbLxbJWbLybLybLzbLAbLBbLAbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabLCbLDbLCbLEbBLbBLbBNbIrbIrbIrbIrbBLbBLbLFbLGbqZbLHbtsbKkbKlbLIbxgbDFbtsbtsbtsbKobFCbLJaZsbKqbKrbLKbLLbLMbLMbLNbLObFsaacbLPbLPbLPbKwbLQbKybLPbLPbLPaacbLRbLSbLTbLUbLVbLWbLXbLYbKzbLZaZsbMabMbbMcbMdbMebMfbMgbMhbMibMjbMkbMlbMlbMlbMlbMlbMmbMnbMlbMlbMlbMobMpbKUbKUbKUbJqbMqbKUbMrbMsbJvbJwbzvbxNbMtbMubMvbMwbMwbxPbMxbMybMzbHSbMBbAYatxbHSbMDbMEbMFbMGbMHbMIbMJbMKbMLbMMbMNbMObMPbMQbMRbMRbMRbMSbMTbMUcIZbMWbMWbMXbMYbMZbMYbNabLAbLAbLAbNbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbNcbBLbBLbBNbBLbBLbBLbBLbBLbBLbLFbNdbqZbNebNfbDDbNgbyEbNhbyEazgbtsbNjbGXbNkbLJaZsbKqbKrbFsbNlbNmbNnbNobNpbFsaaabNqbNrbNsbNtbNubNvbNwbNxbNqaaabLRbNybNzbNAbNBbNCbNCbNDbNEbNFbNGbdHbNHbNIbNJbNKbNLbNMbNNbNMbNMbNObNPbNQbNRbNRbNRbNSbzjbNTbzjbzjbJqbNUbKUbKUbNVbJqbNWbNXbNYbNZbOabJwbxMbxNbObbObbObbObbObbxPbHSbHSbHSbHSbOcbOdbOcbHSbOebOfbOgbOhbOhbOhbOibOjbOkbOlbOmbOnbOobOpbOqbOqbOrbOsbOtcJdcJbbLvbOxbOybJWbLybLybLzbLBbLBbLBbLzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaaaaaaaaaaaaaaaaacaacaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOzbLCbLDbLCbGJbOAbBLbDwbFdbBLbOAbBLbBLbBLbLFbOBbqZbOCbtsbKkbODbtsbxgbtsbtsbtsbOEbGXbNkbLJbpAbKqbOFbFsbOGbOHbOIbOJbHebFsaaabNqazhbOLbOMbONbOObOPbOQbNqaaabLRbORbOSbOTbOUbOVbOWbOXbKzbOYaZsaZsbHtbHtbOZbPabKNbPbbPcbPdbPebPebPdbPcbPdbPcbPcbPcbPdbPcbPfbxFbJqbPgbPhbKUbNVbJqbNWbPibKUbKUbPjbJwbPkbPlbPmbPnbPobOhbOhbPpbOhbOhbPqazibPsbPtbPubOhbPvbPwbPxbPybPybPybPzbPzbPzbPzbPzbPAbPBbPCbPDbPCbPEbPCbJRbPFbIibIjbIjbIjbIjaaaaaabJXbLAbLAbLAbJXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbPIbPJbPIbPIbPIbPIbPIbPKbPLbBLbLFbPMbqZbPNbtsbPObPPbPQbPRbPSbPSbPSbPRbPRbPUbLJbaMbPVbKrbFsbPWbPXbPYbPZbQabFsaaabNqazkbQcbQdbQebQfbQgbQhbNqaaabLRbQibQjbQkbQlbOVbOWbOXbKzbQmaZsaZsbQnbQobQpbPabQqbQrbPcbQsbQtbQubQvbQwbQxbQybQybQybQzbPcbzjbzjbJqbQAbKUbPibKUbJqbQBbQCbQDbQDbQEbQFbQGbQHbQIbQJbQKbQLbQMbQLbQLbQNbQLbQLbQPbQQbQLbQLbQRbQSbQTbPybQUbQVbQWbQXbQYbQZbPzbRabRbbRcbRdbRebRbbRfbJRbRgbzLbRhbRibRjbDbaaaaaabRkbIlapwbIlbRmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaacaacaamaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIpbEYbEYbEYbqZbEYbEYbEYbRnbRnbRnbRnbRobRpbRpbRnbRnbRqbRrbRsbRqbPRbRtazLbRvbRwbPRbNkbLJbciaZwaZwbFsbFsbFsbFsbFsbRxbFsaZobNqbNqbRzcJjbRBbRCbRzbNqbNqaZobKzbKzbKzbKzbKzbKzbKzbKzbKzbQmaZsbRDbPcbPcbREbRFbPcbPcbPcbRGbQtbRHbQtbRIbRJbRKbRLbRLbRMbRIbzjbzjbRNbKUbKUbRObKRbRPbRQbRRbKRbKRbRSbRTbRUbRVbRWbRWbRWbRWbRXbRWbRWbRWbRYbRYbSabSbbScbScbLjbSdbLkbPybSebSfbSgbShbSibSjbSkbJRbJRbSlbSlbSlbJRbSmbJRbRgbzLbSnbRibSobDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRnbSpbSqbSrbSsbStbSubRpbSvbSwbSxbSybPSbSzazPazMbSCbPRbNkbLJaZsaZsaZsbSDbcybcxbcjbSEbSFbSGbohbohbohbSIbSJbSKbSLbSMbSNaZsaZsaZsbcyaZsbcjaZsaZsaZsbSDaZsbQmaZsbSObPcbSPbSQbSRbSSbSTbPcbSUbQtbSVbQtbRIbRJbRJbSWbSXbSYbRIbzjbSZbHDbTabTbbTcbTdbTebTfbTgbThbTibJwbJwbxMbTjbRWbTkbTlbTmbTnbTobTpbRWbTqazSbTsbTtbTubScbLjbSdbTvbTwbTxbTybTzbTAbTBbTCbSkbTDbTDbTDbTDbTDbTDbTDbJRbRgbTEbTFbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaacaacaadaadaacaaaaaaaacaadaadaacaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacaacaaaaaaaaabRpbTHbTIbTJbTKbTLbTMbTNbTOapxbTQbTRbTSbTTazMazMazTbPRbNkazUaZsaZsaZsaZsaZsaZsbcjaZsbLJaZsaZsaZsaZsaZsazWazVbUfaZsaZsaZsaZsaZsaZsaZsbcjaZsaZsaZsaZsaZsbQmbUgaZsbPcbUhbUibUjbUkbSTbPcbUlbQtbQubUmbPcbUnbUobUpbUqbUrbPcbzjbzjbHDbHDbHDbHDbHDbJwbJwbJwbJwbJwbJwbUsbzvbUtbRWbUubUvbUwbUxbUybUzbRWbUAazXbUCbUDbUEbScbLjbUFbUGbUHbUIbUJbUJbUKbULbUMbSkbTDbTDbUNbUObTDbTDbTDbJRbRgbzLbSnbRibUPbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacbRnbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbUXbVabVbazYbVdbVebPRbVfbVgbDHbDHbDHbVhbDHbDHbVibDHbVjbVkbVlbVmbVkbVnbVoazZbVqbVrbVsbVtbohbohbVubohbUabVvbohbVwbVxbVybVzaZsaZsbPcbVAbVBbVCbVDbVDbPcbPdbVEbPdbPcbPcbPcbPcbPcbPcbPcbPcbzjbzjbzjbVFbVGbPbbVHbVIbVJbVKbVLbVMbVIbVNbHIbVObRWbVPbVQbVRbVSbVTbVUbRWbVVaAabVXbVYbVZbScbLjbWabWbbPzbWcbWdbWebWfbWgbWhbSkbTDbTDbTDbWibTDbTDbTDbJRbRgbzLbWjbRibWkbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaafaafaafaafaafaafbRnbRnbRpbRpbRpbRpbRnbRnbWlbSwbSxbWmbPRbPRbPRbPRbPRbPRbWnbWoaZwaZwaZwaZwbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpbWqaXHbWsbWtbWtbWtbWtbWtbWubWtbWtbWtbWtbWvbWwbWvaZxbaNbWxbPcbWybWzbWAbWBbWCbPcbWDbQtbWEbPcbWFbWGbWHbWIbWJbWKbPcbWLbzjbzjbzjbzjbzjbKNbWMbWNbWObWNbWPbVIbWQbzvbWRbWRbWRbWRbWRbWRbWRbWRbWRbWSbWSbWSbWSbWSbWSbWTbWUbWVbPzbPzbPzbPzbPzbPzbPzbSkbJRbJRbJRbJRbJRbJRbJRbJRbRgbzLbWWbWXbDbbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaacaacaacaacaacaacbWYaaaaaaaaaaacaaaaaabRqbWZapybXbbXcbXcbXdbXebXfbXgbXhbXibWoaaaaaaaacaaabWpasBbXkbXlbXmbXnbXobXpbXqbWpbXraAbbXtbWtbXubXvbXwbXxbXybXzaAcbXBbXCbXDbXEbWvbWvbWvbWvbPcbXFbXGbXHbXIbXJbXKbXLbXMbXNbXObXMbXMbXMbXPbQtbXQbXRbXSbNRbNRbXTbJkbXUbXVbWMbXWbXXbXYbXZbVIbWQbzvbWRbYabYabYabYbbYabYabYabWRbYcbYcbYdbYcbYcbWSbYebYfbYgbYhbYibYjbYkbYlbYmbYnbYobYpbYqbYrbYsbYtbYubYvbYvbYwbYxbYibYibDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaarQbYyarRbYyarSaaaaacaaabRqbRqbYzbYAbYBbUXbYCbYDbYEbYEbYFbYGbYHbYIaacbYJbYKbYLbYMbYNbXqbYObXqbYPbXqbXqbXqbWpbYQaAdbYSbWtbXAbYTbYUbYVbYWbYXbYYbWtbWtbYZbZabZbbZcbZdbZebZfbZgbZhbZibZjbZkbZlbZmbZnbZobZpbZqbZrbQtbQtbQtbZsbHtbHtbHtbHtbHtbZtbZubPabWMbZvbZwbWNbZxbVIbWQbzvbWRbYabYabYabYabYabYabYabWRbZybZzbZAbZBbZCbZDbPvbZEbYgbZFbZGbZHbZHbZHbZHbZHbZHbZIbZJbZKbYsbDbbZLbZMbZNbZNbZObZPbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaadaacaafaaaaaaaaaaaaasybZSbZTbZSasybZUbZUbZUbRqbZVbZWbSwbZXbZWbZYbRqbWobZZbWobWocaacabaaacaccadcaecafbXqbXqcagbXqcahcaicajbXqbWpbYQaAdcakbWtcalcamcancaocapbYXcaqbWtbUscarcascatcascaucavbZpcawcaxcaybQtbQubPccazcaAcaBbPccaCbQtbQtbQtbQtatybHtcaEcaFcaGcaHcaIcaJcaKcaLcaMbWNcaNcaOcaPcaQcaRbWRbYabYabYabYabYabYabYabWRcaScaTcaUcaVcaWcaXcaYcaZbYgcbacbbbZHbZHbZHbZHcbccbdcbdcbdcbdcbecbfcbgcbhcbicbjcbkcblbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQcbmbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaarRauKcbnauKarRbZUcbocbpbRqcbqbZWapzbZWbZWbZYbRqcbscbtcbubWocaacabaaccaccbvcbwcbxcbycbzcbycbycbAcbBcbCcbCcbDcbEaAecbGbWtbWtbWtbWtbWtcbHcbIbWtbWtcbJcbKcbLcbMcbNcbOcbPbPccbQcbRcbScbTcbUbPccbVcbWcbXbPccbYcbZccaccbcccccdbHtcceccfbKPccgbKPcchcciccjcckcclccmccnbVIbWQbzvbWRbWRccobYabYaccpccobWRbWRccqccrccsccscctbWSccuccvbYgccwbZGbZHbZHccxccycczbZHbZHccAccBccCccDccEccFccGccHccIccJbZGaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRccLccMccNbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaasyauKauKauKccOccPbZWbZWccQcbqbZWccRbZWbZWbZYbRqccScbuccTbWocaacabaaacacccUccVccWbXqbXqccXbXqccYccZcdacdbbWpcdcaAfcdecdfcdgcdgcdgcdgcdhcdicdgcdgcdjcdkcdlcdmcdncdocdpbXKbXKbXKbXKbXKbXKbXKbXKbXKbXKcdqcdqcdqcdqcdqcdqcdrcdsbHtbHtbHtbHtcdtcdubEdbVIbVIbVIbVIbVIbVIbWQbzvbWRcdvcdwcdxcdycdzcdAcdvcdBccqccrccsccscdCbWScdDcdEbYgcdFbYicdGcdHcdIcdJcdKcdLbZHcdMcdNbYscdOcdPcdQcdRcdScdTcdUbYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcdVcdWcdWcdWcdXbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaarRcbncbncbnarRbZUcdYcdZceacebbZWceccedceecefbRqbWobWobWobWocaacegaaccehbYKceibYMcejbXqcekbXqbXqbXqcelcemcenceoaAgceqcercescescescescetcesceucevcewcexceycezceAceBceCbFWceDbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWbFWceEceFbHtcceceGcaIceHcaIcaJceIceJceKceKceLceMcexceNceObWRcePceQceRceSceTceUceVcdBcdBcdBcdBcdBcdBceWceXceYceZcfabYibYscJkcJkbYsbYsbYscfbbZHbZHbYsbDbbZLbzLbYicfccfdcfecffaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfgcfhcfgcdWcficdWcfjbZQbZQaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaacaafaaaaaaaaaaaaasyawucfkcflasybZUbZUbZUbRqbRqbZUbZUbZUbRqbRqbRqcfmbWoaaacfncfocabaaaaaaaacaaabWpcfpcfqcfrbXqcfscftcfucfvbWpcfwaAhcfycfzcfAcfBcfCcfDcfEcfAcfAcfAcfAcfAcfFcfGcfAcfAcfHcfAcfIcfAcfAcfAcfAcfAbWvbWvbWvbWvbWvbWvbWvbWvcfJbWQbHtcfKcfLcfMcfNbKPcfOcfPcfQcfRcfRcfScfRcfRcfTcfUbWRcfVcfWcfXcfWcfWcfWcfYcfZcgacgbcgccgdcgecgfcggccvbYgcghaaccgichdcgkcglcgmcglcgncgocgpbYscgqbRgcgrbYibYibYibYibYiaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacbZRbZRcgscdWcdWcdWcgtbZRbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaayRbYycgubYyayTaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfnaaccfncaacabaacaacaacaacbWpbWpbWpbWpbWpbWpbWpbWpbWpbWpcgvaAhbYRcgwcfAcfBcfCcfDcfEcgxcgxcgycgzcgAcgBcgCcgDcgEcgFcgGcgHcgIcgJcgKcgLcfAaacaacaacaacaacaacaacbWvcfJcgMcgNcgNcgNcgNcgNcgOcgPcgQcgNcgNcgNcgNcgNcgNcgMcgRcgScgTcgUcgVcgUcgWcgUcgXcgYcgZcgYcgYcgYcgYchachbchcbYgcghaaccgichdchdchechfchgchhchichjbYschkbRgbEGbDbchlchmbDbaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaacaacccKbZRchnchochpbZRccKaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaeaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaIyaacaaaaacaIyaaccfncbucfncfncfncaacabaaaaaaaaaaacchqchrchrchschtchuchuchvchvchqbYQaAhbYRchwcfAchxchychychzchAcgxchBchCcgLchDchEchFchGchHchIcgLchJcgLchKchLchMaacchNchNchNchNchNaacbWvcfJchOchPchQchRchScgNchTchUchVcgNchWchXchYchXchWchOchZciacibcibcibciccidcibciecibcifcibcigcibcibcihciicijcikcghaaccgichdcilcglcimcglcinciocipbYsbTGbRgbEGbDbbTGbTGbDbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZRbZQciqbZQbZRaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaafaaaaaabWobWocfnbWocfnbWobWobWobWobWobWobWocfncfncfnbWobWobWocbucbucbucircaacabaaaaaaaaaaacchqcischschschscitchuchuciuchqcivaAhciwcixciycizciAciBciCciDciEciFciAciAciGciHciIciJciKciLciMciNciOciPciQciRciSciTciUciVciWchNaacciXcfJcgMciYchWchWciZcgNcjacjbcjccgNchXchWchXcjdcjecjfbzvbWRcjgcjhcjicjjcjkcjlcjmcfWcjncjocjpcjqcjrcdBcjscjtcjscjucjubYscJkcJkbYsbYsbYsbYibYibYibYsbTGbRgcjvbTGbTGcjwbDbaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacbZQbZRbZQaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWobWocjxcjycjzcjAaAicjCcjDcbucjEcjFcbucjGcjHcbucbucircbucbucfncfncfncfocabaaaaaccjIcjJcjKcjLcjLcjMcjLcjNcjOcjPcjPcjQcjRaAhaAdcjUcjVcjWcjXcjYcjZckackbcjYckccjYckdckeasEcgEckgckhckickjckkcklckmcknaacckockpciWckqchNaacciXcfJcgMckrckschWcktcgNckuckvckwcgNchWchWckxchWchWcgMcfJbWRcdBcdBcdBcdBceWckyckzaofceWcdBcdBcdBcdBcdBckBckCckDckEckFckGckHckIckHckJcjuckKckDckLckMckNbRgbEGbDbbDbbDbbDbaHkaacaacaacaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaabWockOcbucbucbuckPbWockPbWocbuckQaIicbucbucbucbuckRbWocfncfnbWoaaacfncaacabaaaaacckSckTckUckVckWckWckWckWckWckWckXckYckZclaaAdcgwclbclccldcgLcleclfclgclhclicljclkcllcllclmclnciMcloclpclqclrclscltcluciTclvciWciWchNaacciXcfJcgMclwclxclycgOcgNcgNclzcgNcgNclAclAclBclAclAcgMcfJbWRclCclDclDclEclFcfWclGclHclIclJbYabYabYacdBclKckDckCclLclMckGclNclOclPclQcjsckDclRckDckMbWWclSclTbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaacfnclUcbucbucbuclVclWclXclYclZbWocmacbucbucbucmbcmcbWoaaaaacaaaaaacfncaacegbWobWocegcmdchqcmechschschscmfcmgcmhcmichqcmjcmkaAdcgwcmlcmmasLcgLcgLcmocgxcmpcmqcmrcmscgLcgLcgEcmtcmucmvcmwcmxcmycmxcmzaacchNchNchNchNchNaacbWvcfJcgMchWcmAcmBcmCcmDcJlcmFcmGcmHchWchWchWchWcmIcgMcfJbWRbYacmJbYacmKcmLcfWcmMcfWcmNcmObYacmJbYacdBcmPckDckDckCcmQcmRcmScmTcmRcmUcjucmVckDcmWckMcjucmXcmYbDbaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocmZcnacnbcnccndbWobWobWoavebWobWobWobWocnebWobWobWocfncfncfncnfcngcnhcnicnjbYEcnkcmdchqchqchqchqchqchqchqchqchqchqcnlcnmaAdcnncfAcnocnpclgcnqclgcgxcgLcgLcgLcmscnrchLchLcnscntcnuciNcnvcnwcnxciRciSciTcnycnzcnAchNaacbWvcfJcnBcnCcnCcnCcnDcnEchWcnFcmBcnGcmBcmBcmBcmBcnHcgMcfJbWRbYabYabYacnIcnJclHcnKcfWcnLcnMclDclDcnNcdBcnOcnPckDckCcnQckGclPcnRcmRcnScjucnTcnTcnTckMcnUcmXcmYbDbaacaacaacaacaacaacaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaabWocnVcnWcnXcnYcnZbWocoacbucjycbucobcbucbucbucbucbucoccodcodcodcoecofcogcohcohcohcohcoicojcojcojcokcojcolcomcomconbWocmjcmkaAdcoocopcoqcorchLchLcoscotchLchLcoucovcowcgLcoxcoycozcoAcgLcoBcoCcoDcknaacckocoEcoFcoGchNaacciXcoHcoIcoIcoIcoJcgMcoKchWcoLcoMcoNcoOcoPcoPcoPcoQcgMcfJbWRcdBcdBcdBcdBcoRcoScmMcoTcoRcdBcdBcdBcdBcdBcoUcoVckCckDcoWcoXcoXcoXcoXcoYcjscnTcnTcoZckMcpacmXcmYbDbbDbbDbaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccpbcpccpccpccpdcbubWocbucbucjycbubWobWobWobWobWobWocbubWobWobWocegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcphcpibWocmjcmkaAdcoocpjcpkcplcpmcllcpncpocllcllcppcpqcprcpscptcpucpvcpwcgLcoBcpxcpycltcluciTcpzcnAcnAchNaacciXcpAbWvbWvbWvbzvcgMcpBchWchWcpCcpDcpEcpFcoPcpFcpGcgMcfJbWRclCclDclDcpHclFcfWclGclHcpIcpJbYabYabYacdBcpKcpLcpMckCcpNckCckDckDcpOcpPcjucnTcnTcnTckMcpacmXcmYbTGbTGbDbaacaacaaaaaaaacaacaCEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacbWocpQcpccpccpRcpScnecpTcbucbucbubWoaaaaaaaaaaaabWocbubWoaaaaaacegcpecpfcpUcpVcpWcpXcpYcpZcpUcqacqbcqccqdcpgcpgcpibWocqecmkaAdcqfcqgcqhcqhcqicqjcqjcqjcqjcqjcqkcqlcgxcgxcgxcqmcgLcozcgLcoBcoCcqncknaacchNchNchNchNchNaacciXcpAcqobUsbUsbzvchOcqpcqqcqrcqscqtcqucqvcoPcqvcqwcgMcfJbWRbYacqxbYacqycmLcfWcmMcfWcmNcqzbYacqxbYacdBcqAcqBcqCcqDcqEcqFcqGcqGcqHcqIcjscqJcoXcqKckMcnTcmXcqLbDbbTGbDbbDbbDbaafaafaCEaafaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccfncqMcqNcbucqOcqPbWocbucqQcqQcbubWoaaacqRcqRcqRcqRcqScqRcqRaaacegcpecpfcpUcqTcqUcqVcqWcqXcpUcqYcqZcracrbcrccpgcpibWocmjcmkaAdcrdcrecfAcrfcrgcqjcrhcricrjcqjcrkcmscrlcgxcrmcpwcgLcpucrncrocnwcrpciRciSciTcrqcrrcrschNaacbWvcpAbWvcrtcrubzvcgMcrvcrwcrxcrycrzcrwcrAcoPcrAcjdcjfcfJbWRbYabYabYacrBcrCclHcnKcfWcnLcrDclDclDcnNbWRckMcrEcrFcrGckMckMcrHcrIcrJcrKcrLcrMcrNcrOcnTcnTcmXcmYbDbcrPbDbcrQbDbaacaacaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacbWobWobWobWocnebWobWobWocbucbucbubWoaaacqRcrRcrScrTcrUcrVcqRaaacegcpecpfcrWcrXcrYcqVcrZcrWcrWcqYcsacsbcsccsdcpgcpibWocmjcmkcukctcctcaAjaAlaAkaAoaAmaAqaApcqjcgLcmscsncsocrmcspcgLcpucrncoBcoCcsqcknaacckocsrcsscstchNaacbWvcpAbWvcbNcbNbzvcgMcgNcsucsvcgNcswcgNcgNcgNcgNcgNcgMcfJbWRcdBcdBcdBcdBcoRcsxcmMcsycoRcdBcdBcdBcdBbWRcmRcszcmRcsAcmRckMcrHcrIcsBcsCcsDcsEckCcsFckMcjucmXcmYbDbbTGbTGbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaafaacaaaaaabWocsHcsIcbucsJbWocbucsKcfmbWoaaacqRcsLcsMcsNcsOcsPcqRaaacegcpecpfcrWcrWcsQcsRcsScrWcsTcsUcsVcsWcsXcsYcpgcpibWocsZctactbctcctdctectfctgcthctictjctkcqjctlctmcrlcgxcrmctncgLctocrncoBctpctqcltcluciTctrctsctschNaacciXcpActtbWvctubzvctvcnCcnCctwcgNctxctyctzbWvctActBbWQcfJbWRclCclDclDctCclFcfWclGclHctDctEbYabYabYabWRctFcmRcmRcmRcmRckMctGctGctHctIcjucjuckCcjuckMbTGctJcmYbDbctKctLctMcsGaaaaaaaaaaaaaafaacatmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaiiaiiaiiaiiajdaiiaiiaiiaiiaafaaaaaabWobWocjycbucbucmbbWobWobWobWobWoaaacqRctNctOctPctQctRcqRaaacegctSctTctUctVctWctXctYctZcuacubcuccudcuecufcpgcugcuhcuicujcukctcculcumcuncuocupcuqcurcuscutciLcuucgxcgxcgxcuvcgLcuwcuxcoBcoCcgLcknaacchNchNchNchNchNaacciXcuycuzbWvcuAcuBcuCcoIcuDcuEbWvcuFcuGcuHbWvcuIcfRcfTcuJbWRbYacmJbYacuKcmLcfWcmMcfWcmNcuLbYacmJbYabWRcuMcmRcuNcuOcuPcuQcuRcuScuTcuUcjuckCckCcuVckMbWWctJcuWbDbcuXcuYbTGcsGaaaaaaaaaaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaalYaaaaacaaaaacaaaaafaacaacbWocbucbucbucbucbucbucbucbucfmbWoaaacqRcqRcqRcqRcqRcuZcqRaaacegcpecpfcvacrWcpUcpUcpUcrWcvbcvccvdcvecvfcvgcpgbWobWocvhcvicvjctcctccvkcvlcvmcvncvncvncvncqjcgLcvocvpcvqcvrckgcvscvtcvucrocnwcvvciRciSciTcvwcvxcvychNaacciXbUscvzbWvbWvcvAbTjbWvcvBcvCbWvbWvcvDbWvbWvcvCcvEcaQcvFbWRbYabYabYacvGcvHclHcvIcfWcnLcvJclDclDcnNbWRcmRcmRcvKcmRcmRckMctGctGcvLcvMcjucvNcvOcvOckMcvPctJcmYbDbbDbbDbbTGbDbaacaaaaacaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcvRcvSaaacvQcvRcvSaaacvQcvRcvSaaaaafaaaaaacfncvTcbubWobWobWocnebWobWobWobWoaaacqRcvUcvVcvWcvXcvYcqRaaacegcpecpfcrWcvZcwacpUcwbcrWcrWcqYcwccrbcwdcwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcllcllclncnrcwycnvclocoCcwzcknaacckocwAcwBcwCchNaacbWvbWvcpAcwDcwEcvAcwFbWvcvBcwGcwHcwIcwJcwKcwHcwLcwMbzLcwNbWRbWRbWRbWRbWRbWRcwOcwPcwObWRbWRbWRbWRbWRbWRckMckMckMckMckMckMcwQcwQcwRcwSckMckMckMckMckMbDbcwTcmYbDbcwUcwVbTGbDbaacaacaaaaaaaafaacaacafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaacfncwXcwYbWocwZcbucbucxacjGcxbbWoaaacqRcxccxdcxecxfcxgcqRaaacegcpecpfcpUcxhcxicpUcxjcxkcpUcqYcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxycxzcxAcxBcvlcxCcwucxDcgLcvocnrchLcxEcxFcxGcxHcgKcxIcxJcltcluciTcxKcvycvychNaacbWvbUscxLcxMcxNcxOcxPbWvcxQcxRcxScwMcxTcwMcvEcxUcxVbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbcxYchmbEHcxZcxZckMcyacyacwRcybckMcycbTGbTGbTGbWWcwTcqLbDbcydbTGbTGbDbbDbbDbaafaaaaafaacaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcwWcvSaaccvQcwWcvSaaccvQcwWcvSaaaaafaacaacbWocfnbWobWobWocyecyfcygcbucmbbWoaaacqRcqRcqRcqRcqRcqRcqRaaacegcpecpfcpUcyhcyicyjcykcylcpUcymcyncyocypcyqcpgcyrcyscytcyucyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcgLcvocyHcgLcgLcgLcyHcyHcyHcoCcyIcyJaacchNchNchNchNchNaacbWvcuAcyKcyLcyMcyNcyObWvbWvcyPcyQcyRbWQcyScyTbWvbWvbzLcxWbDbaaaaaaaaaaacaaaaaacxXaaaaacaaaaaaaaaaaabDbbTGcyUbRicyVcyWckMcyXcyXcyYcybckMbDbbDbcyZczabWWcwTcmYbTGbTGbTGczbbEIczcbEIaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaacaafaaaaaaaacaacbWoczdbWocoaczeczfcnebWobWoaaaaaaaaaaaaaaaaaaaaaaaaaaacegcpecpfcpfcpfcpfcpfcpfcpfcpfcpgcpgcpgcpgcpgcpgbWoczgbWocwuczhczhczhcziczjczkczhczlczmczncwucgLckjczocyHcgLcgLcgLchKcowcyHcoCcyHcfAaacaacaacaacaacaacaacczpczpczpczqczrczpczpczpczscztczucyRczvcyRcyRbWvczwbTjcxWbDbcsGcsGcsGbDbcsGcsGczxcsGbDbcsGcsGcsGcsGbDbbDbcwTczybDbbDbckMckMckMczzczAckMbWWbDbctMbTGczBcwTcuWbDbbDbczCbDbbDbbDbbDbaafaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcwWcvSaaacvQcwWcvSaaacvQcwWcvSaaaaafaaaaaaczDczEczEczEczEbWobWoczFcbucbubWocfncfncfncfncfncfncfncfncfnczGczHcngczIczJczKczKczKczKczKczKczKczKczKczLczLczKczMcoacwuczNczOczPczQczRczSczhczTcJmczVcwuczWczXclqczYczZcAaczZczYcAbczYcAccyHcfAcfAcfAaaaaaaaacaaaczpczpcAdcAecAfcAgcAhcAiczpcAjbUscAkcAlcAmcAncAoceMceMcApcAqcArcArcArcArcArcArcArcAscAtcAtcAtcAtcAtcAtcAucAtcAvcAtcAtcAwcAxcAycAzcAAcABbDbbDbbDbbDbcACbDbcwTcmYbDbbEHbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacADaaaaaaaaacADaaaaaaaaacADaaaaaaaafczDczDczDcAEcAFcAGcAHcAIcbucAJcJocJncJpcJncJncJncJncJncJncJncJncJncJpcJqcomcANcAOcwucwucwucwucwucwucwucwucwucwucwucwucwucwucwuczhcAPczQcAQcARcAScATcAUcAVcAWcwuczWcAXcAYcAZcBacBbcBccBdcgLcBecBfcBgcBhcBicBhaaaaaaaacczpczpcBjcBkcBjcBlcAgcBmcBnczpbUsbUscyRcyRbTjcyRcwMcvEcxUcBocBpcBpcBpcBpcBpcBpcBpcBqcBrcBpcBpcBpcBpcBpcBpcBscBtcBubGwcBvcBwcBxcBxcBxcBycBzcBAcBBcBCcBDcBDcBDcBEcBFbDbctLbTGbTGbDbaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccBGcBHcBHcBIcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBJcBKcBLcBMcBLcBNcBOcBPcBQcAKcBRcBScJrcbubWocfncfncfncfncfncfncfncfncfnbWocBTcBUcBVcBWcwucJtcJscJscwucBZcCacCbcJucCdcCecCfcCgcChcCiczhcCjcCkcClcCmcCncCocCpcCqcCrcwucfAcCscgEcCtcgEcCucgEcCtcgEcCvcgEcCwcfAcfAcfAaacaacaacczpcCxcCycCzcCzcCAcAgcBjaqAczpcCCbUscwMcwMcCDcyRcwMcwMcCEbWvbDbcsGcsGcsGcsGbDbcsGcsGcsGcsGbDbcsGcsGcCFcsGbDbcCGbTGbDbcCHcCIbDbbDbcsGcsGbDbbDbcCJctJcCKbGwcCLcCMcCNbDbcCObTGcCPbDbaaaaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaaaaaacCQaaaaaaaaacCQaaaaaaaaacCQaaaaaaaafczDczDczDcCRcCScCTczEcbucbucbucJvcbubWoaaaaacaaaaaaaacaaaaaaaacaaabWocCUbWocCVcCWcwucJtcCYcCZcDacDbcDccDdcDdcDdcDecDfcDgcDhcDcczhcDiczQcDjcDkcDlczhcDmcDncDocwuaaccDpaaccDqaaccDpaaccDqaaccDraaccDraacaacaaaaaaaaaaaccDscDtcDucBjcDvcDwcDxcDycDzczpbWvbWvcDAcwMbWQcwMcDBcyRbWvbWvaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcDCcgqbDbcDDctJbDbaaaaaaaaabDbcgqbTGctJcDEbDbbDbcDFbDbbDbbDbbDbbDbbDbaaaaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaacaaacvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaaaaafaaaaaaczDczEczEczEczEcDHcfmcbucJvbWobWocfncDIcDIcDIcDIcDIcDIcDIaacbWobWobWocDJcDKcwucJLcCZcCZcDacDMcDdcDNcDOcDPcDQcDdcDdcDdcDdczhcDRcDScDScDTcDUczhcDVcJMcDWcwuchNcDXckocDXchNcDXckocDXchNcDYckocDZchNaaaaaaaaaaaaaaaczpcEacBmcEbcBjcBjcBjcEccBjczpcEdbWvcyRcyRcEecyRcyRcyRcrtbWocfncfnaafaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaabDbcEfbDbbDbcEgctJbDbbDbcsGcsGbDbcEhbTGcEibzLbDbbTGcEjcEkbDbcElcEmcEnbDbbDbaacaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaacaafaacaaaaaaaaaaaaaaabWobWobWocEocJvbWocEoccTcDIcEpcEqcErcEqcEscDIaaabWocmbcbucEtcDKcwucJLcCZcCZcwucJOcJNcJPcDdcEzcDQcEAcEBcJWcJWczhcEDcEEcEEcEFcEGcEHcEIcEJcEKcwuchNcELcEMcENchNcEOcEPcEQchNcERcEScETchNaaaaaaaaaaaaaaaczpcEUcBjcBjcBjcEVcEWcEXcEYczpcEZcFacFbcFccFdcwMcwMcwMbUscFecbucFeaafaaaaaaaacaaacsGcsGcsGbDbbDbbDbbDbbDbbDbcFfbWWbDbcFgcFhcFicAxcFicFicFicFicFjcFkbzLcFlbTGcFmcFncFocFpbTGbTGcFqbDbbDbaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXgaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacvQcDGcvSaaccvQcDGcvSaaccvQcDGcvSaafaafaafaafaafaafaafaafcFrcFscFrcbucJvcnecbucvTcDIcFtcFucFvcFwcFxcDIaaabWoczecbucEtcDKcwucJYcJXcJZcwucFycCgcKacKacKccKbcKacCgcKacKacCgcFCcFDcFEcDMcFFcFGcFHcFIcFJcwuchNcFKcFLcFMchNcFNcFOcFPchNcFQcFRcFSchNaacaacaacaacaacczpcFTcFUcBjcFVcBjcFWcFXcFXcFYcEZcFZcwMcGacGbcGccxVcwMcGdbWocfncfnaafaacaacaacaaacsGcGecGfbDbbTGcGgcGhcycbDbcGibTGbDbcGjcGkcGkcGlcGkbGwbGwbGwaoIbGwcGmbTGbTGcEjbDbbDbbTGbTGbTGbTGcEncsGaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccvQcDGcvSaaacvQcDGcvSaaacvQcDGcvSaafcKdcKdcKdcKdcKdcKdcKdcKdcKdbWobWocKebWocfncfncDIcGncGocGpcGqcGncDIaacbWocwucGrcGscGtcwucJYcJXcJZcwucGucKfcKqcFEcEzcKrcKAcKzcKBcKAcKDcKCcKFcKEcGEcGDcGDcGFcGGcGHcwuchNcFMcGIcFMchNcFPcGJcFPchNcFScGKcFSchNaaaaaaaacaacaaaczpczpczpczpcGLcEXcGMcFXcGNczpcGOcGPcGQcaQcGRcGScvEcGTcGUbWoaacaacaafaaaaaaaacaaacsGcGVcGWcrPbTGczabTGbTGcrPcCGbTGbDbbDbbDbbDbbDbbTGbDbcGXcGYbTGcGZbDbbDbcHacEjbDbcHbbTGbTGbTGbTGcEncsGaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajdaaacvQcHccvSaaacvQcHccvSaaacvQcHccvSaafcKdcKJcKGcKdcKLcKPcKMcKQcKdcKScKRcJvbWoaaaaaacDIcHdcHecHfcHgcHhcDIcDIcDIcwucHicGscKTcwucwucwucwucwucHkcHlcDdcDdcCpcKUcDOcDOcKWcDOcKXcDdcDdcFIcDdcDdcDdcEzcDQcHqcwuchNchNchNchNchNchNchNchNchNchNchNchNchNaaaaacaacaaaaaaaaaaaaaaaczpczpczpczpczpczpczpbWvbWvbUscHrcGQcHscHtbWvbWvbWoaacaacaafaaaaaaaacaaacsGcGecHubDbcycbTGbTGcHvbDbcHwbTGbTGbTGbTGbTGbTGbTGbDbbTGbTGbTGbTGctMcHxcHxcHycHzcHxbTGbTGbTGbTGcEncsGaacaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaacaaaaacaaaaacaaaaacaaaaacaafcKdcKZcKYcLbcLacLacLccLacLjcbucLkcLlbWoaaaaaacDIcHAcHBcHCcHDcHEcHFcHGcHHcHFcHIcHJcHKcHLcHMcHNcHOcHPcHQcHRcLzcLycLBcLAcLQcLCcLScLRcLTcLCcLQcFIcDdcDdcHYcEzcDQcHZcwucwucwucwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbWvcyPcIaciXciXbWvbWvaaaaacaacaacaafaaaaaaaacaaccsGcsGcsGbDbbDbbDbbTGbDbbDbcEfbDbbDbcyccIbcgqchkbDbbDbbDbcIccIdbTGcIecHxcIfcIgcIhcHxbTGbTGbTGcFqbDbbDbaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcKdcLVcLUcLXcLWcLacLYcLZcKdcKIcMacJvbWoaaaaaacDIcMicIjcMjcIlcImcIncIocIpcIqcIrcIscItcIucIucIucIvcIucMlcMkcMncMmcMucMtcMwcMvcMycMxcMAcMzcMwcMKcMwcDdcMMcMLcMNcIAcIAcIAcIKcILcwucIMcCgcINcIOcIOcIPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacIQaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaacaacaaaaaaaaaaaabDbcGWcIRbDbcISaacbDbbDbcsGcsGbDbbDbaaabDbbDbcsGcsGbDbcHxcITcIUcIVcHxcIWcIXcEnbDbbDbaacaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaacaaaaaaaaacKdcMPasFcNdcKYcNfcNecNgcKdcKdcKdcNrcKdcNtcNtcIYcNzcJacNAcJccNCcDIcJecJfcDIcJgcJhcJicDdcDdcNDcFzasGcDMcDdcOccDdcOjcOicLRcOscOucOtcOBcOAcLRcOCcMwcDdcDNcHRcJwcJxcJxcJycFIcJzcJAcCZcJAcJBcJCcJDcJEcJFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacJGaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaacaacaamaaaaaabDbcGWcGgbDbcJHaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccHxcJIcJJcJKcHxbDbbDbbDbbDbaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcOEcPAcOOcPAcRNcKdcKdcRPaoJcRRcRQcRTcRScRVcRUcRXcRWcJQcDIcDIcDIcDIcwucJRcDdcJicDdcHpcJScFzcJTcDMcJUcJVcJVcOjcRYcMwcRZcOtcSacSccSbcMwcSdcMwcJVcJVcJUcDMcKgcKhcKicFIcKjcwucKkcCgcKlcIOcIOcKmaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaacaacaaaaaacsGcKncsGcsGaacaacaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaaccKocKocKpcKocKoaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecSgcSfcShcKdcKdcKdcSgcSfcSicSfcShcKdcSjcKdcSlcSkcSncSmcSpcSocSrcSqcStcSscSvcSucSxcSwcSzcSycSAcSycSBcKscKtcKucDdcKvcDdcDdcKwcKxcKxcKycSCcSCcSDcSCcMwcMwcOjcSEcMwcSFcSHcSGcSJcSIcMwcMKcMwcMwcMwcMwcMwcMwcMwcKicFIcwucwucCgcCgcCgcCgcwuaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaaaaaacsGbTGcsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKHcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaadafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSLcSKcSMcSKcSNcSfcSOcSfcSPcSKcSMcSKcSRcSQcSScSQcSUcSTcSUcSVcSXcSWcSZcSYcTbcTacTdcTccTccTccTfcTecTgcKNcKOcDdcDdcDdcDdcThcDdcDdcDMcDdcDdcDdcSCcTicTjcSCcTlcTkcTncTmcMwcTocTocTocTocTocMwcTpcTrcTqcTqcTscTucTtcMwcKicLdcLecLfcLgcLhcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaacaacaaacsGcLicsGaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaacKocKpcKoaaaaacaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcKdaoKaaaaaaaacaacaacaacaacaacaaaaaaaacaoLcKdcKdcKdcLVcTxcRTcTycRTcTzcTycTAcTzcTBcTCaaaaaaaaacKKcLmcLncLocKOcLpcLqcLrcLscKvcLtcLucLvcLwcLucLxcSCcTDcTEcSCcTGcTFcTIcTHcTKcTJcTMcTLcTOcTNcTQcTPcTScTRcTRcTRcTScTScMwcLDcLEcLFcLGcDdcLHcKVaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaacaacaafaafaafaaaaaaaaaaaaaacaaaaaaaacaaaaaaaacaaaaaaaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaacaacaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacTZcLacUbcLacUccUbcUdcUfcUecKdaaaaaacLJcKKcLJcLKcLLcLMcLJcKvcKvcwucwucLNcLOcLPcSCcSCcUgcSCcSCcSDcSCcUicUhcUkcUjcUmcUlcUocUncUqcUpcUrcTRcUtcUscUvcUucUucUwcMwcMbcwucwucMccMdcMecKVaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcLIaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacUAcUCcUBcSUcUDcUEcUdcUGcUFcKdaaaaaacLJcMfcMgcMgcMgcMhcLJaaaaaacUIcUHcUHcUHcUKcUJcUMcULcUOcUNcUPcSCcURcUQcUTcUScUUcUUcUVcUUcUXcUWcUUcUYcUZcTOcTOcVacVbcVbcMwcMocMpcwucCgcCgcMqcCgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaacaacaacaacaacaacaacaacaaaaacaacaacaacaacaaaaiiaiiaiiajdaacaacaacaaccLIaacaacaacaacaacajdaiiaiiaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaccSKcSKcVcaaaaaacVcaaaaaaaaaaaacVccSKcSKcNtcTYcTXcVfcUAcVhcVgcLacVicVjcKdcKdcKdcKdcKdaaacLJcMrcMgcMgcMgcMscLJaaaaaacVkcUHcUHcUHcUKcUJcVmcVlcVocVncVqcVpcVscVrcVtcMwcVvcVucVxcVwcVzcVycVvcMwcVBcVAcVCcMwcMwcLCcMwcMBcMCcCgaacaaacMDcMEaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaadaadaadaadaadaadaaaaaaaaaaadaadaadaaaaaaaiiaaaaaaaacaaaaacaaaaaacMFaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaacaaaaaacVGaaaaaacSKcNtcNtcNtcKdcKdcVHcKdcODcVJcVIcVKcKdcVMcVLcVNcKdaaacLJcMGcMHcMIcMHcMJcLJaaaaaacUIcUHcUHcUHcUKcUJcVmcVOcVQcVPcVRcVpcVscUQcTHcVScVUcVTcVWcVVcVXcVTcVYcVScWacVZcUucWbcWccUHcWdaafaafaafaacaaacMQcMRcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMTcMScMTcMUcMVcMWaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKaaacNvaacaacaacaacaacaaaaaacSKcNtcWjcWjaoOaqBcWhcWjcKdcWkcVicWlcKdcWjcWmcWocKdaaacLJcMZcNacNbcNacNccLJaaaaaacVkcUHcUHcUHcUKcUJcWpcVOcVQcWqcWscWrcWtcUQcTHcVScVUcWucWwcWvcWycWxcVYcVScWacWzcWBcWAcWccUHcWCaaaaaaaafaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaaaaaaacaaaaaacMQcNhcMEaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccNsarccNuaacaaccVccSKcNtcWjcWGcWFcWIcWHcWgcWJcWKcVicWMcWLcWjcWjcWNcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacWOcVncVncVncVncVncSCcWQcWPcWScWRcVUcVTcVWcWTcWUcVTcVYcVScWWcWVcWBcWAcWccUHcWdaaaaaaaafaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaccNwcNhcMWaacaaccNxcNxcNxcNxcNxaacaacaacaacaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiialYcNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaacSKcSKaaaaaaaaccWXaArcWYaacaaaaaacSKcNtarTcXdcXccXfcXecXgcKdcXhcVicWMcWLcWjcXicXjcKdaaacLJcNocNpcNpcNpcNqcLJaaaaaaaaaaaaaaaaaaaaacXkcSCcSCcSCcSCcSCcSCcMwcXlcMwcMwcMwcXmcXocXncXocXpcMwcMwcXqcMwcUtcXrcWccUHcWCaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaacNEcNhcMEaaacNxcNFcNGcNHcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaaaaacaaaaaaaaacMYaaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaafaaccSecUxaaacSKcSKcVcaacaaccNKaAscNMaacaaaaaacSKcNtcWjcXtcWjcXucWecWgcWJcXvcVicXwcKdcXxcXxcXxcKdaaacLJcNocNpcNpcNpcNIcLJaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaacXyaacaacaaccXzaaaaaaaaacXzaaccLQcMwcMwcMwcLQaacaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaacaacaafaacaaaaaaaaacNNcNOcMEcNxcNPcNQcNRcNxaaaaaaaaaaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacMYaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecUxaaacSKcSKaaaaaaaacaacaacaacaacaaaaaacSKcNtcWjcWjcXAcXBcWEcWjcKdcXCcVicXDcKdcXxcXEcXEcKdaaacLJcNocNpcNScNpcNqcLJaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaaaaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaafaacaaaaaaaaaaaccNNcNTcNxcNUcNVcNWcNxaacaacaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcNkcMYcNlcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccVDcUxaaccSKcSKaaaaaaaaaaaaaaaaacaaacNJaaacSKcNtcNtcNtcKdcKdcVHcKdcODcXGcXFcXHcKdcXEcXIcXEcKdaaacLJcNXcNYcNZcOacObcLJaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaafaacaaaaaaaaaaaccOdcOecNxcOfcOgcOhcNxcOdcOdaacaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacMYaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcVcaaaaaaaaaaaacVcaaaaaacVccSKcSKcNtcTYcXJcXLcXKcXNcXMcLacVicXOcKdcKdcKdcKdcKdaaacLJcLJcLJcLJcLJcLJcLJaaaaaaaaaaaaaamaaaaaaaafaaaaaaaacaacaacaacaacaaaaaaaacaacaacaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaacaacaacaacaaccOdcOkcOlcOmcOncOocOpcOqcOdaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaajdaaaaaaaaaaacaaaaaaaaacOraaaaaaaaaaacaaaaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecUxaaccSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcXQcXKcLacXRcSXcXScXTcKdaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaafJafJafJafJaaaaaaaaaaaacXzaaaaaaaaacXzaaaafJafJafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOvcOlcOwcNVcOxcOycOzcOyaafaacaaaaaaaaaaaaaacaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccMXcMXcMXcMXcMXaaacLIaaacMXcMXcMXcMXcMXaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaccSecKdcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcSKcNtcTYcTXcUacXXcXZcXYcLccKYcWMcKdcKdcKdaaaaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOFcOGcOHcOIcOJcOKcOLcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaacNicNjcNjcNjcNjcOMcONcOMcNmcNmcNmcNmcNnaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaccSecKdcKdaoNaacaacaacaacaacaaccYbaacaacaacaaaarUcKdcKdcKdcLVcLccYecYdcLccKYcWMcYfcYgcYfaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaccOdcOdcOdcOPcOQcORcOdcOdcOdaafaacaaaaaaaaaaaaaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccNycNycNycNycNyaaacLIaaacNycNycNycNycNyaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaccSecKdcSKcSKcYhcSKcSgcSfcYicSfcShcSKcYhcSKcYjcSQcYkcSQcSUcSUcYmcYlcYlcYncYocKdcYpcKdaaaaafaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaacaacaacaaaaaacOScOwcOTcOUcOSaaaaaaaafaacaacaacaacaacaacaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaaaaacaaaaacaaaaaacLIaaaaaaaacaaaaacaaaaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaccKdcSecSecYqcSfcSPcKdcKdcKdcYqcSfcYrcSfcSPcKdcYscKdcYucYtcYwasIcYycYxcYzcKdcKdcKdaaaaafaaaaacaacaadaadaadaacaadaadaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaacaaaaaacOScOwcOVcOxcOSaaaaaaaafaafaafaafaafaacaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaacaacaaacLIaaaaacaacaiiaiiaiiajdaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaacaaacKdcKdcKdcKdcKdcKdcKdcODcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcKdcYBcYAcYCcKdcKdcKdaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiiaiicOycOyaiiaacaacaaccOdcOWcOXcOYcOdaacaacaacaiicOycOyaiiaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaccOZaacaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaaaaaaaacaacaacaaaaaaaaaaaaaacaacaacaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPbcPccPdaaacPecPecPecPfcPgcPhcPecPecPeaaacPicPjcPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaaaaacaaaaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPmcPkcPncPocPecPpcPqcPrcPscPtcPucPvcPecPwcPxcPycPkcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiiaiiaiiaiiaiiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaacaiicPacPBcPCcPDcPDcPEcPFcPGcPHcPIcPJcPGcPKcPLcPMcPMcPNcPOcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcYDaadaadaadaaaaaaaadaadaaaaaaaaaaaaaadaadaadcYDaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacPecPQcPGcPRcPScPTcPGcPUcPecPVcPVcPWcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPYcPZcOdcOdcOdcPecQacQbcQccQccQdcQbcQecPecOdcOdcOdcQfcQgaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaaacQhcQicQjcQkcQlcQhcQmcQncQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaaaaacQhcQocQpcQqcQrcQscQtcQucQhaaaaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQvcQtcQwcQwcQwcQtcQxcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQwcQzcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPYcQBcOdcOdcQhcQhcQtcQwcQCcQCcQCcQwcQtcQhcQhcOdcOdcQDcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlcNxcQhcQEcQtcQFcQCcQGcQCcQFcQtcQHcQhcNxcPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQtcQwcQIcQJcQKcQwcQtcQhcQhaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacPPcPlaaacQhcQhcQycQwcQLcQFcQwcQwcQAcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcPlaaacQhcQhcQMcQwcQNcQOcQPcQwcQMcQhcQhaaacPacPXcPlaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPYcQQcOdcOdcQCcQhcQhcQmcQRcQScQTcQjcQhcQhcQCcOdcOdcQUcQgaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQhcQhcQhcQWcQXcQhcQhaaaaacaaacPacPXcPlaiiaaaaafaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaiicPacPPcPlaaaaacaaacQYcQZcRacRbcRccRdcQYaaaaacaaacPacPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaiicPacPPcRecRfcRgcRgcQYcRhcRicRjcRkcRlcQYcRfcRgcRfcRmcPXcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiicPacRncRocRpcRpcRpcRqcRrcRscRtcRucRvcRwcPMcPMcPMcPMcRxcPlaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaaacPVcPVcPVcRycPVcQYcRzcRAcRBcRCcRDcREcRFcRycPVcRycRyaaaaiiaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaiiaiiaiiaiiaiiaiiaiicQYcRHcRIcRJcRKcRLcQYaiiaiiaiiaiiaiiaiiaiiaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaacaafaaaaaaaaaaaaaaaaaaaacaaccQYcQYcRMcRMcRMcQYcQYaaaaaaaacaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaaaaaaaaaaafaacaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafJafJafJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} + From 33e5d52dd12ddd797205b1c7783304d3fc581378 Mon Sep 17 00:00:00 2001 From: Carbonhell Date: Sat, 21 Jan 2017 01:16:04 +0100 Subject: [PATCH 51/55] Adds a grab indicator, clickable, with an hotkey H or CTRL+H (#78) --- code/_onclick/hud/_defines.dm | 1 + code/_onclick/hud/hud.dm | 1 + code/_onclick/hud/human.dm | 5 +++++ code/_onclick/hud/screen_objects.dm | 17 +++++++++++++++++ code/modules/mob/living/living_defense.dm | 2 ++ code/modules/mob/mob.dm | 4 +++- code/modules/mob/mob_helpers.dm | 7 +++++++ icons/mob/screen_gen.dmi | Bin 113350 -> 121559 bytes interface/skin.dmf | 8 ++++++++ 9 files changed, 44 insertions(+), 1 deletion(-) diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm index fdf9e89..476310e 100644 --- a/code/_onclick/hud/_defines.dm +++ b/code/_onclick/hud/_defines.dm @@ -68,6 +68,7 @@ //Lower right, persistant menu #define ui_drop_throw "EAST-1:28,SOUTH+1:7" #define ui_pull_resist "EAST-2:26,SOUTH+1:7" +#define ui_grab "EAST-3:24,SOUTH+1:7" #define ui_movi "EAST-2:26,SOUTH:5" #define ui_acti "EAST-3:24,SOUTH:5" #define ui_zonesel "EAST-1:28,SOUTH:5" diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index 90e595c..806f768 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -31,6 +31,7 @@ var/obj/screen/zone_select var/obj/screen/pull_icon var/obj/screen/throw_icon + var/obj/screen/grab_icon var/obj/screen/module_store_icon var/list/static_inventory = list() //the screen objects which are static diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 1deb1c6..566f19d 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -109,6 +109,11 @@ static_inventory += using action_intent = using + grab_icon = new /obj/screen/grab_ind() + grab_icon.icon_state = "grab[mymob.grab_state]" + grab_icon.screen_loc = ui_grab + static_inventory += grab_icon + using = new /obj/screen/mov_intent() using.icon = ui_style using.icon_state = (mymob.m_intent == "run" ? "running" : "walking") diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 23bd4d9..bf8c64c 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -46,6 +46,23 @@ M.swap_hand() return 1 +/obj/screen/grab_ind + name = "reinforce grab" + icon_state = "grab" + layer = HUD_LAYER + +/obj/screen/grab_ind/Click() + var/mob/living/user = usr + if(user.next_move > world.time) + return + if(ismob(user.pulling)) + var/mob/living/grabbedguy = user.pulling + grabbedguy.grabbedby(user) + update_icon(user) + +/obj/screen/grab_ind/update_icon(mob/user) + icon_state = "grab[user.grab_state]" + /obj/screen/inventory/craft name = "crafting menu" icon = 'icons/mob/screen_midnight.dmi' diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index f42bf0b..7a2c27f 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -201,6 +201,8 @@ user.changeNext_move(CLICK_CD_GRABBING) playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) + if(user.client && user.hud_used) + user.hud_used.grab_icon.icon_state = "grab[user.grab_state+1]" if(user.grab_state) //only the first upgrade is instantaneous var/old_grab_state = user.grab_state var/grab_upgrade_time = 30 diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 9675f27..6eeb90b 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -384,9 +384,11 @@ var/next_mob_id = 0 update_pull_hud_icon() /mob/proc/update_pull_hud_icon() - if(hud_used) + if(client && hud_used) if(hud_used.pull_icon) hud_used.pull_icon.update_icon(src) + if(hud_used.grab_icon) + hud_used.grab_icon.icon_state = "grab[grab_state]" /mob/verb/mode() set name = "Activate Held Object" diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 1ed60d3..c8c8afd 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -339,6 +339,13 @@ It's fairly easy to fix if dealing with single letters but not so much with comp if(hud_used && hud_used.action_intent) hud_used.action_intent.icon_state = "[a_intent]" +/mob/verb/reinf_grab() + set name = "reinf-grab" + set hidden = 1 + + if(client && hud_used && hud_used.grab_icon) + hud_used.grab_icon.Click() + /proc/is_blind(A) if(ismob(A)) var/mob/B = A diff --git a/icons/mob/screen_gen.dmi b/icons/mob/screen_gen.dmi index b0a1dbcb16859976153781d4f6181bbc8d895450..e58b8cc669f2ca1e5ae9bc594f0cb5bf5fdde87b 100644 GIT binary patch delta 17742 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 delta 9469 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 C>|_N1 diff --git a/interface/skin.dmf b/interface/skin.dmf index 69c7acf..946c59b 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -317,6 +317,14 @@ macro "hotkeys" name = "CTRL+G" command = "a-intent right" is-disabled = false + elem + name = "H" + command = "reinf-grab" + is-disabled = false + elem + name = "CTRL+H" + command = "reinf-grab" + is-disabled = false elem name = "M" command = "me" From 23016ed6c26074b654f40dbfb3b401d0da785b19 Mon Sep 17 00:00:00 2001 From: TDcoolguy300 Date: Fri, 20 Jan 2017 16:16:22 -0800 Subject: [PATCH 52/55] Staff Fix, Pool wires fix (#70) * Pool Wires * FUK --- code/datums/wires/poolcontroller.dm | 52 ++++++++++++-------------- code/game/machinery/poolcontroller.dm | 2 +- code/modules/projectiles/guns/magic.dm | 2 +- 3 files changed, 26 insertions(+), 30 deletions(-) diff --git a/code/datums/wires/poolcontroller.dm b/code/datums/wires/poolcontroller.dm index 8e28868..d57f174 100644 --- a/code/datums/wires/poolcontroller.dm +++ b/code/datums/wires/poolcontroller.dm @@ -1,10 +1,19 @@ +#define POOL_WIRE_DRAIN "drain" + /datum/wires/poolcontroller - randomize = 4 holder_type = /obj/machinery/poolcontroller -var/const/POOL_WIRE_DRAIN = 1 -var/const/POOL_WIRE_EMAG = 2 -var/const/POOL_WIRE_ELECTRIFY = 4 +/datum/wires/poolcontroller/New(atom/holder) + wires = list( + POOL_WIRE_DRAIN, WIRE_HACK, WIRE_ELECTRIFY + ) + add_duds(2) + ..() + +/datum/wires/poolcontroller/interact(var/mob/living/user) + if(interactable(user)) + var/obj/machinery/poolcontroller/P = holder + P.attack_hand(user) /datum/wires/poolcontroller/interactable(var/mob/living/L) var/obj/machinery/poolcontroller/P = holder @@ -16,45 +25,32 @@ var/const/POOL_WIRE_ELECTRIFY = 4 return 1 return 0 -/datum/wires/poolcontroller/interact(var/mob/living/user) - if(interactable(user)) - var/obj/machinery/poolcontroller/P = holder - P.attack_hand(user) - -/datum/wires/poolcontroller/ui_interact() +/datum/wires/poolcontroller/on_pulse(wire) var/obj/machinery/poolcontroller/P = holder - . += ..() - . += "
The orange light is [P.drainable ? "blinking" : "off"].
" - . += "The blue light is [P.emagged ? "flashing" : "off"].
" - . += "The red light is [P.seconds_electrified ? "on" : "off"].
" - -/datum/wires/poolcontroller/on_pulse(var/index) - var/obj/machinery/poolcontroller/P = holder - switch(index) + switch(wire) if(POOL_WIRE_DRAIN) P.drainable = 0 - if(POOL_WIRE_EMAG) + if(WIRE_HACK) if(P.emagged) P.emagged = 0 if(!P.emagged) P.emagged = 1 - if(POOL_WIRE_ELECTRIFY) + if(WIRE_ELECTRIFY) P.seconds_electrified = 30 - -/datum/wires/poolcontroller/on_cut(var/index, var/mended) +/datum/wires/poolcontroller/on_cut(wire, mend) var/obj/machinery/poolcontroller/P = holder - switch(index) + switch(wire) if(POOL_WIRE_DRAIN) - if(mended) + if(mend) P.drainable = 0 else P.drainable = 1 - if(POOL_WIRE_EMAG) - if(mended) + if(WIRE_HACK) + if(mend) P.emagged = 0 - if(POOL_WIRE_ELECTRIFY) - if(mended) + if(WIRE_ELECTRIFY) + if(mend) P.seconds_electrified = 0 else P.seconds_electrified = -1 \ No newline at end of file diff --git a/code/game/machinery/poolcontroller.dm b/code/game/machinery/poolcontroller.dm index 1147da8..07b1b6c 100644 --- a/code/game/machinery/poolcontroller.dm +++ b/code/game/machinery/poolcontroller.dm @@ -28,7 +28,7 @@ var/seconds_electrified = 0//Shocks morons, like an airlock. /obj/machinery/poolcontroller/New() //This proc automatically happens on world start - wires = new(src) + wires = new /datum/wires/poolcontroller(src) for(var/turf/simulated/pool/water/W in range(srange,src)) //Search for /turf/simulated/beach/water in the range of var/srange src.linkedturfs += W for(var/obj/machinery/drain/pooldrain in range(srange,src)) diff --git a/code/modules/projectiles/guns/magic.dm b/code/modules/projectiles/guns/magic.dm index d7a6ac1..152b56d 100644 --- a/code/modules/projectiles/guns/magic.dm +++ b/code/modules/projectiles/guns/magic.dm @@ -12,7 +12,7 @@ var/recharge_rate = 4 var/charge_tick = 0 var/can_charge = 1 - var/ammo_type + var/ammo_type = /obj/item/ammo_casing/magic var/no_den_usage origin_tech = null clumsy_check = 0 From c9511594ef46859a20529234d9fb7f1cb1693ea3 Mon Sep 17 00:00:00 2001 From: TheOneAndOnlyCreeperJoe Date: Sat, 21 Jan 2017 01:28:50 +0100 Subject: [PATCH 53/55] Joe wiz stuff (#72) * Ports a whole bunch of wiz stuff * forget the projectile * Update lordspells.dm --- code/game/gamemodes/wizard/spellbook.dm | 78 ++++++++++++- code/modules/clothing/suits/wiz_robe.dm | 106 +++++++++++++++++- .../modules/projectiles/ammunition/special.dm | 22 ++++ code/modules/projectiles/guns/magic/staff.dm | 104 +++++++++++++++++ code/modules/projectiles/projectile/magic.dm | 25 +++++ code/modules/spells/spell_types/eruption.dm | 40 +++++++ code/modules/spells/spell_types/lordspells.dm | 93 +++++++++++++++ icons/mob/actions.dmi | Bin 89805 -> 94117 bytes icons/mob/back.dmi | Bin 99898 -> 103293 bytes icons/mob/head.dmi | Bin 154044 -> 159869 bytes icons/mob/inhands/items_lefthand.dmi | Bin 123988 -> 124306 bytes icons/mob/inhands/items_righthand.dmi | Bin 122134 -> 122399 bytes icons/mob/suit.dmi | Bin 308085 -> 319780 bytes icons/obj/clothing/hats.dmi | Bin 74572 -> 76875 bytes icons/obj/clothing/suits.dmi | Bin 100796 -> 104640 bytes icons/obj/guns/magic.dmi | Bin 10086 -> 10767 bytes icons/obj/projectiles.dmi | Bin 20668 -> 27295 bytes icons/obj/weapons.dmi | Bin 55166 -> 55628 bytes sound/magic/Necrolord_Soulflare_Cast.ogg | Bin 0 -> 12159 bytes sound/magic/Necrolord_Soulflare_Crit.ogg | Bin 0 -> 37558 bytes sound/magic/corpseexplosion.ogg | Bin 0 -> 18331 bytes tgstation.dme | 2 + 22 files changed, 467 insertions(+), 3 deletions(-) create mode 100644 code/modules/spells/spell_types/eruption.dm create mode 100644 code/modules/spells/spell_types/lordspells.dm create mode 100644 sound/magic/Necrolord_Soulflare_Cast.ogg create mode 100644 sound/magic/Necrolord_Soulflare_Crit.ogg create mode 100644 sound/magic/corpseexplosion.ogg diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm index 1905e23..43db190 100644 --- a/code/game/gamemodes/wizard/spellbook.dm +++ b/code/game/gamemodes/wizard/spellbook.dm @@ -94,6 +94,27 @@ dat += "[S.clothes_req?"Needs wizard garb":"Can be cast without wizard garb"]
" return dat +/datum/spellbook_entry/eruption + name = "Eruption" + spell_type = /obj/effect/proc_holder/spell/aoe_turf/conjure/eruption + log_name = "Eruption" + +/datum/spellbook_entry/soulflare + name = "Soulflare" + spell_type = /obj/effect/proc_holder/spell/targeted/trigger/soulflare + log_name = "SoFl" + +/datum/spellbook_entry/corpseexplosion + name = "Corpse Explosion" + spell_type = /obj/effect/proc_holder/spell/targeted/explodecorpse + log_name = "CoEx" + +/datum/spellbook_entry/soulsplit + name = "Soulsplit" + spell_type = /obj/effect/proc_holder/spell/self/soulsplit + log_name = "SoSp" + category = "Mobility" + /datum/spellbook_entry/fireball name = "Fireball" spell_type = /obj/effect/proc_holder/spell/fireball @@ -222,7 +243,7 @@ /datum/spellbook_entry/cluwnecurse name = "Cluwne Curse" spell_type = /obj/effect/proc_holder/spell/targeted/cluwnecurse - log_name = "CC" + log_name = "CC" /datum/spellbook_entry/charge name = "Charge" @@ -266,6 +287,22 @@ dat += "[surplus] left.
" return dat +datum/spellbook_entry/item/bookofdarkness + name = "Book of Darkness" + desc = "A forbidden tome, previously outlawed from the Wizard Federation for containing necromancy that is now being redistributed. Contains a powerful artifact that gets stronger with every soul it claims, a stunning spell that deals heavy damage to a single target, an incorporeal move spell and a spell that lets you explode corpses. Comes with a cool set of powerful robes as well that can carry the Staff of Revenant." + item_path = /obj/item/weapon/bookofdarkness + log_name = "BoD" + category = "Assistance" + cost = 5 + limit = 1 + +/datum/spellbook_entry/item/staffofrevenant + name = "Staff of Revenant" + desc = "A weak staff that can drain the souls of the dead to become far more powerful than anything you can lay your hands on. Activate in your hand to view your progress, stats and if possible, progress to the next stage." + item_path = /obj/item/weapon/gun/magic/staff/staffofrevenant + log_name = "SoR" + category = "Defensive" + /datum/spellbook_entry/item/staffchange name = "Staff of Change" desc = "An artefact that spits bolts of coruscating energy which cause the target's very form to reshape itself." @@ -374,7 +411,7 @@ log_name = "PF" cost = 1 category = "Assistance" - + /datum/spellbook_entry/item/bloodbottle name = "Bottle of Blood" desc = "A bottle of magically infused blood, the smell of which will attract extradimensional beings when broken. Be careful though, the kinds of creatures summoned by blood magic are indiscriminate in their killing, and you yourself may become a victim." @@ -886,3 +923,40 @@ spellname = "sacred flame" icon_state ="booksacredflame" desc = "Become one with the flames that burn within... and invite others to do so as well." + +// Lord items because idfk where else to put them + +/obj/item/weapon/bookofdarkness + name = "book of darkness" + desc = "A dark, closed book containing foul magic used against the dead. Opening the book shall seal your fate forever, in exchange for powerful abilities." + icon = 'icons/obj/weapons.dmi' + icon_state = "bookofdarkness" + item_state = "bookofdarkness" + force = 0 + throwforce = 0 + w_class = 3 + + var/obj/effect/proc_holder/spell/targeted/trigger/soulflare/soulflare = null + var/obj/effect/proc_holder/spell/targeted/explodecorpse/explodecorpse = null + var/obj/effect/proc_holder/spell/self/soulsplit/soulsplit = null + +/obj/item/weapon/bookofdarkness/attack_self(mob/living/user) + user << "You rapidly skim through the pages, but you can't see any letters. As you close the book however, you suddenly find equipment at your feet, and your brain hurts." + user << "The Staff of Revenant is a powerful artifact that lets you drain the souls of the fallen by hitting them with a melee strike from your staff. It starts off relatively weak, but can grow to become the largest threat one can ever face. Activate it in your hand to see your progress, the weapon's current stats and to progress to the next stage if possible." + user << "Soulflare deals 15 burn, brute and toxins damage to the target, putting them asleep for 5 seconds and if they are already in critical condition, they are instantly killed and the spell is refunded. This also applies to corpses." + user << "Corpse Explosion causes a corpse to violently explode in a very large radius, destroying the body alongside it. Make sure to maintain at least 4 tiles distance between you and the target." + user << "Soulsplit let's you become incorporeal for 3.5 seconds, allowing you to phase through objects and walk at very high speeds. However, it cannot be cast if you are below 100 health. In addition, you are still vulnerable to damage and other attacks in this state, nor will it remove any stuns." + user << "Your robes have increased resistance against all damage and will help convey your peaceful intent towards the still living." + soulflare = new /obj/effect/proc_holder/spell/targeted/trigger/soulflare + user.AddSpell(soulflare) + + explodecorpse = new /obj/effect/proc_holder/spell/targeted/explodecorpse + user.AddSpell(explodecorpse) + + soulsplit = new /obj/effect/proc_holder/spell/self/soulsplit + user.AddSpell(soulsplit) + + new /obj/item/weapon/gun/magic/staff/staffofrevenant(get_turf(user)) + new /obj/item/clothing/suit/wizrobe/necrolord(get_turf(user)) + new /obj/item/clothing/head/wizard/necrolord(get_turf(user)) + new /obj/item/clothing/shoes/sandal/marisa(get_turf(user)) diff --git a/code/modules/clothing/suits/wiz_robe.dm b/code/modules/clothing/suits/wiz_robe.dm index d004166..030b202 100644 --- a/code/modules/clothing/suits/wiz_robe.dm +++ b/code/modules/clothing/suits/wiz_robe.dm @@ -180,4 +180,108 @@ src.robe_charge = FALSE sleep(30) src.robe_charge = TRUE - usr << "\The robe hums, its internal magic supply restored." \ No newline at end of file + usr << "\The robe hums, its internal magic supply restored." + +/obj/item/clothing/suit/wizrobe/blackmage + name = "black mage's robes" + desc = "At least it's no longer a bathrobe." + icon_state = "blackmage" + item_state = "blackmage" + +/obj/item/clothing/head/wizard/blackmage + name = "black mage's hat" + desc = "The Wizard Federation has banned pointy hats due to it being a 'safety hazard'." + icon_state = "blackmage" + item_state = "blackmage" + flags_inv = HIDEHAIR + +/obj/item/clothing/suit/wizrobe/greywizard + name = "grey wizard robe" + desc = "A wizard is never late. Nor is he early. He arrives when he's had EI NATH." + icon_state = "greywizard" + item_state = "greywizard" + +/obj/item/clothing/head/wizard/greywizard + name = "grey wizard hat" + desc = "FOOL OF A TOOK." + icon_state = "greywizard" + item_state = "greywizard" + +/obj/item/clothing/suit/wizrobe/greenwizard + name = "green wizard robe" + desc = "The mere thought of a space druid is considered heresy." + icon_state = "greenwizard" + item_state = "greenwizard" + +/obj/item/clothing/head/wizard/greenwizard + name = "green wizard hat" + desc = "eki eki eki patang!" + icon_state = "greenwizard" + item_state = "greenwizard" + +/obj/item/clothing/suit/wizrobe/jesterwizard + name = "jester robe" + desc = "The previous owner died to a mob of angry cluwnes. He claimed it was a prank right until the bitter end." + icon_state = "jesterwizard" + item_state = "jesterwizard" + +/obj/item/clothing/head/wizard/jesterwizard + name = "jester wizard hat" + desc = "Show those fools that magic literally is a joke." + icon_state = "jesterwizard" + item_state = "jesterwizard" + +/obj/item/clothing/suit/wizrobe/pimpwizard + name = "purple wizard robe" + desc = "No matter what people tell you, this is not a pimp's bathrobe." + icon_state = "pimpwizard" + item_state = "pimpwizard" + +/obj/item/clothing/head/wizard/pimpwizard + name = "purple wizard hat" + desc = "No matter what people tell you, this is not a pimp hat!" + icon_state = "pimpwizard" + item_state = "pimpwizard" + +/obj/item/clothing/suit/wizrobe/rainbowwizard + name = "rainbow wizard robe" + desc = "Why would you pick a single robe color if you can just have all the colors in one!" + icon_state = "rainbowwizard" + item_state = "rainbowwizard" + +/obj/item/clothing/head/wizard/rainbowwizard + name = "rainbow wizard hat" + desc = "Also known as the grey wizard hat to colorblind people." + icon_state = "rainbowwizard" + item_state = "rainbowwizard" + +/obj/item/clothing/suit/wizrobe/whitewizard + name = "white wizard robe" + desc = "Doesn't allow you to come back from the dead, but it does look fashionable!" + icon_state = "whitewizard" + item_state = "whitewizard" + +/obj/item/clothing/head/wizard/whitewizard + name = "white wizard hat" + desc = "The balrog of morgoth!" + icon_state = "whitewizard" + item_state = "whitewizard" + +// Lord Robes + +/obj/item/clothing/suit/wizrobe/necrolord + name = "Necrolord robes" + desc = "One of the lord robes, powerful sets of robes belonging to some of the Wizard Federation's most talented wizards. This robe in particular belongs to Nehalim the Damned, who was infamous for spamming NPC mobs that were annoying as fuck to deal with. He died later on when one of his opponents flamed at him, literally." + icon_state = "necrolord" + item_state = "necrolord" + body_parts_covered = CHEST|GROIN|ARMS|LEGS + armor = list(melee = 40, bullet = 30, laser = 30, energy = 30, bomb = 30, bio = 30, rad = 30) + allowed = list(/obj/item/weapon/teleportation_scroll, /obj/item/weapon/gun/magic/staff/staffofrevenant) + flags_inv = HIDEJUMPSUIT + +/obj/item/clothing/head/wizard/necrolord + name = "Necrolord hood" + desc = "One of the lord robes, powerful sets of robes belonging to some of the Wizard federation's most talented wizards." + icon_state = "necrolord" + armor = list(melee = 40, bullet = 30, laser = 30, energy = 30, bomb = 30, bio = 30, rad = 30) + flags_inv = HIDEHAIR \ No newline at end of file diff --git a/code/modules/projectiles/ammunition/special.dm b/code/modules/projectiles/ammunition/special.dm index 9a720b8..e0c78a0 100644 --- a/code/modules/projectiles/ammunition/special.dm +++ b/code/modules/projectiles/ammunition/special.dm @@ -34,6 +34,28 @@ projectile_type = pick(typesof(/obj/item/projectile/magic)) ..() +/obj/item/ammo_casing/magic/staffofrevenant + projectile_type = /obj/item/projectile/magic/revenant + +/obj/item/ammo_casing/magic/staffofrevenant/level1 + projectile_type = /obj/item/projectile/magic/revenant/level1 + +/obj/item/ammo_casing/magic/staffofrevenant/level2 + projectile_type = /obj/item/projectile/magic/revenant/level2 + +/obj/item/ammo_casing/magic/staffofrevenant/level3 + projectile_type = /obj/item/projectile/magic/revenant/level3 + +/obj/item/ammo_casing/magic/staffofrevenant/level4 + projectile_type = /obj/item/projectile/magic/revenant/level4 + +/obj/item/ammo_casing/magic/staffofrevenant/level5 + projectile_type = /obj/item/projectile/magic/revenant/level5 + +/obj/item/ammo_casing/magic/staffofrevenant/level666 + projectile_type = /obj/item/projectile/magic/revenant/level666 + + /obj/item/ammo_casing/magic/honk projectile_type = /obj/item/projectile/bullet/honker diff --git a/code/modules/projectiles/guns/magic/staff.dm b/code/modules/projectiles/guns/magic/staff.dm index a47c14d..46b12ed 100644 --- a/code/modules/projectiles/guns/magic/staff.dm +++ b/code/modules/projectiles/guns/magic/staff.dm @@ -78,3 +78,107 @@ if(attack_type == PROJECTILE_ATTACK) final_block_chance = 0 return ..() + +// Lord Staves + +/obj/item/weapon/gun/magic/staff/staffofrevenant + name = "staff of revenant" + desc = "A cursed artifact that starts off weak, but you can drain the souls of dead bodies in order to make it more powerful! Activate the staff in hand to see how many souls you have and, if you have enough, make your staff stronger." + fire_sound = "sound/magic/WandODeath.ogg" + ammo_type = /obj/item/ammo_casing/magic/staffofrevenant + icon_state = "staffofrevenant" + item_state = "staffofrevenant" + w_class = 4 + max_charges = 1 + recharge_rate = 10 + no_den_usage = 1 + var/revenant_level = 0 + var/revenant_damage = 20 // doesn't actually change the damage, only used for the inhand activation + var/revenant_souls = 0 + var/list/drained_mobs = list() //Cannot harvest the same mob twice + +/obj/item/weapon/gun/magic/staff/staffofrevenant/attack(mob/living/carbon/human/target, mob/living/user) + if(target.stat & DEAD) + if(!(target in drained_mobs)) + playsound(src,'sound/magic/Staff_Chaos.ogg',40,1) + user.visible_message("[user] drains [target] their soul with [src]!", "You use [src] to drain [target]'s soul, empowering your weapon!") + revenant_souls++ + drained_mobs.Add(target) + else + user << "[target]'s soul is dead and empty." + return + ..() + +obj/item/weapon/gun/magic/staff/staffofrevenant/attack_self(mob/living/user) + if(revenant_level == 0) + if(revenant_souls >= 5) + user << "As you focus on the staff, you witness the crystal emanating a bright shine, before receeding again. The staff hums at an eerie tone, and has managed to become much stronger..." + max_charges = 2 + charges = 2 + recharge_rate = 9 + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level1(src) + revenant_level = 1 + revenant_damage = 25 + else if(revenant_level == 1) + if(revenant_souls >= 10) + user << "Once again, you glance at the staff, sparks now emanating from it as it begins to grow in power. You hear silent wailing around you, as you begin your descent into madness..." + max_charges = 3 + charges = 3 + recharge_rate = 8 + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level2(src) + revenant_level = 2 + revenant_damage = 30 + user << 'sound/spookoween/ghost_whisper.ogg' + else if(revenant_level == 2) + if(revenant_souls >= 15) + user << "You only give a quick glimpse at the staff, as you hear the screams of the fallen emanating from the staff's crystal. Your powers grow even stronger..." + max_charges = 4 + charges = 4 + recharge_rate = 7 + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level3(src) + revenant_level = 3 + revenant_damage = 35 + user << 'sound/hallucinations/veryfar_noise.ogg' + else if(revenant_level == 3) + if(revenant_souls >= 20) + user << "You only give a quick glimpse at the staff, as you hear the screams of the fallen emanating from the crystal mounted ontop of the staff, echoing throughout the station. Your powers grow even stronger..." + max_charges = 5 + charges = 5 + recharge_rate = 6 + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level4(src) + revenant_level = 4 + revenant_damage = 40 + world << 'sound/hallucinations/i_see_you1.ogg' + world << "\"Your end draws near...\"" + else if(revenant_level == 4) + if(revenant_souls >= 25) // if you reach this point, you pretty much won already + user << "Just merely thinking of the power you have acquired is enough to trigger the staff's final evolution... It's destructive powers lets out an even louder wailing than last time, so loud that it echoes throughout the entire station, alerting those still standing that its futile to resist now..." + max_charges = 6 + charges = 6 + recharge_rate = 5 + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level5(src) + revenant_level = 5 + revenant_damage = 60 + world << "\"UNLIMITED... POWER!\"" + world << 'sound/hallucinations/wail.ogg' + else if(revenant_level == 5) + if(revenant_souls >= 50) // if you reaaally go the extra mile to cement your victory + user << "The Staff... Somehow, you managed to do what no necrolord had ever managed, to awaken the staff further than this... It does not even seem to react, but you can feel it! The staff, it has become so much more potent! None can stand in your way!" + chambered = new /obj/item/ammo_casing/magic/staffofrevenant/level666(src) + max_charges = 15 + charges = 15 + recharge_rate = 1 + revenant_level = 666 + revenant_damage = 200 + world << "COWER BEFORE ME MORTALS!" + world << 'sound/hallucinations/wail.ogg' + + if(revenant_level <= 4) + user << "Your [name] has [revenant_souls] souls contained within. Your power will grow every fifth soul..." + user << "It has a maximum charge of [max_charges], with a recharge rate of [recharge_rate]. Each projectile deals [revenant_damage] damage." + else if(revenant_level == 5) + user << "Your [name] has [revenant_souls] souls contained within. Your power can only grow if you absorb a total of 50 souls..." + user << "It has a maximum charge of [max_charges], with a recharge rate of [recharge_rate]. Each projectile deals [revenant_damage] damage." + else if(revenant_level == 666) + user << "Your [name] has [revenant_souls] souls contained within. Your power can not possibly grow any further..." + user << "It has a maximum charge of [max_charges], with a recharge rate of [recharge_rate]. Each projectile instantly gibs a target." diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm index 9b94ffd..83ca12e 100644 --- a/code/modules/projectiles/projectile/magic.dm +++ b/code/modules/projectiles/projectile/magic.dm @@ -371,3 +371,28 @@ flag = "magic" dismemberment = 50 nodamage = 0 + +// Lord Staves +/obj/item/projectile/magic/revenant + name = "bolt of revenant" + icon_state = "darkshard" + damage = 20 + nodamage = 0 + damage_type = TOX + +/obj/item/projectile/magic/revenant/level1 + damage = 25 +/obj/item/projectile/magic/revenant/level2 + damage = 30 +/obj/item/projectile/magic/revenant/level3 + damage = 35 +/obj/item/projectile/magic/revenant/level4 + damage = 40 +/obj/item/projectile/magic/revenant/level5 + damage = 60 +/obj/item/projectile/magic/revenant/level666 + damage = 200 +/obj/item/projectile/magic/revenant/level666/on_hit(mob/living/target) + ..() + if(ismob(target)) + target.gib() \ No newline at end of file diff --git a/code/modules/spells/spell_types/eruption.dm b/code/modules/spells/spell_types/eruption.dm new file mode 100644 index 0000000..89eec4c --- /dev/null +++ b/code/modules/spells/spell_types/eruption.dm @@ -0,0 +1,40 @@ +/obj/effect/proc_holder/spell/aoe_turf/conjure/eruption + name = "Eruption" + desc = "Gradually set fire to EVERYTHING you can see, setting fire to yourself as well. The closer the fire is to the centre, the longer it lasts. In addition, you are also stunned (but not knocked down) for the duration of the spell. You should seriously consider getting a method to deal with the precarious situation of setting yourself on fire, with spells such as Ethereal Jaunt or the Wizard Hardsuit." + + school = "evocation" + charge_max = 600 + clothes_req = 1 + invocation = "DIE, INSECT!" + invocation_type = "shout" + cooldown_min = 200 + + summon_type = list(/obj/effect/hotspot) + summon_amt = 225 //quite literally everything + summon_ignore_prev_spawn_points = 1 + range = 1 + + action_icon_state = "eruption" + sound = "sound/magic/Fireball.ogg" + +/obj/effect/proc_holder/spell/aoe_turf/conjure/eruption/cast(list/targets,mob/user = usr) + user.Stun(3) + var/list/viewarea = view(range, usr) + targets = list() + for(var/turf/T in viewarea) + targets += T + ..() + visciouscycle() + +/obj/effect/proc_holder/spell/aoe_turf/conjure/eruption/proc/visciouscycle() + if(range <= 6) + sound = null + invocation = null + spawn(5) + range += 1 + cast() + else + invocation = "DIE, INSECT!" + sound = "sound/magic/Fireball.ogg" + range = 1 + return diff --git a/code/modules/spells/spell_types/lordspells.dm b/code/modules/spells/spell_types/lordspells.dm new file mode 100644 index 0000000..300589f --- /dev/null +++ b/code/modules/spells/spell_types/lordspells.dm @@ -0,0 +1,93 @@ +// Necrolord +/obj/effect/proc_holder/spell/targeted/trigger/soulflare + name = "Soulflare" + desc = "Deals high damage to an enemy in 3 different damage types, as well as paralyzing them for 1 seconds If it hits an enemy in critical condition, it instantly kills them and lowers the cooldown permanently, to a maximum of 6." + school = "transmutation" + charge_max = 300 + clothes_req = 1 + invocation = "NEKROSIS" + invocation_type = "shout" + message = "Your head feels like it's being burned as you fall to the ground!" + cooldown_min = 300 + level_max = 0 // no upgrades because it allows you to get 0 cooldown if you wait with upgrades. + + starting_spells = list("/obj/effect/proc_holder/spell/targeted/inflict_handler/soulflare") + + action_icon_state = "soulflare" + + var/soulflarecm = 300 // debug purposes + +/obj/effect/proc_holder/spell/targeted/inflict_handler/soulflare + amt_paralysis = 1 + amt_dam_fire = 15 + amt_dam_brute = 15 + amt_dam_oxy = 15 + sound="sound/magic/Necrolord_Soulflare_Cast.ogg" + +/obj/effect/proc_holder/spell/targeted/inflict_handler/soulflare/cast(list/targets, mob/user = usr) + var/obj/effect/proc_holder/spell/targeted/trigger/soulflare/SF = locate(/obj/effect/proc_holder/spell/targeted/trigger/soulflare, user.mind.spell_list) + var/mob/living/carbon/target = targets[1] + if(target.health <= 0) + if(!target.stat && DEAD) + target.adjustOxyLoss(500) + user << "You've successfully killed [target], refunding your spell and decreasing it's cooldown permanently." + user << 'sound/magic/Necrolord_Soulflare_Crit.ogg' + if(SF.charge_max >= 61) + SF.soulflarecm -= 10 + SF.charge_max -= 10 + SF.charge_counter = SF.soulflarecm + else + user << "[target] is already dead!" + SF.charge_counter = SF.soulflarecm + ..() + +/obj/effect/proc_holder/spell/targeted/explodecorpse + name = "Corpse Explosion" + desc = "Explodes a corpse in a very, very big and pretty explosion. The explosion is 9x9 centered on the target, so make sure to maintain distance when you cast it. Who needs maxcaps when you can just go green and recycle?" + school = "transmutation" + charge_max = 200 + clothes_req = 1 + invocation = "BO'NES T'O BO'MS" + invocation_type = "shout" + cooldown_min = 10 + centcom_cancast = 0 + sound="sound/magic/corpseexplosion.ogg" + + action_icon_state = "raisedead" + +/obj/effect/proc_holder/spell/targeted/explodecorpse/cast(list/targets, mob/user = usr) + ..() + var/mob/living/carbon/human/target = targets[1] + if(!target) + return + if(target.stat & DEAD) + message_admins("[user] casted corpse explosion on [target]") + explosion(target,1,2,4,2) + user << "You redirect an absurd amount of energy into [target]'s corpse, causing it to violently explode!" + else + user << "[target] isn't dead!" + charge_counter = charge_max + +/obj/effect/proc_holder/spell/self/soulsplit + name = "Soulsplit" + desc = "Enter a wraith-like form, traveling at very high speeds and moving through objects. However, maintaining this form requires you to be at 90 health to maintain concentration!" + school = "transmutation" + charge_max = 300 + clothes_req = 1 + centcom_cancast = 0 + invocation = "TRAVEL ME BONES" + invocation_type = "shout" + cooldown_min = 150 + + action_icon_state = "soulsplit" + +/obj/effect/proc_holder/spell/self/soulsplit/cast(list/targets, mob/living/user = usr) + if(user.health >= 90) + user << "You enter your wraith form, leaving you vulnerable yet very manoeuvrable." + user.incorporeal_move = 2 + spawn(35) + user << "Soulsplit wears off!" + user.incorporeal_move = 0 + else + user << "You cannot concentrate on casting soulsplit while injured!" + charge_counter = charge_max diff --git a/icons/mob/actions.dmi b/icons/mob/actions.dmi index 03e67a1c927958d7dfd5d767eb1ea086b0b8a6e3..a42aa7b827add12e55b7bfc27fa12c7eb37450bc 100644 GIT binary patch delta 16354 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

Jb;Y|Kp9V=!o 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 z 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

m+>pH2}|&h*=k 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%0A6~aP-rh+i#An8BB-$tQ+qX1O+nKn> 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 literal 99898 zcmc$`1yq#pyDmH+2qq#*sDO$R(jpyW5Q5Uu-BJz>QUgj#DM*(H2ue3ngM@&TbPO7HnZ?ZezR%lF-1l`~_w^92rlN4^{EhPv2;`FDb6E`t ztjLT6)kV{sCwr8Bt|HdmEyQ<_Ob1=4j$78|ccR@`>Cs#9@#$B!tIZ%3pAC9nV zu)BkGemi?5>d4$+ir`XVcuP6mt&I1LXm_yn5ZVn#M|YpEx}B=JP~&6tFmbunMLqRO zgrjqf;iJG?9p(mwaO#o@CpkORr%9V9;^_tlx2x?<1uPZ!ZpAHIzM}V=r(m|8)qd#u zrPoEhBGv#}1C&UuP{)(~f5Opx05QZh1$f9Q|I= zhMI-^ta;V=x6eHOg zV0#?upxP70x4=AVBygi6_!^&Bj46*1Y=uVXiIqi=`)P3M=d~sGjVt- z>Bk{EoIC#V{1U=-((>}|H-@5nZ;I z(WdgV;$J>9Y7am0of(febu1s;xLs-$BYi_r<%*|3q8`swb}_^z>UC3y_Y;iP@`dw3 z&0)(_jp{;q2-5L&##yJ={gS09G>@D@G@kF1!dV@4y)3Dt4FMH#vM0Z5)!y&rpLz1a zhJ!3$PV$>tc)=I41gZ`;9k<}hAi7)Y!i{SI;**pH;(t0S2RCNtYtbV!>nJcvaAAHmq==lser+%W0^z`)1=i9=`AwAX=Y6yraSij57{UYx8plZV& z9nRrB{EWCYh0^Rn{V`bBb~x!{$xFaSB_Qa98`4QpOiYf|P=CDFzy#sp#Mq!c5sg5` zMDTcbqef1w27HM6W<>2Cgw0`n1e_!}I)os}OdC1RwFH|Zs~yveD;$v`z3gP*5x$m| zUZLYq37T-AXOBAv{yewG1Hr8h@tE;Ob7I!0RFbF}mXA~4?C*Pc?)G2R7Wt>GR z)=Z!&DbCuJ)0vvsFZU!n8V7tf>ef2&>q!&W6uZg5w4Xqlx=Cnz=E-Tk73H6@0yBBB zjg$Om$41tj`7uF4J6QgYJNDOx+OO*v2Cfa|*=Hd9cpF!?9SkM1Yc(7;#>?i1ziV>x z^LrkVz+1F`yz^|QR}@uSsjOpZX&E+}S}Jf$!i{=vZmzSpw`xQnwYP;>%~4fSq@q1PKd)wB5b@*3gKPBkO6$rr zI8hOiuZ4v@b4^J}j1*K<_OXa#n7bi110kJ^v$3?Kj%c5EOI1`AT_F!UW=Kc0Ec^>`Ea1_)W zq&gjul9$o)g^J~|udmeJ-k!r@_dfCrl|vk&rR8b6ftjbmn>WQ8y1MzNO$a)CSVTme zaVrw1qos96K;Z9O!H*wGad_0*jU^%tJ%1}FT|>Ap}JR*yQv3kOyEeeuRdDUguRPzzL( zU$tWM)KAyoIt&7ak_ie8t)D6^*u!ARAfWNven;KhogdLT14-DJDN<|{{ifOxgL>Ps z=7+xgwdQr%`!OczMOM&jTL{6gU%!6*?Ae(FdU|tPhP)8F+>#}lW{=9o`fe+G(h0(O z;kQV)6*oV>!rQmvcJ}tnTSNB5s;a8$CM%2waWg)F8KY$M7=g1_gyFI`gtmt%G24AE zMd=eihq&FzmQm?T`jQ@zaMJWdNVfuHVPT=nto5wbpU+&+RaHAcivt-VwKJl-V^Tv3f%9tL)zi}*@+D+?ZyzGoFC|*;5G$cbI zk&(>doBYCNCohz}d>5Zf$++ZLSAFAWo?Ih%_aO>qd|HqtkRJ%r!8X||n7vj%v9W4% zO%PsX!uz`oiK|)JWOMcIF?j(DDNR!nu#z%*;oP|aw-f!pKWwBI5l4ML(`QD@6F$8jsAt(@l~};4!0h$9pP!zI z>%h;U{>xsf0J#&=d+ssb*7)^=w}lDnhCkmh(QlGeYeuo_ie%VI#HE`eoUSW<*E9VN zk~>O5Fqt|vb9HaWX5YJKl0)|B`OiKQyR@-w>l}ujm62{>?Yt@NB}DrDTmDwrtzT9a ze64|Lc9Bf3Ok2{1QF+2C+5A@@Ym{S7_A^L#$r$)CvIjqY{J6r(8Usdvc%#WSuA`%4 zAv;E9&r*_QcZ2(8Y16~n2Z7| zg%TXixg9D9MTYIx9?27T?eFoiH_{dkamYI}IyP2c$CWt2YNnr5PeWT2sGC&ZzeafI z;I(P-9f>(R5%Vh*SHOUKp87H5>QF?{baAG>+|Ea^n&nN~XzLz7epsD1d)&L0wxF89r~Z<%+=|tFiA=rQRxfC^;U%ml>-$c}%G_ZIU+cEX2(dF#znjyagnk$VmFY)1zFywGv*3(&h}c|j zH+7sL4m2gG=M#w1mcEJWb#4?pz50)4qEj_#V;7Ear0UXmhjq z#Kdk-=`ib=LOgI*&Z~d#tRY8Js%)UZ+P#`AxHi*A0+vK2@#Mt7WcRhLU?2Z?T6ec| zubU5?=~7tFZLJ;}Mxfv)9XajS-K+MoVa@ z%6nl%M_QA6<+Ad6XSw~1(mI9|*jHjgUMoh%!_TjC`Igvi;0|RS9C#9V4MO6%bz02J zW}5@gs6bg&z5!z_N8pKd+=km4%#5#ws%Oj3O?#r^jZKy>f6jY7Qc;5$+Y>q~*@8#D z(IF5tp%{h6qLJ;)isL?ZAC@D6Xis0%@h9Q(n)OZm2+f(9`NbAka&q$gMzWBX&O(0{ zx_dts+Sjz?#EKcqFh2ECsjYrJCO+O>h@TU?!}7~0p<6t6?>@W;yka=!{ntAo(IGB- z0={;Ca{OoCDpc+CpG5BZ;wn~xT*|M>2rs2XMTqt`4yd+WeBGYg8o1p=$S_6$@M^TTEDa`NK4+ zx8>c=f^BE+-o2~wolZ#grHhnaw~;)0gc;q|Ll<{Tb<`#Clec@QgdnEvUPoNjlvR%L zbe2j_oluvc2Cpa6cO7u%-9&edKU~WD>$v9vvU{zvYvEcp_*0WygcY zNbqTlyj4({@c;c{q_U&1uuw&GW`yui>LIk#HYz%y`^Sppn>w{(BOc!lWd`dCJx?e# z_#Ho_?qsD~?#EC6G&#GxeG4-tLfYAJ5;Sk41{kgwiQn|0NJ8{@_hjOPNKL75m>*H6 z&fqq{=(;@gi;IhHN2F6gI6kghXxvzbM7jrW=OEi~VK3%1-!c}NH2lcP%Zu1V)^Kko z+N*D;5IfZM^uhsr%&x8;tyTdTgFU9Iegn?f+R~z?um2$|jN12@Akca1^pTRGm_uvg zr%#{m-o6d7>Cb2faNGe`V^S>F*w!ZdY{}%+D~e=`meb>Gh%-I#K5Wxnk0A0F!OhE# zMb&sD|JYY!WsGphAGjJq^^V`mhYugh0vtc2X9a#cJ3Ie6SZ_$KiOjhUX$SfQAFU;@ zwRjFX-j$X%5;Fkz*xz@{Lt>W;$e2e|R8<+E(=M{J#&>+*Og?aYnS@|lhPC6ROZb;q znV7g5rxkw&5hvvoAOq|DM%_#>~6s`pFV1Ds?CX~qa*KfZ))h? zhx2*eRrxlR_)S&KSYdVurltd5Z_IZA<2jtThq!0;y>;`y9OEv+?q5tF6%(UiW|lRy z)Z5!z{H7S0L7e9_KFO45i~RF!!V_h-MPim)UqSA!Et*{h7eDN@iB}mjI7KymWX51I zzd`k-y!hOlSeALqkPxry!6sAP*kP+R|=_IYDl{CJwuPm6FJ#FIpXi=*W`~(@? zvCr&Jj4+vP+oj{Yp}kmY7~vgLs5|E--MCB&4P{M`0nZML!I>Ctt>If+ThssZ3MhK1 zsMyj>w(X%i`6c4PN0WJFgaz%3b#t1bp!VqEStX24J?=))eQM@M6xgV|D<%WGNwrdB z8ynXHz!1<8U5Pa?VG6^rv6ClJn>d814bF;oIsc@`#?Iks0*nbqtp;Qend`#Sh(T3R z0l3BL1>DIAj;yE$l{}L~`q07JG5hPiV@+^uh}owlP$55T?iFPCT!yF_8S%Q;_n;V$ zpAya9pUwL5;{#4|;3fvacceGv-1`>NyimegQ@B)uWXjEl5BW z>v6LNa@U(Lll%tPwTSk2z>DQo%v|UeuD^%YYFauXfBbww2J+Z}AVUFIjh6(OYnPg8 zeG6gYGDBaC)l9zx6?w~pMbS39E^9=jpc(OZGk$5zf;iI)<&$B_TVHox?qPyF_VN;Y zM}7vFsmqY+CFk8;G3WW9eQ)`0lg*nSMcF}ZB|$OUj<`&Rlpx&=*|+bppL^y%Sb|%A ztu?=Bu5hc87dqi49Kbxd&cq9^f;Cfdq_Ssa3p%e+n}R<3)t^4>IGGi_c@x&4?zZ20 zr`1N%gEJ1z@=SA6J+g}DEQBI72m;wigjZXHerA~*)3j%L;`E&Qw?2LL_XAG$5oz{Q zJ0U0l$6=EYhZxo?H$Dj2^fmXRSex7Nn~B{$DF1r-ZWP$I=}Y?+@K>gmO0T#$h?2L9ba$VmQf#p^Xv_iuFoNy89ENU;e0#l|N1~r2F!K} zti+*f^dhM_(Z5c)6k~7JK`k>vgz346kn!_C=aE872sc=gIF_ymQ6kkIL^7Q zjtQe~Rz}pf4uxf^b8%g5_~|x0a@1+XKUwM%yt-36G6T_*PHKuJ1)qCGa`?nNbzzUD zX-9X8D8AZ#0*_M&y?}jDasmhUp1w(!xkcak=g(F8h}!ZK50kBKKv!5$2W&I8mV zkD<5OD+t?-Zk+9madrKadCBRbO~$Bo?Kg7GsmTq2Q*L8_zA3dAO6!7 zSm9{yTuD{07$`P=xU9C8Zi^=FyIfE0=rPB7WNdUnaou@I&#ksddjbWdfiNe&At88+ zNQ@Uqet8!PMQs{`cuCE~gl6_BadYdmMedvkdXDW;{f>x{(b;J)miE9NvH<{*?^jb< z`TTo3J{j?5?@-<88|u}|T03%&?Wrgx=pKU@f6fxz>>(|6WiKh=oq=z8{Dz3dml}LU zJMW(ZRtG4GkJRk&$*4~2juTp~ITdbP_9MzGk=@Ppu)G(3@tTx`9sKcME2#2#~*;ThWr+Z$Qx-yOkZ zB~RQc@tDB}H9n=Nt*ivu;nC3>b|lzq^hg+nza{I#*_ZNOp%(Ld1?0QCyPP~cZgmYm ze@=|_{=DzqM*T?JyEsAp^#nI&49e?67|unq17Dz%@tgu4M0a)rdL7vPLSt8JIt4~pXzUzN8@2o4Tc}uz^ZkZ@zN7APN+fj zLc#*ItwfMhF74xYJ$Qn|5dns&bxS~yixG*fb(yHm3W7v-4FS<=MR^+E4zS68$to)| zSg(^J-ktt0=PUsRx~ zW&Ql5kFo13PH<0^h`~QPT4s!_#t}<39Fh&>M#k!a3?}|eSS%KhWgoTUa5Vr7XTn!a zga{vs3ESdBJ@jo;aqj~8eM9j&aZV#hQCu+T2Qe)N-+$()$&ct928AJFRWMML4C$q% zKh3&@ON7cE>nrbdD&g><6v6qtaB9LK?X|}AFmB`eH-A5xjEp`1gSf7;hiDcV7%?M~ zJK+h4j|gNOyxHdjPWPU*)zj-5WM?Ex-%xm6#TPrGQ)@SxF4o}s-VxU}+p!~Fo--N& zy5-gf&QSOL29oHV`J_z`8w>L!wt)W!un$H!#v0eR41x-|ZnJVnM_YT|2FCkj^~;@n zm{jo5d2tK!Rc`of%H@Rak`8>)_AUgn&fR>Hm2tU@wHc4Yv_}}!nEQGOIpKY{umRPQ zbLc(?gg@c0;X@`Qyp;Jdc>wzIn0uo4v8q+>Le_G5te@8sbB9i=^jupwol@Vq+w-x0 zDi~HVr!V^{JqX_AZ5&?c6W1|zJJhvf-f6a<%IQG%(X}N`2(=#0hI`_!fn_Gy)LeE6{Q~Bh*6V2QW}0UiRlKm;9mCu8 z#!Ek;VnzzUbCC(hn0u{qQatjIVdrC|-`cniDKcWf^AJ6HS$F!A3m}lEimr8r1>W*| zU~8wwo*1zHE;GK)NO}o1;!=cW3e?6Km{7j4C*pDD0MysceXv{HAQ>OC%3>9DM*th{ zznjTMSa7?T`RXFXON8&Sn86q`4u?|$r0tCxH)hw@xgG2EF<5NyWKHDZuL%p{@mM!T zCj|iuLG6%7zID17axdWtbzoSxcD00FO$V@@2|cifevujQWzl4r38m^Z(RWW7aM`#M z>!ZuOPh0ruuF&g5V^;dveDRvXeWRP<4);%P1qdahEYFUwz=C2lJLxBs>hWhx{m5q1 zA~${PN&F?d@PXTfbWGU#IuZ;a1vZ5XZ0=1n({Zg(`gE(VMD6MpIVYNImG&6Gh#Nns zY#I;bGo<)aaR!a*j z+q%|72KJY|2e=y67yooC4+N>VoE<)MVAPo{Cbf~bQ@_ClVK^k6hTa(i2P8b7&-u_$ z!ZlQ|)Z`iowt8-MrUbDS{}1f~qKBa$W6?9)PV;T&aw|@zt9%aMSRHOnE4`JY%!s;h zC4weh>$jl?(*tg9!R7Mq(xbn6$W#;tgSnopApM3Hbxzan$MB(sZBbSh*|*_WQ~FJs zXpdxs;Qlf`^fzhEcVx!oAmZEyc{zVd^LJm>s}2(hiVYmQSdY- zsr*CI9chQ#fGiYfF>?};@S)i~YE07))-VMFY#KZ)6%G)9$^y1>;AH02r z^VPi$r#*!U_mf?)Bl91Q(oaK_;nCsSckhzN$H!COd_;}j>-X6BIQrgC8V-dj6PsV( z0XU~JO){@5NdQh5dPtJYJBa|UeqiX_IKU#YX=yye1h~%Eh(=($;-&arF?axeiR$o947s* zNG8u)MMZ@k5TGGU46zaaP_-7sMcXOTI*4*S6i=v@!7qsJsO2?}!dpD5&!KmV4a(v)wyS7Gw%mJ$qP`@Th` z?6>3j%};qHX&7$5OMT{tvTV*z6U(#cEgHDbze6m2?CYHLW^iVE>iX#AQS4!?ldM10yMi>LSZ~OA{wqM2;Hbt<^96WW(SOe*2Z~Eve+P{XdA&xvCj2@rE zcK=Hips`$h?ax$v-HG0-6Bh}-*lX9Wxz+W8htz{(z9~N?4AwRI6&(mqk8GYZ)z(fZ z)#XVqwkXqmluq%Ig_&;#MQe%tr3|>ez65*q5|fwb(d2h&LEsVK9%?{CM|L99633Cv zcl#;`O>$z+fnEwSp38imTd}dRKu(aLUi>VxA%UGGGfak^Hdtda<!yz+SZHHRAxgO|ERa5Ig|*oPE}o1t`JzQk$L$Bmp}izsNv^5wqpeXu=YVy} z_K0iFl;-#>goPB+mAhj4o)9!RB>yCPuf;VVRJ9d!Lk!dYt!D_+N&GcY+o`6ec3bH~ zgrrekPOWZ*Vv--BH&rBj!gcvEIMY&pxTfTK=Es1eAPS@lQ3rCw?ptV1SDg>FpV-v)7&aejoU-N&g};8jUAeV| zF<1#5P23JX+R?Mcj&x;OurVAW<9~7oSM2UkgiexQrn`!8_ZRc*5a%K|&QvP4aooFo z|9-of51PVJ#rm7IMV89Gb${}EQBhbmZw-RCzUeq=lLK)eECQRnH}!pOkn0NsqzAVL zU3leU7zY63_M+Q389~G@;{jC|e<{%v&q!&dwaW;Ve`3{o{|fn_C-GIsj{qBD)8hzb z`}t%9e{kTu2&tfPfmP6~+Sy1!#oDzDG$ zzUSF~oo;8-6Q$4afPpx~T~BNxY#A6jw^MvqAYY)n`Y|nSW4~!}(Gocz$lK0wZ??BL z)lp$#1J*t2zbDEer1?qum)l!%T@8)-K^Hytvry}kL!D4N=aE85br2~OSWiz_|0H;q zquX%|Sq)!X%$Px#4P+&`!|UOIiWZZ+R0iCfGf}P@`A=8_7_4q9Nl%viLYdI}aAise z56=EUN?(Sj@0xn790HpAGAStt#Vc(4>PZt=n6cMqH?s&hYOSq$wDHA2B4bRt$ z+Hycmtd$lE^w2gp{3gl0FEt*2LE!sbDN=J&R(S6QNvFbF{%d;@Q@7DBiq;eG#0JNh()G96_1ldtlZEzzrp=JT-a74y z8~QL-2>#J@oh87F=MiRic5a@X<(|#M{Dw&Ko~8#xi%}FCC?HD#lNFJ|PCpeFTA%o`Euvu0v=nnjSoyG>a6vdnWW4FED0D5rTpXUJB)E*O-W%xk;jv6*>erNj! zI>tzdeKb1`YNTsPI2c+nX(*kQLq2?72iXde_UeWevG(;!)=)wQ>2uBcF+R6OF{AA! zbwlqbF+tPgE^|)>U_T8CDhdL&z&i|`SiOb|CZLRjda6}*H4J$OegV+vLeKG)N{$6W zKu8Lty5?}bMDXwXsz~$gF%venE~L@x7@Xu75(AT_LH41hU$C1`ywgk>@g@%3xoc5O z=>ui@u6Jny@9XD;x_Uug?jmjDuHWMxgzM>Rz=R)2z3QodKneNilRwW1`K&dvU)04K z;Imzo;a+V$z!GXj65ENYl(2B^ApbcEmrTX4O=qke-gZ=1v44ghQz@jig;*(t z%d@r>O8^sW)!XRP)_C}Bg5B?ju>AqVe$glka}y&fmgsZY%XpMt8V1@aKrSG2g65-J z;BYj%9v2r^ifY37^XFx4;u?y#w$EWXGqp2etAiA!KnbW0y`Vzq5yc+lt7q?Q)otT9zY)I~o14)DDYgvAcvsV^w@m#um?#Yrk z4&*GOo)q8%BQh!1*6^D~hjG$>sMd$t!qJe6m%q#Y#+&z|mmPN6L0|oNm~~iufPNrH zW^5QAns%vau;w4b-iqh{BmHW?dT?bo8%}Ca4JY;LJFlAF`Kx;&^P627&5er`p?9{* z?{@S}fdkQMRDn|4**&Fp!|7T{wM%oATyLo_F7_E7tMoVUx9Hsuf zs6rq98=0M=vz9GFfUIoBkbj5vI0&4F%mz|$aCnOJG`t^$~<9=gHd z=eIe}|Nl#-p>dSofA@k}o1=Yum^8rAw6s_cnVC0VYQ#J?lJ3+LUH^BEV;Jd7&Z%f* zl>Xn!p8xBqh83L1IlF$nrxHeb=;j`Mkaj*H9o zs$kfY0_;0Tu|slEMif&&xV~X>rM1?gHiI_~Ld9nXrKnLa*77ka2%wVV>yn8kMED*bpsP^3$ zlMyXqtG`n!qZ>X|q}wuDPF_9)5YL_c{fCpRdRQ95>OeLbBsVt~5)jJj&j?u4RM^+D zGWAa4^rO^XatI*wArNp+-JdSG#d|tFl^m|OKoZS{c$)r)FZ1)mYgEa2IXSPO7x`uG zknNs3mn3a-8K9X3H;r*kprpMkDq1t-4jA-L@$tD`9W?jY**^e9XIonv1frp#vE!gl z3l^LMe5S5`kf30D_2m0#cy>L0q|2nYw2YBXv#?9|BD2J+UK zGGxLcBJ(7F?1PMa)H~auZ)6albo`i@7&_M)$|feJYi9&-2st_Vm0PzW?MoWzfryXu z!Go3*Vf&y84kJ~eQ^o4J2NDuDe*OAIO-=1or#X8W=n@)(ah_AGpjIFlQFG!OX0oXU z+c=OcQQv@_d93IxI8S$VYO^S6q(Fz8!Fm=5i2s@$q=KY`xrIg627dGpgjvmO+l=hR zhiAgQw3Ofs##p)w415%jxiuZKn>TNkd2Sm6bz)?y-Wf=(XN;bUh9Fu!FNE%K@RaJRoLvb;;gw!!XCnx zY5viB*boQz5|3FPV?XzUc;lS=)!Mg1?042*fh_X;DB}NZonOlo$3~6pj zhJeo1%kMq!ut)V+nw;zE)vKje-Sjbdjh+3Fi{ z+Ze~^Z3V_%@Q*l=FRQdj7h%$q4#X3`Ad!;M&6!4nxJ{2SAUqRvN58ry?LA!W0Ho&C z$OF~0ThEo1uMZ3iR6~hNOG}O!4z4aPpM~v5sUd@^;%i)0G;lav&}H#?WGWNom$TLt zY3YyvT*09beA|@BY(eZ{H6=dudH}Cs4@g(u0lf?0@kkCC=`EFT5zwb3(-+%+|CUI< z)%h7D*QxRKFvnNHA$hzRvpuX4s!iLXF)D1s43Nl95f zWM%c?!w0m}&jh;1@i26Zz-!dW>#CD77K-(pQi9K{i?mwb_QWDrX$D>KY;@1P3V_wV0-0She%l(?^SbdWQUH~c{7p8Uu*cK=Y{ z?VDs3Fq=T3aS1}LTX#)ZSXjen$D4>d`AFKkw~Puj&LrjdclM(?@REPmF<^-xrLSUf zhhI@}Whj-C<7gG5fN4PGCTPPtcZB3sIyyNerSoVsTEJ=caZqq@Rzt%rAi!o6bGi)* zLB91ap@jib=Pt3tk?DK4zR;kmQi5_A`Qw4=T`6-;KIP|arz3bUNH$2}qMX)}Vy~TX z%E$bP>Z-3={eY`e^7oekvoFS%_qz4VOX#j&r_3oLGxfW(7|dV{ffVYNk%LJIW`v9s z(9WBRxk7+@hSVLl@w_ik6+21b`E)%0nPpGsfZDW|Wf^s;Q4l_rde$n&lsNtOCI%E! z^O%EGZVbXxv~*?0_!9z2*W5RQs)3XI@nYpO(^o}iWXKt>U$;u#Agew^O|Sx~QrEU)69FRq(H~s!9Qi476#znG`_p)mCXcwSiPrUj^93 zQczbhqX%sZ{0|;z%pjR!UeH}t2X8F=v*hcKy?duE>?64#+~tofrWp3G%QDC#TbBbK z!45hd;8?%d#0jk2om2j)-TVn?Z0nvRvSx3}aUgWf8i{+NsCe!&YemN3!z1h%E$~12 z`J4_7L~o?T>7e|Z^=x-QfmIQwSExHupY78 z-hB}ni&&^uhs^?HPz!p+QT5_>%E$vAo>z7u=^K00UosvE3ujr6E3PGj9?)S#HI^+O^$vkRd`oQ6fgbiuoZyF-^o{r1QZsR*M*0V0 z_Mt{4W%6K40IM^s$yUp_eueO&W`|ri;DFCE$TSI3^LD^A5-vZ@k@fpG+KG zz-Hpc)^i_KpT{8ZujX`5qqeE(mk4qnfGNggGF!(cqlG(G`{m3JpC?N)ngSMeZ#p6;9Tw;~FMoQBx0oy` zb6?k9Tv{T7oa%OFXHCDmgDGbKp9Yka@E128=mXeA3qX%{r}y+_f0dSS+X9x?S4 z!S~~<{y@E*`nTeY-~*eQ%K}*P4kAGGSU6PF0@3p_oY_lfuMFJR}8=zu`{IaFd9hNuuCM-4;7X9#EeN{T?=@ z7Pxx*r2XmWy}!sm1%XuvuJ%7;v5wsd({-$#c&o~N#aWm&RRokYIObs>c#{*JYC0FL zINRP8BcfUP=Z{kE)tO|=HLa7fozd}zpZoH=ey#<}?ptqhY*wv)qSTOaC)6eLE!S-> zeE`tXnF+6|GLt+)hYuk?RQHKQqWNOyCq_}B^N*v3b>4Yy&+u9ZNs9oe`7&MNxtwXUJst8O@AG+9=muc=<$i(keI0<$0c{nTYav_fsH!Ez##Q0KAn$)$& zTzpKllgmxXaiQ}?{i;d@*!izn^Tls%b|-D(AP^H~v2&&+Lm3TO6?F(d+eg1+$});} zS4{i^yYGg6sL%A2c^m&LjxMILBg^UPs&7xDpvboLBb_u`sY{QMLr^W(Odr*^u4_@` zr7BXalNw)eizSjGQ=acvyJ*!|FL^%!8fM6P-yoPe!RuK6Ur|uYg^Vj#X`_6$eo~Fp zOuf6#tv%b$U?ST*n9C^RD+Z?0F`sHls4rgptPT77<;m&nJ9VH_|Mfl{QCa)8V&QTi zivavk5U$XJC~8W8no5rp6F$+~bXS_Ehmk2@pjCbo{E4|oFYg&2kBuaWtwpJfVHPd6 z6{o}FW}07+>Ta~#+!ZcZ?-D$!Zo#R~L?;{$ez#@UNl4+0&P=@XufpD^(t?$n@7acabHad6q0m&?8pc zs$N<80n?4y?LE@^9>w2@R08tCg$vKztFZUK2IRg_*VJ5au}I(jtqvKm^t)J~p;-pt z?}m>!Yk>wo(X9K=pO#a6o=&c3WO7LUGxeb%v=O-JO7J|HK&#R`9GZ6e(wo(vh_zCNF z4$==P^2q1Qu$@;L_Dc$!$MDQyL>X13bh#SU>(9;x&v(xk(`&b^G@>Ctr)Ue5T_3X&QpYo5X-dcqG? z^67s4_~bnQSBRm1Up@0xk@{}V**m{JHo1 z(k9xMn8WY2_)90V^j^HiwVS;=UUJh3RFE#g%Pe&}hEPWa3Xz7Dxq08Bq^yt!7Kk^^ z)lsAkCnN0hNC}p$(X9`JBu{sW*T~=S`7#sH@!zi}J2j|`iQ^wTxRtE=Z`SX`SW<|Kx^ZrI#VT?m1`+0li%Qpta@vrHRT(+RgxhnRrv}>0zxz$>P%)i?appuN^B&x>&)G{`eL8k<`KZ+0c^wVcVp}Rf=K+&gKp4 zCMPFX`)QS?_AAUEr@}+lVML~oG+t+2RllB@+VeU3LwYQ8yt#}n)or6Erw4&5{_-Vf z1xf{GqX6(=-V(2~0BoG#y~!X@&+bPzt~$0DVfs$XB^#CUxi4qDZhNmI4-SKaMVE(48g2I{7EdlBD&x>|Uc_4ZM5kz3SIT@rUN$?Da15f3&kSjND z7IfJJ#ee=hyHjTOl2YI_j&PsTB1L&9oY5}S4FtGl9!zJ9)ffWv*m4t%TRvRp7I^*l zcAlgc+N*(ZfILkNn`JdbTyYEf2a?Rq;a7-T(sI*fZxF5ZdnP{DvDa#UBH~EKA8pxG z&E|7NKOVNnd`f{phHi~2Dl>)v4-|Q7KL_y7rMBf8_lR`PaxJC~yv4uKa-)Y3>&6AK zkQw5|+GsS~*Nx&S`WbTHU(OC6tf>!OQ|E;(litr=uXR`AGCpy*%Ev?oVGnf&-s!`b zOlpupo^Rj~iqbUwCKi2$<94BmbW-ob<^<`7edOwAfhz)lhm#2c8x@>F=To=_nzrK#NPPgcYCWAcSE_!dQua7>6ehpYcU}$o4DV?32FI%iS zNJ#~Png*0o62fMWN@8a1Rml~u+~<-8F&BT0E6Dma0g6w>+`L&M-K;?9hKKk zdR$j~eA3nEaL`x~(_u8zNm|He+u1ba&oIN8{N_xyjA-5PNm)mnqLbVUk@TZMUuXKw39=krJ4t6ceaBUVMcN7) z9k9T?Y3B%&@?S<(bNuVYZuOWzhleB>R8(6IjM|?g9{!rEKNh^wPgNIS?Aux-_!7MhcIXSP^{uz-_BBzM!23Kua#kg6)*{M&z?zJtFU}1xt!K^Bp8iC z9pg`DxaKagf((bpoupEKtTA+c%;*&TANY-l)QhrX*e_lSUUG-*OOjFWsc6J~r81x1 zl34TmO%uZT{mscyhy2qtX{tw65G(94bLz}|a^RU@3EYKRAF^nYB_EjkDfMt`nvjOD zIeYmUL$t0(I8*=-yhdsqRyD>qqsL?lU5@zdV=)JRzJD!kp;^;mA5Ylimia$ud+(sA zmactt5EM{hKm;TUC?E((mN*`uGav(~d#J5&)TV)An9s#sfXiY;AV3>mA|X`r#iCm!_yZcu)km|vIu0ZN zxyO$=hOpFzyksJ${DE=C4~7=3ib@BS%#Gg;wx4uuCQ>wpI4CuEeAb0AwH%eN)Otma zcp!WZelseMf5C0LU-EBb^P67kjD!L3=-fZaRgm?j0>`7_yDgb2bbwkRxXs^2N;b-V z<^AvPNp#5Yl3OCzgF135i*X4ue}migmZ7vyh0Z4~koW&U>X$fm7Y{CqSD!zk@Iyt5Jdkhp9o zDy!%Qd1T7ki~aJ&%t#riuWLF`2AFmzvt}G;1-In~GiE!kt-30X<5X2EhlfiVJeY44 zcnNl{CF>np2ey&k%2H)XZ77^9QsDtwh~EqO1c5VW0fV@e3q*QccOE%vwB_^SJM=Qd zYFyS*s7zviba>4BHRJwlsb$1tMa98Gu600+dk0kSz`k}xtH@}2Zp^~m{5{ZGDD$-6 zprhjgT6hQq=&p#aUUmLm2%6r{)YLSdVI8=)0&dg#x@9+T!UUQc;Vz(hPe1w{g*=zb zH%1w0M@%MtQNRw_tA2g(y+VoCY!9R~A5{UkMNX9r!~7CFs`|E*S}tgC zo=rXOJMK71BN_H)1bC(Xb8z2)pK&Hrvk9kyrb)%zF}XmPjkQsYKOu-Ar2XFGf};qH zjX^1KI&alIH>~&3CSP}6r=IF1W6vc@rsHMs!!~kqX44rM=?ub0lR`ns6zrQl(SNOmigy(A8kV3uaHNnU{iQIZ}kh_eo468r03v^9 z5^oxx!**m9ovpAPljW3L_H^QC0OGV$Kf+L7T0WB4m{BCewLUrmRWV!4$O88bneKiZ z*U&aY5vrA~zrPTjctsGEJeSZjvM!HIb|H|)sg)V@Qw{)(M~{9<^5G?(O?f}X`8BN0 z_E9_X)T@h7`>3<0CoSfj4-O36JY%)-N+6gx9%?Wi-;BT>W<0qKX>Mz)Ei_Vu9?OE|+HGaInIS?g&ho|hv{GSky<1Jfa}v2~fj2um$`Zd^3R-Mbk*&LJ%W z7B{jf9aVicJ_vJ#od_7<46Qp5RM9$aE8DnIRgccwK4%b>fXEUe zBK*Hu(2GhW_lT|ceq#hTrAyxvU-a_KDBb?f9>Ff?&<_G(BTdBs;ErxY!MNFP_g$wS zWBWO-ipnFn0+j|0(0xn%NnXixrV3UD|6EdQknSWeDi?H&&*@rL%@`hmzbXv#9B7E~ zs>aerHrWFl>-K^aT4kUL48yFB(}q0y!0rMjC7?co^aH>YUWmJ(o6o#`aPw#1{_B$VIdcw0x zFull9jadm_x%66i5Gj^XffV|&L?BQdEQ16?x^>Va26c^Kk2rwGgi3ZyMoBxWw~2xAd0}=e0_yhb^bg5ON`ZO%8K~j}s;HL?%vm)pt;{v= zoAsi^LtTriOF6~A7I)@V;xH=4(mDc=jl3gE+p|Nf6%i6LYwK_J8q>w}o@>^w2R5jr z@ORmuA1k-MWoCG8-+ZJBNMB~a{xQ1*q>{iUeeexSQw1Q<+w~H^y9oiP&wCR1XAigL zcf#fM@T-{xB2X3V5W<@aXIog^>UQVV+0mBK*+L1RrcXw~%Gp)VfL=Zyk|cUHTjgOr z-`aujVRTzfjTorKF0Ryl#Yug5gQ*dwpeARo{`|+Y&KsYV$;;L5R8qC)WmcO^$FoJI z&e+vDSo6esO%`R&_t;__Y;=GGa4da-6s)2drRD%~? zRF;!I_f5j}6QSopPHKr>`IVQ?taHjz%8u%&s!zHedft$pCV$XR{i2wy%JbW>-n+3Q z|D(g0!_9GxOEwDTWw(f@Djkt)6%c10y~ucJA<_`d(z&u_5YS6SdF9^y``tsEc;&%w zE%R<@|oj!rn+ovX}$S%e{HS4JEtPWu-Aug-S%`l3Gsb*E?;dHm7b+^g(b^JD{ zC?9%%hpv1$EZ+`q4~Fc^9g2|V!jMaO>WCOpJa`!zr=>o+g$37$7sh-7JExDU4`wJ-U1#qcg{6rr>V zm`_eOipH0^Vm20&g}CFSx#^{R#&Xu`Km?Y@r@t2>@F1F_g(+oaH&N&N*PbdWs>2J8 z6eA;GSe)d_Sxr`O-!i*62f>io7k`d{S$a=GVrrYnAMdNp^htFf9=n`737a)*p)ZCvSdto^PvPzHaye)HL zWr54tb7O68Q_hs(>UTD;T=NKp94@N^s<)8!00Fy7LgU^-+r@Afv>piDz~Jt0jTOsw zc6F6{_QA^OxV`y+V{13C*rhXwyWPU#Ql@?zo}wQdOdiT6uBAG9IK;jorxA7cc8+*H zzj+xY28CoIy2KH^+l@<*XDTXNsHIU_`-6)*Y^9uvUmQRkuIcXT|Mi#B#ud4A(B$8o z7TWM3Bl$-5HjqbAbkh1^7SCVa0TbdGdbw|KL$!?W#Sa3D9r>MbKUE21VDwxNlA$Ii z|IUN){JQ2@ig4_IdC>PbIBCCo_`G#6cFn{~^tw`m9-@Df@*}VMohzODA%g}69=%f);luYIwJHQtv_Ebui;7@yN zN>=;UT~!$(=1aVnWQmvq$-wEKe{y)}enH8Ie40P0|GEEvTiSZ8Fi=sohJNGrSh5a07Ry-0AVIxm z1b>R*+0M&0&g*-&szCbS#J0IR_BWU=QH=~?mgL;Fe@s-=53|NeCvDsqNX;m$d;-e7 zpZ-YEp$n+1&Fm-2_zWmG_#Gu3uNhVMpP}G0`&d;XW;qE%VSoO#9fEcyY*wLF;(I=t zdgADK6juzdb>fFPz@8`$BB8qoW%%G31&0VCOC?dJDTst5s*713!(YZI2xNurUyXW_95dHP^Xz+g-f45lrvT;#aBAB?DV+xmJEjH)Be;vHS? zV;$+KC&bV8Z5nPO4De)hcG&I&?Z8>{it!P3FFquk35V|)d_i~S&kcTlYF4Xn7$z_rq z+=$ZG2LY5fZ;mBqB_~T;QQV@X?flWyq-$lxf$!hod&X}&=-KLR>CP1x6jTCy1;9d_ zrd?zNInc!!)q62Ne0U28IB;ieu9&Jq!?#=M?5*XNPKLD~bOc581UcS2ZN;9eiB|}* zZ19>^OAz;|TbsqiZu?PKeelG@&k|FxeFI(%nU#tDZd((4Cw$oqI>2XajlJ(706O>C z*fMAM%g@QaQR&YR&r`}Wo(RZb&JGwGKSf0;!#rF0o?$#gM}oj017Ro!DeoQ{Ada|n zK*R*w(Za-g#$D&r=IN(siN((|I9r+=Y^uDi#r{HqS~={}vs6^TlK;f2mMN zSeUu**^#+yFsb?H*aBT(J&7$}lbHWpK&xX}ZJu{U&#-W29Xhlu<+`diQt4<+MMq~V z;GUEjN|)K`rp6UsT4sYS>-}qM%*&p@ut%|-Ik_$T%56zQ&nBygC6O$^%d8O{Vr63s z0(`I7BqnKbh&22;zuV?m%4E~9ocL%NL#4THc*0sW_Hr8(9};(2cz^xWxW-`fh~JLk zD5vt2dQ&23*L!mA^I+BszpAWq^1mGWzrB!k=mNukVeSO$=rCErM4!b{$wCq9FTg(c>A{@yL$`RNuOsPE7)zV6B>)-Cl8!<5*{ZsxN$XFJQh5U*_R-4jiEFHs4}=)$|WE3=PC?hK=(REtoa==8QzrZHEtVph{{ zt7Ck1F$vdCrXHQFXQTqzsR$)1IfBGuhx1^Nbfxw1+L?#uhwkq6PFL?m<%X`A9WgT!PzjsJ7JI-6p8Zdv_lx*_f0Ux9SS7Vi-ey zypLkv=t&zrMFL^);`$d{^P;4-m5?*uR0}ja`iM=fC#Z{@+j%dYO|6~i*Z4I*t5GZq zEdZy_`B~1ZwUF)48=7tsz@nru+A&ZPoJw}9Dgce)^?1iPZd7}>O0m`0@Qn7 zR5TWh&~`8xbb(M)dpM%c{A6CZ1rTY2L`yB0fw)XT$1B%#P~lG?sN@*(K8%_L+>2sY zX$DzZ?;3%WuL8DIU+(L^?x0|w2LboARtEJkc)!5eR|zMUiv&>6umcxfnHBb>m(8VN zyVvwB&q`?qOUQ>cC{}yjequDGdtwpSu1iNbzFtB<=!TuArKVocYJp0e_^i*0u}@ze zQyXNV!z{%6{1CWzp4^a?Q5lR3ED2 zhof2yMd+ysN{&N4M3({gXp5m2Xe2$6fNOQT4Ivlj@{X6@GF;;PR7deKIyw;0K{XqQ zL2x%HucXe(8{+~fZueO+y9S!f$V<&5NpBSP@LM_CA(YgvK>k)G0bvDIQr5^J41uj< z`}3dn#gsGl+;h&;#t`9!t5jY*!>vZprg(~MD9_+Wd7B(4gatNVhJ2xcLO1}w3ed~n z1zCkuA5htzBd8q6}~^bVTjm)_>5AluY>f?rv-Os4|-UVtz;8 z8cn*m#eHkJZ^m!#uVIHruYMG>y?a&jjDeO@vTj~6GizCuO(XzX^!t-$aM0B* zWx2F_>39;_KE=JNPp>3nD;xHGix0Zbv4$+x>bUjX zD@3GrVHN@9;D*!Cq-+ja$Zf!(I zM?W?U3Q9TC7n%E>Tz9~jYB*lXx?A$`X%|b3*;Q+Zi*q;Q>o{0!xr@x{(N@* z!fz~MgbCX$R=!>YM=RuO`L%PKYi zL%;r{)%&5g&y&x~I#SJ=9X=8ZNn-k;x{h{oFXJJGqp%WXf5DBgu!ryw%-L;ybbI#A zZXe$_)|0(HzWDKnt@0B5oGnY{AFLsGPyF8LG~7kI$Usa${DgsIH9j=E`tLV-b3iMYYSS4ditX$hn1jJ4x5NX_oL(Exd3;p z81U$ralCT8#so&9NKuz7%C+ZArcsRZpW`^eL1vH#7Yu@#z0zN9A`a8ZTkg4-q+|VB zb|A9)=83iqveIUzTM%05&vPTPi9L_nWNs+3j+(3aM-J;=$NJ?TUuJ9dErGpRp!L?- z%fm|t+atO<_nTZ+CXHj4IQ+E=S5iU@=uN!FEuJHk)i9TnPsJnFi-@O(khf-mJfNdH zvY-U*3A+Jh7c@23jS!g8zVbQd?C2Vl->r=D;;T}eRxmcnE79Ir!YE>RC)iR+-*fDP z*^c|RPK6u$=0s7gz)P-S?K_}$?plZd)LtgH~xUDJ;rN6C#7H{n%TQ$Y#(bg zsaQ3GAxk7`py^Q94Lufw9rqDUwox{*HEd48io41?ptE^rhx!){{9nOi|6hgj6L9_fmkaPOVEoTBNx*UB4UKhmAX)0?D|+nG7l?Ac5Jc#c?7F(&6I4&s%HOimYDA#H^`&$yii4o=%xfleKLbGkqT651ATCoyv~2_#a))=ZNA7=LSE%;9XGIm_@-*D3x1%6>n?zdv~s8ob7w!rNCvD3jhOTy|*I@2m9r}0O#D) zz?%)`ap&de8_4`y1*i815_b|P=-$*5u}MOS3n2Z)n@c7e?gQwLa;@8w1T_V?ZIL@E z8>BPO(?b#i{AE+q#(Tey0OIzWLXI{Jd)lL*SK~Gk_v)|={W`p}ri{ z480bl6@KhKbj^^x7c#6>4j;yjr6A=bBR3!Kh508uo$I$-F$tlaYz(KFteDFZnIS9L z{AKL-SHj1;=rp%Cv=N_hQ#WOR8l;>gw)h z-lvGo{m+GzMuxhuwpCu7{~+RWc!0x}BRfyVxG&BNR1F^C;VN^@I?5 zE4SnM9lmlF4}Vy=-xCiLx)JMwX6w)gYL?)J+_BsCE2U|x$W0@&jZJN9xoc#uLQgQjM#S99 z?$WSBgI&vDD)IB$dxK^a**5rAykA%4EN1I+0%qc*h4zcxx6{^@li#2pJW9$EJzG{L zIT#_xg>NGZW^;U{lG6?;t0n)zsFU8hc1*+fr|7I4nZ?lZ#uGBYxWyWVEJ0e(W`Oz^=c_+MjU zMu8Dd^?X=w*ukq%U|1}1_~c#*);Ehk_;6GapJUWGjO(>cKS5`CxPnC@l4S$N=qQ$t zGNP5P#zs7GB*LDJW)j!!9Y=`49*r=$FraW78F_YX0hd1-o>!J{drh-R0KxXD$RS;ilwM9B9AkBNOc^6zy8cs*Nu4h< z99>?sU6JYi30z+|@g+|7R7*EdCbgg1I?X9JnXH+l_DO;vCEz>O#nijs2bi1J#_=FF zP@H;=Pyb{ixhI_=?B$bl(qC{ej@VA81XzcR4}@RI<()>f#VZ|DTgqpncF{ZZKXb7< zSN};bK=0U*Ya)VfQ!y|UY%nAOZA>fKo%;&5VM&!!$x>d6#=0xLiSYWQL~(bEepVbO zNa}HXl?9m=Zjrdl##RDiGa43I0+YESa6LOdcFgE^sk|q=$(;NpUGrl)J)HDfM|U>? z#OG|Q5}t(q5);D?>@A{)wB;26Hvr8K7`!y@BBvc6-_UxGq7hHtIn664iB>Dc=Iy0N zzhSRyz}nd3-yO<_WlI0x^ulS|(s6vx!vfH6_pG&Pb*z{*qAYL?9N5eyLP4ZXX7PZ# z{r!iT)2@TcT3Oy7;!ndYF5aB?2uHYGyYX#gZ45qZ7`$hSLnMRU05&uI(yDPxx6b6H z>#f6@7{7^4M_sI1fS(1NRcsPJ7y=g-Ky7>bjW;*0B1hz&u<*#bYes^fOVY{dm7@WT zG*>ipT18oz;Fpgd)f~Ot+=OTR&g_{dA7PiZhxR>zi35H46$u23{;ocYySbA)^6+k9 zHugvz)6z_kjrEc~tW=f50CBUOlu0TSptg|0-=^a2#05D0SKoXHZ}yEu^B+f*toyc z1xJMemgiW7{bbe7M+NZi@eVb_!O+q0*KiQ$y%*J&Aet7!un0P;)qDEF?hwZw);iNo zEocl=@RH<c-SD`CJK3UwNax@#N1uDCA5XSw0%6oFgo@ia z=exSTsVPf5pV<{gk6(D(Bql(;=y$dy0%@$>X$VnZ^1Ug&6-fv>kjI|M*wT0x^wu4H z<(ckLk=4^%hDNJRGk@3Mq9VhTWMs)_O{kY3I}y<@#N(O6<#71U3`0sv3aAd<#V@q8 zLTrQ)6>$>eJ;?n0s>jWy)f9=Ajft|auv5C{E0uQ7%T%Sivy+WP#f9@GaryT-)&FVrh%P}z$8kQ8Go7AK{0%OF#v`MQDntd z+qqD`fcf|uB3-wRBI*nZ!V!~$f_U;*D`cS!Z~+y1owUOj+}LasQGr>| zZ?w^JlB9P!kQRYD_7Vhi-W3QD2?^Zu0Q$3|-t~`l;+_2n&x4d;S=f8Ai+Ta+Cv!zx zRny~O4w=qlt4$;HBc=F1;^_bStUs(9sZ&46wEBJqUD}dC_nqP&8JCaI215Ktf@iML zfP09~=%JJ=)9h>(*-fJ(X{Gu>|^n6p_ztg%0Y^QWlaUTG--|nk_4f6NZ0*t% z5#0S$^pQNv{JFJz?hFr!)ya789lozc7x73zktjROgU*UqUVky&mYylo7wpfNw;8ya&GDiuM&U2d zG|-Nz?()``JcSVuf8cH?J-cyVuJhMTVJo$(bYiX#f=C&zL*j&(pLU#dh(c+j=biCI zKvGD^#_Jh(Hmi!6dv7#!WMnR3_uGvhxUQN6KB~xM`-x`*daU7qVQo=lRyI#wZsYe; z$p+86;wL@F7q=a7$Dt+LNlHT;*}TVhZ8-P}B`48n^%sscsWGaX`o-fBc#X}$oUYpV z<<3zH+2mciT*7C30isVv>A0q!5ROgTj+&nT-ZKEkmuFg9R3H?Y3^*)Q85k;p=JA@1 z^>1%~Tz1tOuzx~Bo8Lf5N4HLcA5~ZYWqo0ci;)o{DA?Fi>j+cW!>&rFH$ zpoF{I1yEIxfi2^pV#JEGyiWrbAld!Z_G*<8~%MQ>xGzP6g zY2f)WRz%v1d4)|3hJL7Le@)T>!C(TzvjfJP)Cv;N5TFehob~@$!nZ#!&MZG;UX+-A24UE@`+B@R+~4 zdIr?n>n*i21U9X8<3A}*=Gjx_ISRP-p_4!O2_375LK#Wlmj$i7K|fFjj3Z;3|{pZna^X; zSQ!I5OwmAE352a+>gX)Ry>8HQdjo_tu(qH#;r?-8KkHOU`PvhFeV&TiZ?h+@wc^#yrb$|9e*m=BJPFheMExt~a~U+K|3(dx zg61}Zxx@xwcnPf?{Z${_?i1&F=06QPdFMbY?Y$>lwAHeW^l6TYm)4AjIi`#Tr9Iim zgwsk^pIqCS=*{q9D9AD*tsk*q`oEwaQ+BDDcU6~}O8jlmQo{lcx@ex;{7k&R4$LNxS4Ij~HcpEsf zs1LjKy#~H5_AJF_U{F$)Qo zkkIF9Z!V%HL4N=Oo&jM+5kw@3UskPf?V)IP-A8GGgi=d-!*=BttLc z*XV4Qx~95?S9?$Fxp$HH{9Btv?JC2CGHBr?LyW2z%2{T6_m7NZuOESUYbS-acb!al@N+&uO^PB zyY0T9&(p@?kzdPgSmQcZ{m@}T=v4FY>&9r2`1Cn3U3}Qn-UXdvhF$ED?)$a+< z`Atoy$bOD=5hqQl8vAL)1H-=+(WJLCmS~n=JVi}p8hwP{Sk1A zKU<11{*6)`SkZP7 zA9FchbdtcqgGQ`(rF)Rn*Fx;Jj$R;}b?(zO44wNN5bk=&$tBL_^%Kd<$vsFDPVj0s z>{;doizwBQ7{TVICq#N}oTYNX(fBm{4(}+(*f`o?WcrzrQIZ3W6l@HY48NMh1=MvQ z=r^5dI+vJO9EdAK)FA{;NSLIi$~J*8R?^1k9qM_;k*pVYbRH_SbwWdTZY?6b29s5a z_>Ocl+uxCE4)YdESX8yr&p^Rlr)TFBPYrlwdy{mkb)Uz?W1kip&brK5RI zyiY*TIl5%xWd(Pl;N}rq;4E+%J~gP0zGtSp{@U`^jzpOeujQ?K+D2tHM4{X7tcHLS zvcp$4c7Q^y@Hs?$BP5S*(E-=Vjq%c~!Z&qOzth}f$RGp*8M4mF)%E`j=I(CIv zjpFe?G@=injYn37?wNC|O0FpWbMt>Kk^e1odqtm6q@6YVLs5E1Dg+2W|7xGte@#Fd z%Khl_#Oe}PSpE^x17H0p$2-{i_?ijInA{}&&t17-A5Wfq8)*;#e~Ieg-TS3#oqtR5 z0>MgJZb_#h{&~Yx*(u&j0&GH*j+Za1|4*Hgl)}gxf#-i-SEbPO;JkNjEU%W{bT3er z==nHmOZ;Zcn;ai;RSntM(qf`9hl@|fZCmfvPcPNGEM%iWL zCs829{~;{4zx6<^^rVDJwO1i*tYSX9ngsZ1#xSYI9QVHPjv@H^Uw`UODKJLOlqCRU^Cdoha_xv>FbH!2k8o9@1cJ##~ z_TPSk8;$XQjBP8s!(SnEMBBUMjcCkAn=|U-h85(Ci)OG?_yeb3LFTsEhQG$dB4Yc4 z{*(D4d4no(zx~vBMm%^6cLaA`Lq}W3o!40xo%|T_-1!8tU>y9^{^vE05ocmv%C)PJ zhkdjf-3{3DYX`MEjDvzFo&z<@AhS`s{C_f|Kysa$-~j6eV$O~}9`%c8xw~N+w8%{A zVIRo69xZ*5Ij?xS=Bm~6=g$+Dp%97clPHBs@bOW5{`_SekBG(i__&hXf|*oqrdyh2 zNP)y+tJ+Y-&rcFH0O(PFVLG1?G<3M~M!}qqJS^fQJ8mK@iMwL|Bb}`Jq>SSJs+N3_ zc(Kn8G;___tm2#bZHoTiUn6pJrdP*JxuDe`UN?8yod^e##~W`zGmLht9vVB<0)tDOr*A9owQF()J4i`{VI}!^Z!XwRa+M zw(<+FJgjd8-E2tk=zs3pp_OX?PAKgWc>A9R__q5k-1@%b+r*bSMSM6rr*;ZYc_9z^ zEUZ=Q_I?tN5NK>&EyU(zt-$|QF^BkXhgl}*!ezF=sYQyyM7Fmex7ZM{i)pjBJ* z>CUkA>EhbIA60D!A%BR8C#9M?u%zd4sDJ?VnjOJ>^2*2$PlY-2@&-<>zomI)73tDj zbkq3RbL|W?%@Zd$iOtgwJNIo0 zyXtl>n`=iu7ehuS+`F9HOS|HAP16$kOX=RMIcI%pdX}N*4Ty>+!=o0_hMg=H&4j$~ zIk{;DG1be4=E#kwD*~U)+VWlBucm`Abb>ZR?FR-8EZImTayakJjek@@Mz=EYhPob^T(1{!|Ncw z^z6c?E3B>jqE$JmHJphNx4L9i-*R45=3TK}Y|iF9&qeaS+)vX-a7{5LzArCi@5gL3-g|f4&oIb;hjc3I~5XWe=EZDM=;mUf7jya9Z&4c6o5+xsgIrvg&z-ME1 zL8d(kq2cS4F$}26(dQZ%$^NCQ{-0ww;vzhfLWEkfIbF^xeT!QkuGmm4Jyo=Qb@*Z7 zH0BGfEpGM!tH0O$%8I28c9E_zUL^S69#jZ&fK)op7IuslEcY0JZOG5h&&wV+ZCGm} zQlWoH$Hxx;b2z5CXoQr{&ZU-qjLB1EajL9=F>#7nn#9=t`ut`s-vz+U6r0 zV+|^CtN{Y!A62ZYv|8zWiE#T0Y^&@q)L?d0_RR#c&gKRv zmv{MGYM73Hv(TjC4dI_qL6w{nHDQ08vXj%8RL zO8yI<)Nwym{$M*5Q2Ujsu5|Yk0!Fxz*}8zMw5O5(j~g{BA!JSYF&AY^JLV%QtAaA^NADfI z{&>jW>7vh@JAT!+X< zFxm_Cf#`?)`V6SFQ85Y>P!eWZlh6u22s?_!P41tJms-v#ff?-+pO_XYkL#|kRdHT0 z$+P~ZjZi4klrd_RO-yk7Aq*nR^fu!rr=G@7c0Nu+EKeC`l_gKK&TT#0P<~T?D(+Qq zW1pYuvKWG>HMC@c3!f_tQCP4Q`AMs-#pjGYu6E;&2x&#!74Jj$1HHS8=2Lvx)q_Qt z*^vo48Llv7@tRxwq|M1Y)}VaU|2u2w)2gPmQHORcQ^I@W^PNKBN=-BjH~JCqViSXe z(iFK83PJ5SnR(658PJJ-TkE)<0D(Q&mRIj`#pxhIpQZ%6T^KcW9ka4xt1>#< zZ~OUU%wFfGOcm78xOEJuzoGaWdxt#i@t0dA08#ym5dQx-8&cbKzTsj~lhtzUMkw<5 zkL+IuUp+1vepr!7(NI>1XisF#Z!H!|+|7VvH1vM!hnd-m&24m;8~ysx3R?hWfCE0|PITin)1HIANlJRTRE`gkf&}tVs zkh-hsnQM=)5127+Q6qIMN?r9O}ma-%AeWOjeRiZg(W3TjYrj2BNEp3 z7JHL&3(lgtY94f1IL-`FDTQ5e1qYD-17b5{;vbk|jX8E4-@GeCli4|ocoy{nBqtH+ z<^NBzA!%P{BR)$hA%q+-g|Ao2P= zzN3h86fzhVbJs30Yt~&rAj0~|OFP?5p@fU%79{eZ{Zv7+Dy$ynMHW7PfmDG%~Y^;5a**nL=*Ji4mC!X5*E0j_M&$A3em zgtI2|I#ExQ!U*nta*N%5F3nfL?Y{=gDo1?YnXiR>)D<&aoyC?y z!CtJYp@(7v5I(e{513G;G~SLy-zlc=rX0?Cdx!PRhJd2&6QzL550m~t ze|g9>eNc0GQhvk0BTC^km2s-|YKblCkhlHFQXT4GHX?t;vvup|j(Mw&|90g)Gd!h& zNa^wpR^Pe2{q-T3k0xWOFn_y%0~qJm0fj;S(lA@Z!B&W^X4aqPv1NTDv5;A|E24xM zrX_wJFEOBfZpOTF|M4uvUm+Xk7#Mlk zS6w=qMH-Qujt5QWm^`5y*)A-Klc@=z-=*)(IvW!f^mQkk%M|0>s&Wlq+d#q>`5Llc-hj- zx@JOpT!&O0B4I=!-$N485=yhGYpU+b#2CxGkQXp8oVxLr zriZNN{KjTjZ?$d52WLoQ#5Aq=R}F9HaOd76i|s^ZzRIerF7apcyq{4o99(86R@~%Q zrr>ko73Ib8XIK9%RrgB+kpL_{IA$Ax*EK*rmvLs?*xk4MeP%VGc191)3^9?}z5jyG zBhn?>*tqNWSnDy?sEK0*38QB^B?qh17#M$c98$~VJ}=YbsERzZxo>i%En zV+FB4J^GaFLi<8|_RK_5UQ~^1Ery)Q(BfC+!Z~HS?YBd4wnP1!Cyp`;C+7zK*V0%5 zTYs&|bTaIYe=LI2{-|@sUDMGm`FY?YvwKZuL6W}$iuGQ)rbM)TPmq*%)&P6SF#Z7V zV+JVfqUHk&_{x3SO9te$ycSql6O>O-tnr?)@bQ&zk2a8Zy;lfnHCv}s{(vSrWXV2f z#d*98bK63$ZxWL02eRu^=&S79QiqL03EP|W)?N+;G~oDt(o3?>Z}yDkSnLrPCx_^B zgUGWv{AUN>?60?vh*1{CwPk#>Sa1|H8IfOz3quCSb#~?dUfG)37&`h~@Nh4oX62+h z^|s_Q8~sxf{4Z9CSGA8Tb}e0+90k3=6U#v&vXqT(Mpd2lDzmP8va|T>Nh>QKl3>Uv zH+Sm}f6fApx%IWZ@0&$XcYaBnqB$mW2b{{RwMZOItl!v%#|`G+?D0O&JUbQHDc0tk zn2h9hmB>pu*hR&_9X!(TN`+}ht6!)Z9HN^2>T06A6WIv*o?#?l+AqJT#E{i}^_+-7 z^ej9Zn@2bZN*aIGKnU`nr^7tv`y;Pc$5)M7FKe6Y2!6zQ`UQy+2rg`^JyL!DCHBq?3Np3gxionoqM1Xof#XW-5}B!gz;SaOQyFA$Ie23ZI7k=9I`% zTJtH~NBS``I~vKX?kht4e=fz4?JwW`tqSAi&mZ;n^7-}$I>l7O473CiMxS}9#Okdi zDH{plbD`qG!M81&Je)%krP4CVH-#v8&*?ucIOU5H=iV}$c?iWyMg(a^k*{mNfF_a#|vcPLw)@wHKdLNl`=3bUi<($W!Na_9o{iIAT6CYTcXP zRn%36i?RgQy@^|QCaAErv%%Wrb}2(6i^F8(3ZFvrZaV$W$geq|&sFT3o8Qa(oeRI& zU`zM5NKfJ7GIREQqqm?kNu7(9mrlmJCSG&xT$;k?0)wa!s-PiH9-Mw)B41b_cf1IB zHK%0$v*x*&k~rH(aK?AL0vKo2 zU6gi@G`IpS{%g3+GTx8<2dmlHFQ3CF%w1G-;2;5JF!WcI+ogC_uTl4_y3+Vb7tO|bC}`jeV)7TPu0AAi9X+}Je$n5undqua-o!<)A4IV}Z`6OaB^$Pp=O$mdu5()5R-o1atAn&(4kScr}J}I{yi+6#Q=$~b;iC5i`QC88tY#Jfor@KN_BLo z9X1u;9^b!~=bes>FyKlzvzgA19_VNofH5+nKAJ%nD~0D7tNiB8v5Ss=Wt*x^m&bl9 zKbxMj!jbSsBFXq}7Z*HO5${~9j5lCKB||J=D=P|jDPQ^V^mq5XOKKkv-w3;NZRUYm z0fu#QEZjY-vc89@bC>n431dOA7#G~1ky>daq()djNA5B?@u|Y*-I`imvo~Q$Y*Zx|*9JT2WG5s{mWFI6^=|J7`0P-t zFzdFI?OY`(p>g`9b>HE=X(nOV0$Srj2`A`oEh8u2hMa9Xu`94kac6Pa}L#Ga)`d{9@``XbQ zotWV*S?ovoHT5)&f_>VS)PA^*+^|nPB>HBd@2hAUNI@{6)+%GKUz|4!I`csaHq;<< zXN?D(Ol)(}kEDxxKf6CUrbf;6gp+wdRt{2ByQW;;A~BKJ{IYPtNbIJK*YXefq8Y*m za+0aH*QhkLfhpo9rEN3#K#H7w3I^3*nF;f(a+&x?8C5h}Ny>3n=Q@W6+wyU$>5K@o zSEn!Mz6hS20-W)VdnZK8Y4)QORc9;CVb*i_gL`V4&5s?-G9P4Q;QdDhMf| zdW`1P3amo^6aJ(SihU~{2rL|5O-vP?fO?~Lgw)fQ?&}I}uY4ALA~GMD#ko5~+PY{= z!Ey1Z!q|i-T8=d`=Yyu}ye7gMm>`rQ-zK4gF{b9X?r!Og|ILKKx7p43UjxM~K@u8w_$>JPi^jL}WEMbCf0*u-`;_i9 zJ-t|}k(X$ks63@(M>hU>U zcJQU?jzVbJq?+bFS^r`7UyFmCG_TpY#lcNeS_p2YcYePw+A99P_mlk90{?zPkjU`W zqD88EccbZwo8vsTq&Iiso(wY0P(oct74tGaY$hw}@CSft+$Vq>t|7*3l zJ(`^gUL!b~&2cF|8dxL}>^^QT%e^@_ShSchSR9eavjZ37S{K)w(f zqmVWS-{swGodl_Pr`KMZfR+_)pSrV=7m^fbr#5`3rHT0>ux8%ZOXgLZW+f-fC<}`l+yPNo=1 zlw916<1a$a-m4kDTXX(Nb@pM1K~MYyVljp+C+C$A_#Pc{41OAM7f`{=Rw-e2QlEkE zHQg~muN??d$%sJiId7MYZ0??am3CuO~M+{5t|%OB>rbv zk;8}BBudLqR9pR9rYl%w7qR8XifiD9pJ>HwdHT(?@MVdQ*qrwYKb-#%`ezM8m7X&M z{r}PuLUAqad^K6`=k=|5xi37l&+*sy2{1?nWMpQ5cN72r^tn#`zAIs^!UlY* zsqp`LHHgKGyaf&f)w1(eHWTgrn zn=Iqtlek)Ckz2u0QG~QAPoO^9faed*4raYm+rMG(@h9&66y@aRLz1=#i*xhE^6J_< z4y!C%R4fS*L>4A>%OUmL-<0IQ@%%r!f5V-ZbikLg3A~LUuV8T<#l?%Fz|^6tq(ot| z23Au1$JaRX8yGhKdQ`^|AU9Pfu$iIFQhMN*L@!grFPqq;w~21`i9d1px6OiGBdY%O zhU{hz{v6aM2%rpjZ(^YyfgA!Kuaxh1Y;dvPzIHQ)=x5QchKvia99c-*Dd{7Mk*haE zkOh?%mJO4ZVM(sax|MqPdi}u@f+YkEmp9uDr8hb@G^Vaz+s$2NcHekCh!N&!kNHVl zvcDR96tHXOuyaw2vDw&dlLW$x_pVnxy9KJra%3LEKF(Uo|3>2Z&u`cgp6b_F>7Gox z&Eu2@fJDW;@kw}i_*7zBGDN-$_&ssgO!f5M4G(LNxS`(|jgqJ13iJM?QgSYHT!(O0 z(>-gVYXX^nGO}VVKN?l6vB*pYffw0kV4|AJKXE*@1o;L~{u88{XB?v;oSEpCN`KnJ*z3KMpWr?ac|E=O4kKFe6h0FG@skY;NYpUk zsY+wHrs}DAwk@U*wG(^&A~0iTk<0HA=DBaie7!o!B^pHOx?6xXjeEmme}XQI!mUUA zwNL!?&6C=}{Ng)Evy1A_HwHREcN|sajEgfrer7ZQ`wx-n=|J_%AwiaAj}R2A*3Z28 zKO+1Kho(+GN=A3qx z*8;I`hK^Ow&`pude%GO_Ms(C3bA!4sibKHLrC{8aLh-12KxY%`eemLKNXQJ%|G|Tx zk{ZZX$9VYqNcQC!YM)mn>I(OYGC)SGI=g8ni$q)0ipHZLm!zqLtvN`rT^(Q3rQ0OP z1-IGtai6jh?V!zX{_ikqWSP~ zU6(knj{`>}1(N=iNMTEEYX4cuP3qa|hKDDx{6oK$lnNSJPH*LJ0L>tO;jnuI_QUeoJ$Yj*l6VmnGWF-LL1JPiH~i$T&aJWTqmv+jIESpASCuybr? z=yz6IiD9Cde3uS)?A{63y)(AZ3Lx>sRH-J97Rmv<f;;wv9h(PShw~#Qw%Za6}MK|5pr~c>2H@W8(F-p2W~rd8X=EktIKtla)&>RbIC8 zS3A^^Z<(VwoL%D5GddohtLtE)a$lUOq4h+OSph(VQ`kr^-Rbn<0a{YE1~m~x$gJ)< zw*X^+>!s$~=jz_NAbG9uNc9w{zPs)B)^jb#Xc$34gw8pB!7sKYlC1H3+6`n!gSlq2JZ(X*vH8dRcZv*IJD z_QDNVTs!aEyMcf8d5ZyAQu-X(-QCgLI+>M>ev*{q@wGq0-!GS#&N_G8cTbFuwtaJK zNxnv-py2kLd_y8gWm@W%lgxg0q1RiE92D-82KmMCld(a>k}FPe@<932?hn%W#Mjv7 zNBS)8QLHX-^Jc|(3E5#9l0#AZ6<4>~zJpF)69wVp7^9QI82EiBgS?s|O=HS&% z$w`q5#RT)W(KoA^svPF!l4d!pW%1W0fU~;rEtqfx`|9ecz?fa)UN`=k7d2hN3}7Ii z^LJW-*U?I0bjZd1^M)1A!o!7<@pDp5GIqlKH-BsPYq$eVoX$pJFLsauci;IYDdLrR z7N9cE{jKwPSWEUpCZZjpMip3r=f32GQa#-@cmjP_XUsMu5~h_bruta*NGS@>QJg1n z<~tq5h6Sh`wJ^02Cx^>IS;BEc{B0XbfQ=(s zC6e_kpr;+F##<*fd1%BJ+BHLT;Ah6 zW!`n={|74QdO!2&^#J2w?sSt6x$fM=rkq%Dh0;AFrgOi#aT&Jrt~2;jixIR6-~$Rk~y;` z-kJbv=6%i)kI`q3Tu3T_y8AI{Vl>(5u7$AKpRarp)WtH-?W!c+0|SA9L8exw%25^; zjsDTusrn`&G|53cD1)scIH-eVQbN0^=np#=O~-Xe?;%R_Y1Ck%;v@m`lX=FS0-L_K z{UG#Hlt0Y(ceRHnniy%HLa7xwyUc-Yx-{Z3n`qs(N+Y64l9LeLTwynMsgMz0Jn!~l zmq?gOO~uZ|GKlun*EX?|->T;6W;mqlJc7W?%<<^8@Yt9|@cP9)5F7BxNP6zM8L$jc z^F(%dUn<-r3}~daCH8A9jh7-I5I%Ff3=Tie!GIvh;L`F_Z=G~5lk>@(p?;FAo-;`ch=#gkIP*XVBU%qnR4 zwb%t-27P0o$gJK_S^3>MI+>>~$%$~43vZ;Qb*+KuNPnA^Zzfk?I=x(4(m43-AlC=8 zn)%iH7r*A7qPu8jEvxNM|Ea?w+Wl)Y+)lV6{i)DS#x4--?IKQ$p3v7^YTg>J`mJoRiHrMW)*zZrp;A{^ z^ufhl;YTIk3rf;JRsn*x(=qGB=YaC&Np5Cq(wHlaG0?3bHW}ho8S*yQ8*j6W9f|1_ zbi})Ya|9jm5z`oCJjvlM&GPcE=ttGsXN?q%1iHn!J7hi`OtSw9k?03plrJmV)j(tf ziUymPmnSVlsw8VXmhN$U^k4)tfZV??pu0`kFd#N?Uk9F4iGiNXx+*N5Z$at58wC-t z`Ut|>KgnOl()cCP>D*uH5j>AipE+1m_N}Q{G`!J&Z!p~RRXiXd01^loU`FoNqQ%lx zPB%_c%6f|UQwQQtBeQ0p+24l_Nw4k4w~f=$&IE1j&K)7pD+#szs-gUs>adws23+)R zC)Jn~uc{T8gnUntT$ZA|U^-i53~e*4|G>-~%#X>aW2Y_6SK9k2)t)4_{5H>J9x zsX|{ya9=nQ73E-keMyAE^G=De6~YAG;#1(7S(c!l<4enf*bP zE7DqC$@01?+FSi>g~kJ=sI@|afV9ZrK=foP=GaIW%oj1KseOg`al1k{RvLTb)J5rZ zZAzbP!}~x+YErkHVlH6V3kB{4#$9a;nU}{wGtkPfsYNGAU_zy@s6y} z1|Nazbd$%}oK~s5{>w!Rg{$VV5xud69`0(EV#unbi84oVY~5T{#qmVdoO*e|s56<7DFc4< zu5wJc+yR%F(U% zoetK%e~F5a!|dCTGWT5g7GXUmoiN8Eq(5_1evCc4akP$+j#U%p{Rvwa`tpIs?`_-! zLDT(a32pnY6~-%k!lcEFRX-vDB5OnN$OMI7L;n|nwk)Dzv#{FU>>Q8}<6lCaUPHoJ_8 z_ASq=`B{C5KCw zp-1TI3oeAgS087Cg)^00^M>h@?OkTTdZFuNT;>p3uv){JE9(b-J!;7sVQ|B4l1#*v)ECfMO6 z!KBK87Azq7f#hV-U6PXN!`BYm5Sc{=1dxLe9}&OPJs;QzSW|oz@@%%oIUyC{PpGwNQD@Nw}#Vy$KN6x863xsI6_h5Je|+|5Uu@{i+P zYo7a{3~EyFM=W%nTX(Tbk2~xw@J-3k2?BLf9bN;iNr#tB%3K>9?&*haVi_~O&U`*P zChV-h=43b17^&v_3#*H7NF<%PikGjd&#nkCZ_u~+_BEg(sd@(iKF!@LZD!#tnL8HIPUm)1Fv`T`yx+A z=Lr%H7Uj9rr`Y?NN+5HLoUpmu&avTWtb`bfiLEWR?f`8689U40$$TKUHQc|gkVqXG zMf~@^BT9e9OE-~a@UbqTgiHFmK65G2ViA1qmc0RU6{X!~PtHm+4wTad z$K}ncf+CzABee3Uuv{CT7cSpKurC7#SPj4d0|+ZU=Od<1C$L3Lw11eydtyYteg8i8 z$3)WkM?mYR2af(|<-YS3`@JyQ)!k?Mc#AiN+6H*OaIw+{0$LxC{^6vJ7E$ZD(KY^P^OcAD4%%0bu>K`ZBkX8Is--=zVO%b3M z@cP<;;=_7$&Z)@%Nh`IcUKFtdMk0=6lp874UP5NhJ6TD)&mz{TZMdpa^ zA+~q_b*@J@AvY@M@uzoFr+Cl3_7mu@$-yLvQ+lVw+Hv&c_>K35$Cfe$Nh2Cl_D|K+ z=x9BgqQaqqZQl&2N4?Cg7Itc8ewm^*Nt4XQ*vRDqAOQ2U7skB`mjfC592f8lKYak3 zy0u8<7$>2lj9mY{eqwT)V0>{%MV-9Ot$8!6?FfDkYE-Y#OZoB!sG_27f4zDlDvp2n zgQ?#$nABBQFeNk`ozdt9 zj6j`(EXRKXY>q+~*qBpbfL8fi*r>p@w{ z%j-tI-y$On{m=@PJN+ttNqb5~$Rxu5WT2zVD%`m}BO!0r;07psNb`s6bj|S)0Sxnz zs4v?pOmbD23sp@G4gkZ~RP^>8!AD= z3jgGLHN`K%Au_Rw5xyjexhz{6Y3QM=@TW{y9q1v#@|wgG-z%@C1Rvh?pGfCI*Jkw-T&(_z6ow&_T+)9}v{(`qPjk5H4P67xTY<`yp5bKkFWZXCCrz`D4){t)Z zn|!_}$!$&_^@IuGE3P~#{_J=x688*$WQljl?S=UeolgF=pyI$a+F_V-CeLg-NFmKl zSR0<@ciFVs`?KKC^3Q8R$k(X)MeKI{Hw^@*H|FB382Va|M*ck5ZO<_jQ#4dggEY0{ z*gDuy6P{KM5AmK2l|CD#BJ#)k@ZJSeKZ0aL_3AE@xEkft8gf^{#RgfH#Ig)hc~{5{ zFJBimb)zBnH*`Bcq62vs>L2<%b$0dqjZGjkmLur7Vr*@tWE!2Y(P+sCP|gyeH=d*? z`Xdw%;Fz{8Y&#jzR3~v>H|!_nmrIHvZ4!UpRDMOQy^mo^Q#tV-(3jh58R4tv5kbH_ z&Ib+|;y2k6cL^Go4!)%aE=M*0%EhpzqS>N%5eutK;`tBQ#;ML^G}Mi>UN19Qrk*UV z`YfntkBJ}_zB4_e>LVn#u*$GUKiB{_J8=GNU~ux7|HCsN3f?4$ zR)b!ogs|5d3N`ix2ju4;%q$GM-r$urc)f#4bH|&XHSy^+Ial3du&mU^^APr3;&EoX z`HMYh&&M*-+b#zN?r5Tk237ph$_fKg*aok+eytXiC#1UT(g=;vyA71?Ej@NB> z@A$Ey8!>hXeJh&eakz#)z9Ad(z5Q0{X|3U!20%`Ig`ehiTwPf%wmTjGB*fYfpZbbU zPK8O=VhE%q&G&+BwCuMEWa20+?&O-zv?Y!Aw$U%hFIf3*=bv|Q2t-BLkA#rqj~vD) zB3A^+MJg9hav4tIpX0|{P7reqvV{H1G!x#iD$vFQ6Io!lw-vL%4!qW48DEyr7aL*iYx71` zkfN#?n+Th$h3IIQ7qh+fNpsSaY~KAMXja~ph#HjpR=}p@<7xfpCnm@TZK=h{vXtu< zpVHcP*0)Q2eXxAd!iY0TLp%l^$3Wb>z}g^+n4u4(YAh+BW%{y0`D{+tkHq0SPKrcR zatgi4qzLa?V09yM>4%I5?ILOukxR?ecL+tLrr{0K0SS>}^5Z`j+>dXq9(60G>h=?( zeejs}LAHZxKB11C?wJEnq}FCNIT=PH3{0sC&O^7~%AQ>E=uZh<%+Q&Xa^(hv+>TDU z1O{k6dy{wIqB)wXByAs*?z5vt&#yIq==B$TnLs(eLD%mc9t>&AO|wpEIa6 zEYfK{3E^!d+T9c8Jb}WdAPtbk3Lww?;AID87R4zM@FYZ zWnz-|G+QnUn3naeziL&1s3JR*7_9e0>(Yia5{4 zyL9uzT1EtBm#@a@m2s+;rMNU9XFa6E(^j~1mx1l9h>h^^CWrR8B&zs5+P8oF!WW}F zMDuovl-7Dk8plA6b*HGL?h#ev*vb5Nx21uop5Z9VCQ6-rhM>n9q?Vmlw%|Vf0^z89 zDRDEC$$Kokc_X^Vx>JmA+PU{=$R;q4i3rm{0GW$BwEz3`MCae$!Dw1{y|NKV9PPa< zbgYNfVm9hA0o;M-7a}Don{$af18UfIn@B+RTXJ7ptT`^td4j>c;d$U8-ZSLHy$Vha zZYyqxUe)g*jLpE?-+Iaw#1itW7cK>&NnB9pQp*%a&<`CT9G?$G-O{uX^GJJq4)3XH znP(csY6lzH!)>m;Z5&Y(!Cw{uL>Y^gZ!A=pnTsE-d1Yw3wly3SjGT*5*#WNprtd;! zV5+By2Jsbz3Sjr0lf*h6*V^eHQnqNirg7$RlDL}!)!SRawUd>8Tc<1EMW*1A@z!+_01D80IDFaS_Ltm^)`tsDXT_)!HaN59 z8fw`;5ec`%H$|ecRR@jXcR`L8fBjJWGdEM3pRgH`-n4Jfk<`7 z3KwnxzVQ7}oEk_Bx+mAdQ#+=ady!5atoDk!3#q8{kzRfb2ff{u?_!bo)K)e7=N94o zqK8oym^H${gz%}yluZA8SlhZg-ZAJYx;0my@SF{QE;yKlU6zTg6ixhlujlKo{`BF+ z&UY{~6!NrSsilN34C*gwXd*aL!`P=}8g6YNt+`@-T=U}2Vn*u=v)%>CbFoVud9M*) zPwStzqsS-|IY#G4z)FlUaon;8h4aYairQiL$R?6)D0@ThTm5QxRt8282;bZ*iji=3 z?lN)MZ8snt=fnzz-}x8q*8lr9LwaRxEgVF`o1}|QvYC?rvMld}o7Oaep*cbx0$)ro zBV%L#$=x>kY}WBeNolz!DM=Q>EprK3e!xAL%e6baH66ltr-PH8{@Z%HQb0fxAZsdX zzw?S?6D)gB0*+5dQ75|?r)d1|ah|>+hp5X|YnrbX??HYQ!p9n+TxYF?8Nb?`zx#Jd zEOi*tPJZRV?+-Cmv7lC%Y196gA|0QadQFo#HXZ(QskHyB_gE&DHi}M79=@dN?_VQqXva2btEV(P-dmY}^XUvBZv6~4bP#6!CuV|_C|j+M zGwL6n7CPm6eiKO-(y%#Jd9wdF;9g?imT$6~EivaNUB z;C+!9?$uo7-2NPms)#E_Pr>7Z7}!~y9`y~CD&As;I#UMXlm3yTnr&pIq>u`& zY4y+Bb&r8M0h}oLqC3-^34OwLpMYqTqXMmzeL8;w*Kerx$(78&!*<(G9VwhIFP1^0 zryDuvUai2-s6XcEJL-vz6USy(!`mlz9*^DYq}&mR;+PoBeZpU$@u+y{I5FQhe0IcU zs5Y}1lX?)|e6jRQ$!Pi!Db_6LE6oKSgsUoP~W@Tc6*wxrlkOD^_@xl}~hM(fQS zt8Ej$|9PHa)xzRef1TXM2fY;DI6jwHC%(ZqgwYgrN}0NFgUw_KadO?rqaae0`@Yt4 zf)&r7?xOzALu^?XI}b*)z26cZ`gx@IAES_-q4JP)l;~Mg0e5HUzsf-?Gm0ps<{5Iv z@_rH+t?-9?hu9+p&3DgRgKZxHem$`4u0L6;oeSb%7E1xf6FqYzknBs{A7vag0rn=P zqbB!Cs|?KFf}jdX7%`SJ$-lADL1y$W^!4rGSJ5 zGg62tFI2d3V4iN~>RP$=A2(O2u*dz6;IOQWSl9D27diW2aPuL2Ve1I7kSzVBRZno} zB#W9^%2qxeTXuKdJTTuvCiBq=@!vFS#<@=r-ef45Stk70!VTRevSRWjc|tcR>-HEt z{f*<&1C%~Vj0bO<_sFh^ETOJrCl`9QuHoLagGo!6A^?b;w*fkHgwy?{cL8b-A6@|~ zpoTHFx+X|7dIB8Q1c;Aj{;eB+KLZGj z@4=kZ*`ChWGFJu@&rW~d^Q8$W%R!CO)$R2f8acywu)PA#^v1rA001v#FqjZQjH>Yr zk363$jTa&=K->Uc7{JesJE&`IX?f)|YyoM0A~{D2xhH8WD#W<@yr-XjyR{gfId_!2 z*^WZg^-QI2?&j(3o)j&Z3d`X(pwpjHZ%?8wAVC_l_&M>To;6E^;4XktSAWh|_9ByQk&N#Xa~~0ioxnfmz6>C*~31%AKWF zo#vZG1kbH8Aw~{Q84s3Cz%z=q!y_;w=}N}N#;J&ppFU+3P`GX*0E?`}T%G$M+=n(N zg8(2A!cXRXX)xQst3eFu;v;1{%Uvn@WhhP#_(HNKddUKT-t*PXQ#142nlM6^?!p)Z z0zkkh-BQLi^L+Z3j$z?TNlnl<`WH1u?yB_$jwT@U%q;5NUIwSoG3DL=)=cb7p zgR;Z-rrD)jzV)wJO_r4(oMzA}foZj1tPY7l!%%<2^6AR}B3n#MT zQt|n1SxJ{)!!Y{U3N9-X6(P=KZN$_oxMa>r)5@Z4lq{t@ZW{;{t;ca_f znjrKp{FpdEY*$WHynRbb%ffP7TicG)h65ZNB0tVmtJNzA<4wWZOKJdX&j3JIIy)lS zz8@7cA?nVt>i`x-!LTYY?e2ZkSWgH_JnSZdGzUd<#mrUQ5WtplaMrf(yPo}!)7#0< z5LWY_GX6}9h8|3Z7@M6m{sfcVhTr^AYYB!t^HRbH%-<3&P;P@fRO6^&^eam66Di}p zV{de7w@-dAtZ9^nnj|NMXw9cWm}t4E@2|xlw5Ox zVUX>~U+w?)%sFx$6=LsN%(S`xyc&02@?3lf)Z$;iF^6fGAuvT!7?IU&@I;TMz*5tFIo zF3~9|lY4P#i#`IJWmM?y?1z~WCgOgVQTK~H^LKDV6eS{_G{r$7^z=2*PZd?2dZGS3 z`#Qq?hgd!=>%CXcBG>-;=btt>0&5aIonQ_r0yd-Yt6TBXAi%e3U#snAA-On3|a&fN7qs z3C~4;W8Te(3u)VoLHZzC$(6;u&USqqn>!AUaW+qp-S#NYMu}&ZpQT80W~9tUy}+eO@p~GEPW%u z-yv@FxMeqj;rDwI0E+N-m7lBN!1M?!KW0hXx9CK<(_s#-?zItB2@)3uuw0U#zj3Q~ zr!{q`^aoY9mz%n(6@f{5&W)DV(@eoxizrFlKA0poq{L%enqAh1o};M#&waWahbNYA z1{d?VE7)?f{HLa=8bTQj7{1y%#2i)?R^WwMWYz3^L9W|F_mqH_{&zQn-o)3jT@tC}CU*PrZR_vijQ zABQ!ywO<4LKbv}tzf5R&I3371xYB!Focw3L5V1W!K0<$rogY0p#+ zV~{WU1%S||^fSdsdxGG5=VOD%8S<9c&&;aAI7GC@(te2OwLkl|4Wl?D_IK#SDq)Vs zF6yFqY?iH4G*O(tQwJEKWiI!E@u4o2D9*Ws<;I0)2jQi|GY)@PZs?gu$a=GD8vB(U ztjS*B6_k75KF}_W;M+9$aYwKHsbwR(+9!b_35Ur*038Z>#dsI6^h}mKCjp!ui$jFQ z(P&TG_If~CZCvH>zCTsQ63BpmW^2XHPit!Knb5QEbWlUU6SwPQ8i&M!tWyu$4g4#M zpC<%O*1)!{uDTKCDlf|*)D`eQ?^o=@!*LF^?NRwR`-+vOro?#fjhC3U_UgY9ps}(U z`0@zF-^UrIJ2pY^dB9_ThLmzI{A9j0If&{wLip@IHGxq!`QX7Ve!>kk#8@oiRf=Id z8%hKJyJ1_H4Eb`1Tfn%Y%jnQHY1L0X3&2C3`@EQ?T&{yCiti3&nm-M~M8%q1QZC%l zQ{G$+H}Wa#KFg)?`(Arx0^k; z9qxS8sZ_t$^oakq^OkV|0-KPM;((5~0bE4Z>)*2ycu51HNOg^E zPp8>T^CD7(c~eaY!h-W#)My!L-!vczRE5PdG#_Ra9;F8iY6hJ08dKko)=^F7Usuff zL^6CzF)4gDXU96$Wx?u2ghDHeBl(SI}$}ib*^nvvY7^-s%I#YV(z-N9oZtL|&TWRz2=z1sg zCX(n&(G@pyl2^I0tKUaZC)W7V)GK!cC_g{4X*^?JZiQCS86P`^$G%Y>v?1GW z?zb#{DvUEef%LN%`K7d{!=-%=c>}F^v8Oy0Y_TCQ!oFC)DPO|L&s~)f6w|9??b;U3 zWf|XG_U(b0&0&Uw%xHqVQV3;hTJQA~zK=-X`6+f)u2kdWmeN?oe}4d;Q)6G;>^|Yq z=?P_j;1Pv8vHpS(S}bZL_V}rig*OBVH7d9My_yW~n1CS)mn&~iT^N-j;r*cZlz7Sb zw7tO`-C-bg`Q-$QJUkw=FH|USLa9B0XR@lbiQ5`a{G5^(zmoRgfwn}q%fMAJsWFN6 z;Ln!D0j6mYbX9K51;2ZrcW$MBPVn8cl2pD63>Z8uV=1Ir%PkiwhU<+_zyBu|00)6M zCY|Q~$lz73WEUy7Ypid+PQUZ9Qpc)x61K8@Se|zhdFs{)0^1 zj61&eF%2oH<1Uaq1T@d_$v3ZG-)*EgtT-JZob}&oHj}#udG*3kj1r^6Pw&{HJQKF7 zF%!Y7*l`nDVW7)o&daa3x!J!oiVX;?>!Et=x}gevyWr2sbR73tmfkAj-lx9)&Ymgn zEvn~jr4Al)=KcMaCpYHN45{3{3CDRjf2#~smPu_{LOnu7iOi)@C7tre35Uv_f5;|5 zk;D+)n^|O8esE7V9-YS3pX#x7?2plwI)>BpG9<(udFJMF4Od@G(U}ZUUu(PZ4Ng}x zIy(7To15G2-i-@i?6tlPw_U(e&2@z)1#}sasys0^Sy?-`O4<%zv+`%FRJSS_F?_#~ z30s~km_h=J$A{7{jVLcAelZuo0)u6#!$bMm>v7>~39r@{l}-7e(P9jptMPjDHV+() zAMc*{wcqaOX}fW_@pAS;G+U-Yr~F#kJz@0dA0?&h(Pf}@-6wO{9X59gmv21P5hr>1 z*IG#TLEPWdUX?pfVi_eW@ z!%;+sKw!G5o)o0#x`8Zce)~wQ#OKD_uuY=iXl&7<%~*NBob1i&ZjCAK9Y2mn-x-?| zZCM0&tmUtA1(HCVRLNmc{H0E#%%r_tzY8(igoQ^gZfEmuRPxoxITV&ByQe?%v_@Xu zxATE_{>QoWG}GX$Gnu8{AV0rr>$)hu^`7Snrr-WB53x)-9Ru@I7YC@3YH6=M&3FX? zU;w0TS{&mWprie{>~lY}*OJXj%qN9k67SGab`P^$pUyhHD+Wixr+V$nrKOY=UHUds zLPHCJZUxz1^;a3H>;lSiZld?~zm}{r0idiX05e!GX9(ZFeRZ@Ro!nmuPD<%{*cdQx z-uU|}JgHmrj!ijxX2H7Bw;(TYmWE=oj9a~g;TPdlj`=I7C9maOpc{(uJ?t^~Uyf`UA{Hh2147fiNj8Sn2umufy!UUT0|sZl6U6k9*V6ATPyb(JJTW2~1%f9~&8GSxc|MdGetE`J!Q? z+MR$#&;8w;U%0Oa#xu>KD)qe1+bBYuI_9T_Zl7kI{miAF3=FewdO=5?Sm61^$N{q% z{a)DkomZ&B?B8sVF{m2}F>zbv8}e{_avDa+V6DzA=gqEUDzryHcie3sXqJsRIjFv? zS?Zr#a5pURAZ=`&1_viEnFfJ|TI#%{@&xIR+wb%`98ygkKmtX6SVFr%V#zAFbOPod zJ!P2_y&+lzO251%xR}4(1AEukD1r-W&MbTR`v58Hl#PExBHFbx8Rdy8%p)U_B(}rq zpKNqJgfyS0NzUNiGmUP!2=)NLwY2fg!9gcWo%WoyZg->S$Kzch|NE?v0-z12Ig#E0 z<;Dd;P3+!5keoioYey5QtE-QuA@JT$go(wUd^9FaDl}TZozg2Ug2V`(C7jU>Bc`Cg zUyKK#`yOlDUY9w)6nD2EaHBM-@%Lu;7RakHqcuH3nx7%angJmV?_apYMue%ZFIqS_ zu954my*BvWRrUH=2}x@a$2SL_Uv7cH`Z>0}T*9)HjGSl}tS z7arD{hhC`mum6gMA^mE%50C+9muNO?JazBFd$i2Mo`p=}y=vrHA!-t8091KWNL$m& zqs{S;si~21!UP(mlbOj%RlroZA#zLkn;#kh@PqV+PcT-(e6|J`cslB=`&j$7=vorZ zz>)zW;$8u~n?5gbpAg`7w*U?B0F8E74oZ!R`@m(p7HX>46PM5W-eU3)# z}rFI;*g`Dv)q-XMZgmK8wb@12|! zyIiKCYX38od4BnZe@Jlfc@8o=^3s_*V*2w+AMa<2M;;3dQUY#)- z6J+`MFZ1^QScgyzk&s=JxcN8-vqv7-?>_^9gk8EkC+j$_@+>kE`o#r=A22+}$0s5c zDpwH4D_*S!Cxn5!kmGI`S2_2mE&^tyhw3L{c9#RHw=BFZ@TKUGMZUR|Er-&q-h%y7n}JUFsjm)wj*SUMah+GSxf167{?*=2{VU zQ5p@fx4>a{$9j=Q{vDqJm3~s=%2SlpzxN)MDYkuaa3mnktz2BRpl4+G`e!eIz4u;3 zV$MUWi9EiaQi1w~#@D_$&P?Om{;X(j1{=uFRJ{a5+K*kRA8yBhVMvlj3_-pMzY6b$ zO;J7rabhXTUnl|ZUFJHQ36pU}D-wSsT=8-!qr(-H$|Mp2O{&t-fmpwI!3%0stRv6j zW=T;7&`~OxMd`X02kyK3)!R)<{wO+xzXl6|v@{Jvn;UO~CZYNjJLh)4%=N^al#F!r zgsMcV=WD;5ZlAWH6ah(3zxYnx9UXnPYu<3B3uo^ghL#aQka(-%A75$)R2>;=2|~=` zcJ$VLNjI#>2Kk&)_GfV$(d$gF7ce><#RMa)apann*Yb*|esm+=j^T-#&A8zlgH@#9 zrK81x$`UvKUer*m!%o;8jc^4|v2X#rKxai{;Q7qOeC5~d=2w$yr$x|QwL8K2)p99C zP=*dKJhN5_3SXviFp3xWqi1-=R@{o#XJjn#9(pZ(!l?;uy?-M0vPTqr@6ZKAjJFe zZYBVJdO7^%syTs0Qr=M=y>e z!F>8VSaK}iC#cG}!0C{H1m6_>c65c(R+f~m;vzuNInqlnMO8e*E?(|zI)VkPKjMFJ zMJF7UsTys^cT9cH=P<_upq8C;u^+(Xz|OGVZT+7Yh|BZxy$dh?&QR!W5Qt(#^zfh% zJ20@DBpZxLlvVNnzj~JB@rLI=XH}w*uvxby3P^M2$UlNo z9X;QfV)NVWMxuxc!1OPfIrza{gdj$Kd%d_47VXu~adytqfj9iX16`?G8yhLn_)0>UdGaM!Bf ze@JIOCp&_`)bz66O4xO_(f5S0=%ldjzHY=vFf8OZ&DV(_RtIpOkp)$zyFI3yPhN;G z^Ig3v|A(zVt!in`JY|9_fMJE#Hh{p_`z3C}s`Y*d%;HTq@<2?v80` ziz?UXg>k}qVX*g%jEvm(?oCQ?5uc~=$B!Q%BX4_Yf_i(^0Ur-BWN~RpuwDRL-*LX6kjN;R1Je6ur5+?4zT zCOTke&Od0l1>)U=qBpj|GPiKYnJObYZvc=U4g!TGG2&u`B*%$yYE(7ZD(wAv{lKGf zR=to7wiQ;$DHgi~M24EbvW!PL+vm-WVi!ySji!4-GqwueIriZLBv2?-hI>7PgV|&I zs@u-!qo0#SuqJk!fwXr>BoZIf)KIt=NdZ!-je>gZeOdK!^>+e{Jtf1EL118K*wM$k zHwJh78Ovw#Ioh~k+12g7H93@t7&s461+o(c41*`6sAAAy(ij89tzY;YZ(W3({?ef_ zDN6m#)&#<9fZWqMv%lZPS;_uixhEGy6D53aaxhCYBNai2ASTFlR|voaV<+o-tTd1& z`yn~m{yj|)l5nd(mA=v(ft@t07BRq1C%YyGDD5`{L2$-^xz zF23EY4uq&#y zPI{=JkuYBrf3R>-gkb#dF~gx3_5>d(2(g!CQT<;M$K3$kooRPukYo2&h&d?`SFWx7 zmZFzo+PEyKM0U3tgK$pkipbvCUd#^Pnpv*DBAXZ6n&u^ImudNw6=c{9? zF??-olCa}`XmnC0ZYKqr6Ja_{Hy*heaD)kw_w&0C#6Ze_m7RLh-HQWqSOGEsa%qZ& zPgh)oh1% zxECrdZ9I##p+ObDsa}J+uBxxX$l?76oA%>)$(7U_Itj*&13#OsAP5T5r3R2Dy+|*iNbiJ_KuEqFf6w!t_5Od>IUg&`OlEdw_UzfS_jQ-+zTy7B zs8yI7rZATR1uuI1ekXM09s$I{Z-|2t@=mbxac7PFIpxiRN4yyjLtRK1AL!#|({bE5 zcydOJ;$#q3o_MQ9%srnw6aM^pncrNbND5rNR+*?c?H9gA45+Ps%u;VrcEca0yHwPR z_n$aM$x_+YNp}J40*sgLI)l8j-)TS(`U6s!eFHoITEL-AoW2fTQy!I?N6k`XU1%yy z(eFI`8x>)G6_s&i%t)>g9~cfPR#sMelHj1T4J?EJv@?G&;bAuR^0E!kZ~&BUf5S$1 z5f1hX3ag~yM(nu|E2s7y9ua^V_U|!@Y*=HL=3_l^`Ym9%fGC?=PK13BlwS+LDTbBK zcDy}VktIafga@OOf0W@KB=y+nfNLuHPA!g#qxMW z*o>upyRro*)||Qgn3)dfb?sx_MJ=! zcg3S%9-Zi2oa>~L9LBD+EvtaQ0(GrJf=M%+0137vvAW1vvKgX%hxC^b;WpjEF z{q(<$n!iRmkHk#H+rg!y0c#_*VmI@$^SiGniY9h;A8+XEUv|p??$ZB$BJcMaJ2sq)iCj@Eqfk=D6)27*16N>OgT1Rzfm!f(RqOBg;oCDHI~&~+-ksYy!;<% z^4~TOtQ8RE<5N?=mZ8B088k$qVT=WLx}zeyS|Qs81lbu`yBCQSq)7{4JZ3&V=~bf3 zT0~qN7oZD(=`6X-(|2Wn3S{XkNxLfy26)iB;s-eYZx|Gbo1n%dC&0bIL$n+J)%$4p zV6we9p>$76-;^lWX4o?T_pKvCbP)D^Tmnzt2-QJ&&>N$>(-i|J4U4SnbkOy|@d*hO zs^2O16yb)3j35GqxVI2#)B|Z4JEfw*66A2ZLFVBWr8bAWcxi+s4KSuzgPDdHW|%5D!BM zy?0*a`BM$|oGC%eHouvMP~EuyDu{$nzF5&Zr~i;(OMoyQuByNT7ff*b=sI5qF)Alr!ruN@|!fYwzhtw2nQ*?Kt4ka zy^!O6lv%{K#{eZMn;#?NDG0yYDczG4n!D$5PfJ_7*lj|=0A;>1!9OA!&=HF}?8PVH zeko$&(q*i^1sqZ>GLgVAtO2jyh%eYJ$A7;Cpj?@I%TG`biLY4Yo_%Ew6LvV%XW|nM z^%dJ+&(H|2?kCn4dgzgo=M@CAvGWDL5rqYEQtS0z064lsQDexeLnExO&$yEpVo+kl z*MUB%b2}jI`o^d%(P_8T6TZaTg}#oFM%QzHIzDas9zH@mf4X*0+Tt&IAAX$z37=l} zSx6oSKPj=cQZk`dbeEEI6+4SNsWYS#N((coCWI)#Fx-8jM*f*I(z`n zr=DanFI%ukT(8nvaeJUld_VUNC|(HM(nEe-`M4UMg4}Nza1gxsMu2Vn0G{}4{^!{^ z^DA&)`~AcujLrTgeHZ$r^a7YQWQn)Lb}Lzv%~5{PgryUi>A}~JRzg%Wz>jKY(yRCD zMBV z!za_%?scImiaYGe@%yQKi(50|I5Q*;xO(Sf6bHX}i?^0P?k5M*N6(aIczAgK$7}Qs z*Umyq?ky!ZrJ-Ddbm4))K?lWXkZ_Z3#3K|+IWjPQ&3OLl$Mv8jCZbIUjtczUx<|h0 z2z|fR!jNr>8F3<*EN!`;>dQCjfSS<-rQ5v9|0XiBgkW?}h;632pcS(Ez%KrKD z{>_>J`UcR&C{LaG_``TpH#5&V#y ztr>vatT(M3;Lf)EI(mP9A3xPisvw6vqCN{%BW?OE4Hd<$Y150gy6rZEuOcKPiJyOj zUg0f$LfC9wy#x+SeM>XN94>MIK_q8y3BtsAU!`1i&|a775Eu_Z8`)mLiY%U%O%m;(NIjjEq_iwwNN)U z6Mxm&`O@z0?w$*#y9)qYXXmd2rHFhnsT?i@3G-BCQFY`6Hx;08aeS~?Ai&OmSz?4V z!mWs38bLdBw70*V`utq?O+3zm4G1-Wc{dM%|n5=wJe8vdb^QxjUBaRKR zOHgj7dl{$hCfnv_Ix_aWsvT~3;g!L!iPj!+`&%JLrr16GwLW30I#p6AV+o?vvi(>bf$J)1#-^u0j7e zcrUog3e68rKGzUR@h0Tcs(Ab=8lSSW*!%nURbAaz3%R4+NB?vBaNNk7f7khMBYaFA zA!bCL048L&2bEe-Y}hxuAK8LDWK_^MtD51&yML-fF!R6D z(N=+=kH0cHUfbhHH$PEK9GibcSdD{r`-10sUbWaf% z>1b)=vBYPByA)_Tc~Z1sEi|02SlHbJe7v{ff;9XZNuM&+GbL7a-ZG z*3^HN$lDYKf!Ne80DWeiS^Uu3_q4$LM*d?#KRfTtapT5X=Cy2*jg?ZDrlyu8LVz;G zjf*y@+oh7k`jTH~HaZwPhZ*h5#8o9MNEJGFIrR9H4wSK*l)uv^eivZ#W`LxxG~E7{6Lcg-z=vFLg#73mK5VS@2ezl^#=+#| z?m!J6MK&AW%x8rPE2|pOY6cxQ-o1g_GdPnt-lpzG1 zlb+NFa9e!<#5S_F2_03w3Dm<6LT#(Gi(9;yEua>-$D2+aJ5&lH{;6Q)f>JtxuOyzvOzL!iTQ(K>pcz`TBMApFbvgwT{r^k-|** zWboEG=eI768v#Vm%+5{;z3orlYkc+MMMS*42z=%y8I2NMl&oy`&Oo}$+oWP@!hF_M z3EQeB>Zk00dL(X>@*?X)e|yJhcuOw|v0u~s@Dw74H`YQLI{flkDf(6ee&Iv!jaB=o zsF-H&tFJ$EA?P_Jn5(L){B~NnT-RF6&>YD|vI>4Z=|w6Ub*01jY~UwX0EQ%k#;(VaL)AWOubc|E%3K84rxGzcC)%zUR<~g2P$(__k_M0M&haP)=7|Tzsc(alE(6Yw3qw3*G5FiRvyX@`5<~ z-M_y-`ePQMbDcVlEN6ImrNHFmx%>C#AjShcl;uBP6EFmz5Zt!CN|wc`wK|%ASPCbG zoPH`n-+&SL5qbTSm!Q1-T@nyfGMeazHWH?mE(3v^KYK&Vq46O{VGEk?6Wun*oJo2x zTxJ^$A~n6vXS4ku;Hw5E2F2VRrI^TQg3leLKr=OX>w)8e=zP#`e+Jhb&F4EpY^sg@6DU-8UgH}{p|>YMlKj+2ubmn zw&=dtEs9y{W&;|n!M&a3`D3X|w50O2I8681wC6{yqoCJ&9)5}>Jq9Qn=$d{W_v_TE z37i?h@+DNz|H)AHqJ-Femm^j#sPBj)+^uRl9zXaBR&!?1pmxB=pW4@+`y$p7DCv$gwu70XVI)MMO^n>>~>Y z{qt2Viw}2yA%|NM4zsFW)*wk8d6Yc$ARrCOzD+y1sYQkrxZ+J3(WC zURyq<{jSNIVo~$yb+xf_@!`LZC?K$y|6OS1$^Y}y1j^$ZcovT<_ngUzY;DDt<>}4H zl+rRcoJ%{-clWfKLhl_N8;Q-HlLNW5oD%nK$B3n;ZwnGjoeCD=2j9l=ojnuM#1f2k zDzRlI_I`R+tT!x(3A%sy>yY#%nht~HgokhJl9s?ah$^*?j*M;nkz)PDow&b+wgF0e zTcA)k<%RifX6%JPq%ZCh*7%+PH_*|)u!kPGeyibb2luI*{H7~R>B<#TdOA8SV9zw@ zMgbe=Tw@sdMP4Q2g&mL*dgTPtoC~FJpD+aJXh9!W7b8z%N60xsF7`$Q-S4LCoWlupY{%t#z>#omN1~@Dr(h}a;qpLIR z3B9du#5f!Y#heeOE_9w9%~=FPi(H!NEx!3Hl4)yU|H579QJnWU}8$r+wy)|uV0`IqFmyC~i&?o@oi=}zX z)zGMc*YH2bzR#FqlKvkkh7?>EjTHNu?V;}V2~p560-~bJCDu;H#&3lSXuidzwn1sZ z_z&^<9__XGrI$SxR`8{--oztHs%tHGCN67Ty)8R@vc^{W`od`pN^Lp=Zeko5bA-`a zk`&9Un?NOm;>;WlB(g*Ft$`_nWF_3*ehS5!SA&USMMQ&^p5AME@+KJKw#^%kVq3m> zbY;l|a{d4hTYz5E2#Thl_^?Hm;x_|DMMXVb{c~w$LPvegZxd*6dArF06pfA^D*DkS zM!v6ij)WE@0_GUObAJr(Yj{r{@$RrM8Z{DPw4@t&*Mqp0R1*SUA!Cx;tOu9qwSivonURiopT2_a=cdOHdW2>3wd(RiOA_S zCjWY)2qhPA5xS*ysX}%1s zVz-bdE~0`?WZ$0&-;)P!RrW+6dAtH6XA_A27H6`a_0{gcDA}~lE31ptFEG2iCYRUV zTT^bDSpFMh&3i+_zA?1j8clFHiVwC@T2Nv}9a^yU2hQv486qQuSJ>i{G;RmjfCibw zm1LpP@L{hET_^x?VO?CMQ-geK=_{+u1HC&1^&b9-lG)VH?VM z{|6gEBz8XDLt(xvOa1ZK$CtU?Vk0Hj=rhJjspEo5xxrDvAGWz>8I+#`2pe4Wbfok6 zcd+c^wqUj>{2||V2cFDUyZn&&%FIa>c{iRIQ8?wAOj;%`Z9SkoYf4kybHH7kxfbw| zTlJjYl1l5U$nW^>a+=He%+E77j_q3jzZ)A1yc2Wiebeot{12i2;NjS8Z{_m`|$=AIhy3ANFJ@laNtT z5oKDrS4PzFOpK{1uURqqXtlR^MMXND>(rA1wlz!777o)^cVB?I`U-gz^c&EgO__x& zD}JL6pNd=pRQ7%m&-19=92jPLT^dWCt|)M6P4q#zyJUg616aNB<}11umo;_H{*b&2 zH5+t+xVN__cFiUrpc>=5=;2C;Mw=I{$lJ*F_jgFKZw07p)Y0hc>HV6n3(V;yn4%p@ zF1$2piOJaAK)&iCn8F^uS(Ex+0`l8FIqEV4qgM%iOO18hR`?H@=MW-ltf3_|^o|qJ zFjFO`iZk%&rXwfyso^6JvBEcgV>odzkYF&n1&=GG0$4~76Um|H(8 zA&D#B4`2Dy$3{05Y|lkYKRIfdwvwj)uthK*xi-gBFqBYJJ~H9P0sRQEWUd&#-8cF4 z*Xhyfq1!+A;m<1D?EPm#sWaRpEGoKo(S)jJ=W7(PC||SrxI=wtTm5}*?!(3{kD^-U zy~+Y6eYRpz>X@=JAJeL*I|5ljPk8IqpHYt1 z_Pazui)fkpx5VnWk-6Wwi^>?{guIa|J?|n&yQ6EvUqi4S8?yCJuyH-P|$+E%wJgeZ&HAy#i$!5tsT%W4;GO?cIk#iVrXe2 zRtBk!6N!tifgJs4UgfavvFm{Ld;J&2OnKt-*6vs2!gPc^5$IN!&z)naW0sJRFgZ9< z8vy5lx4lNfub$S_#=`2v#VVMf^SrLbf{i}QJr>wuA9o<>o5FZex^V7&r1%VIDnR95x$+S6C+iYe$%Ubz#=`of@Bw3}TfL7&^Y5MY_NY(k@>$HfDxEYR0BKylUKI>1T?_vSyc4h=XFm%&LsZ z@|$Coe@7yMkD0A^YNG1T+SBnv{2ZDOiG-fE!;J|M?;uZ4PXT4+ zG1ek($U4yDlYBDl#3<~`lc2(r+LHl6lIE0DJpn1Ho*ja;WJ@A3cp8UA5=0sc&_p=T zU{h*m!kXR{(|NCrrGl8Ah{)Je(0vDUHNUMhWKhlFdZUMyS7scns@`N1%NyR{HGF@G z4Emxv9O!oE-rU|{!sXO?7y0KoN`rz--bArb}crLnn&_yC0Vj0+-%-3G-PpBk(`ix@YvK2EhQZxT5cViJfhgn*GdfWD zEVQBVf_m$`;5TFDwHBmCEb-f#@xqC89ZfAgIp2fq?Nr8{nbHy4h2_^zzg*`Xx6K)S z=5)~xnQ%;?Mo=T`T5-p7j4);EV|(WJq7nOZMRw5K)j{&w z`*TcrD!MkTe0*`0=#ZKY*GyNyh4YlMsGAv}mytJ-CLr?d_k@^Y_#%P-lS%6L1cSk{ zjzjZn{{-JWYdo20+p-?v=#C2mO>GY8=MRe5dK?P4ECa|KU#+(A8GFanJ37Su?lHe= zlt~DAcQ5#$*BnolR0@wvtt1rvJAt3dvv*}qfL>Wq5thu16z{PO! z1wSpV4zqnWzmBFcOSxqE1L+8^1`7@iH)q%h&TZ&mP`rF-F2~X&G1^qTLhQ*k7K#O4 z78+(YI$AQVP0AYzp^tjE;>P4tU42S#9%PJ7ZHH*^9*?efJ(}K1J?!c7-#8BLX*{$E z_&T-w<%{r&5A^(ppdXbjx&bDzeH8(x=yk|za!L*J1E%3FyJA~lVh?#kq<4WWcv4W$ ze(z^=-RDW8!0v)ECy=Ot*$ zOk`yEmF+-w@|*nWXGkyErT1rj8}(fMA(7mg=fY47Gh8ou%L}!I4xJUn3zEYbV?RB$ z0NJku_q+xRgNCl>ouGNSH{eJ)L>BhyZ5H4GP^|(zyQay%om;IUq2bF2Jw4iUK8b!h z+eGE8(5%e1WSlW*n_bz)2hFi2K+v_oidDPZ>ij#?gv_Q(U1z^<)Zkx~1sCXI#e&RI zIrg~<`1~N~ZE|vMbmq}ffb%g|le6}##R>xkNWzxLl6SG!j!9nG3H|J4C0&<~-z|#o zjMtkA265CEbVVIS^Gz!-B7~pzOa<{lGfm2o!s>)eCd%HdqYItq`7$nH9 zueUyG5Q*;1)Q-YTogW$+`r<@Z*Md&(t)JPF$X-qukrw8Ze6z$nY_#?^aIa6JEaQ8; z#`aB1yLW_VZK+LOp!l_e-n%yX9va7Cs8Z;oku@Lz^7eK#MX-#&l|aK+gn}^LiUZUd z<|hplN1f*_PTo?nkDM%z|4g-Qp{~LXp!DM)d$$l+$_m5Vsp-TQ#ZS4`?0IA$}7| zR!@CqBw>$8x20{PKf6_TI4wT)oWG2iySaq5yDXn`0!N3$vil9+t*;;^J%a8+i66UH z#>XEFr{B8T_J-#*%)yZyI@((aN9A?~_l>zK1aBu+ekzxU@?$z>8T=mD{Gv4lJ$Gma zUK&~+Fo1(0vc=0>Y~tQTN87y`6}aHqo1AQjq`zI!5)l{I<5LrolVgpKkH2&1aY`2j z6kPW`#Hb9`xnfVlP^Tdoele};KL3Yq6El}E)_AU%twuyaFRb=BV3IZgGd1aLka`$!Yci+00?&!$*Lwsi|s<(cQiRJP7v00guc+*kK zs#b2!PR8E4jhU=G{j%h-6DQ#@<=JBb7@!|EN3ekVQxn${q}2|D0_TM}FA;l#rP%>C!R zg4KP>=1Xs38&|ph=W1sO%%QL9;d;o)*HrW+-X9WrlRwpyuAQ-@WL}Y)pl9W zX|Lb=?YXftJfV(PDBq0L^VJ_0J_`hQ(AbyUv;1i_BwCl{@q6aWj>iXl10i$lLLbE1 zC#*g@@q~Yn&fNC=)$4J0+M}Ou1SLCh*z?MvV}qMIjrLXjb6q|w>fiCPw<*&uQohMa z=_Fo(O?GX=xWOE<8EQJT)g=y%2(uC<{L_uJ#|U$J}f z?f_m{cc8%Z+W2=^j;t*7*ND!&IWNexJK8BDPCKSuP{mQ|O=NsXP+_KKja^%e@*Q$n zLTguYzW+`PW+#$Gxy4pQtOQ;d-tfF7mfP!MKY%VX!On2^~ry(c4a8?2gVsf5XtIY=m+36Twc$zP6 zcoWD`jO2rWTiX@C-2JNk9Ua(7_7--jmPH;IZvPdO9gU1yN3QY9SQXp1o{OAzjga^{ z^C*)75q5L-%^7){{KXcpgA)pbX(fRPnwjiAoE^1l`}2tSVpQITAa-rZrz=IUKmD}R zdz0&lWMb{Hba^L5{RyB^th$4 zj8fogBjbNoOzj~+9le#=cvtx zlb5CarTc_Qe<-I|&&Hy+Suf{&sOYhYY$kmN8YfN8(^KQZi=roJ}J8={X8;atA zf{eFSKC5a!^*u6(*GA@x8ief%Prsnh13XvTN4h6Om%Yy?e8X%@ zY7a}tu;}^uayH5a_sY)6;N)OqA*JS>`x2bcIM>yeN519G#rL-j9fcoQSUfDqm-`<6 z*q8PNmWSFnzPn$*?I-%-O4^SNF1F}FqWU+JnRAjVF%MT#!4Mi<>V4($ZNH#;)@1eY zHX&g!1V>;Tgj>l>9^JkDK^;rYc#a18vUgIDm)8Jn?>jx8;y!-;N^4%@b4gXh=66TO zTtVBLK}xytp5)Xsq^r&DVjx79jwD;+sI=wHgWe%WM?0HI(1eM|y1YGX(89}dRrh15)7pEXrb@8SK05#)(tf`4HuJ@5>K%_f0(V zN|q*zzFrw6{8$ku#G=GJAD#O>An{Pp^+@~1e&TBWtzZoujzK#=?IfjVn?le~ITe_dolw(7yC@PD6+9{!7(lsSSRbq!g>HBBLv0 z?U|1)sknN|$(PD7B|-igUA#5_Du47_&c}q|kA6~7N^nf$bHni8BUyImmYW$u?JLx6 zXoPJ7qdc?Od1<>_o_mH`MOJ$z#jTes?Dq(-{kfQH z@iQ@5w(TjYwnk^&gWP;2>Yyh?Hp(@G+Qt9%1-Qyg`Txp~PSGP>6ZXSOrjoaw67nBE z{*3Zs6$pI&e=0lm5FF<7DBh!E5yjkpB`7~D-jS?%0N zL7o4%n{<%*qjPNwITU2CO@S%Up1OFZnUDV_6njQCj6&1E;Pg4h*Y&j(75AR>2^(g# zgGdjYGBz&&v*KhVGAxYzO9$-J`5s9KK{)xvBD!QZ*Bn_}PY{3*vNiR!z;`Mip7RF1 zaB28ZZF6uUz{VfP$AXWaNaKd?7X_Hb-JCZ=+ZV1m*q1q#af_zR^4UN=?|;pQ)O}BO zhAAqV!KQ)7)R%FM-cv}J4=-ffGM!|LTa7IhNts0_Ud!+ZiS?f>s@#{`sEJ11Ii^=a zE~NmIB6kV-{lZP9z!$Ux^@t^$`2A&1)bwy?*_ISRY{SW(n@`n45!eqq&i$SLfQUj} zBB-B^%~h=`^0Sccudl%ZlLr)(rCoz6WH6@{4eHsaxkebee1+;I4d8_-!Jhr4q4*Pl z+WljaNO42WhXMEuSQ2}15xwNb5hy@4c}3O$QUts?eO1bWGWKlJFDBl}jYDZI;CTrL z#Npc(7SZ|nV$jS4FPv`FC;YkUhz-1sfa`@5MW3L^M|2U7Af@g{6^KmS*K&E8Ybh@x^a-wy=PDeSC|^lIcPC1^L5o+#@}z0 zHjGk(m6xKG(37J$g>;^w$RFT~Z;W${b@Rj zWAyenoS$awmULgrV|!>6zU1CoDGjk^zBd2e!}EKv*vbc&?m8GrlzDw=ScxlDs1Xn5qTXA zWDTQyIolozL~||`-Q9}dH!OEUUev**Ooa(_aaTT+)c&yYG4LKPmA7=WC<;gxx#-9* zc;yaTsLkJ--ITkoPajciQod)75Toh`DIu_1K1Di{ezt2Fl1IBY3q(Ezh-_mr{O?yi z%VFJl9b{XNeK}+s?$pWgU~0enao}{V|2gR1i*J-AWD?2e;;1r=ipjy*q?kGANS-4* zNf*RrTIldcffoAqM3LD&7qV``*%tE ziCRf+)>9q}fWRnE`>$Mv&EhY2!UF`~tz}1Fh>c z8MHBvl(cy4J*fD}jRju6OBbVk@x6A5rWF)>6=4x7MEOzc>SrsWc<9xJ_iN*u!~__U zA!9)2Eq=|04J4XrsAW69Mclsn`1f}AV~b|E!@#XaB2jB-MYN;NwVgMoPp=n?@czB_ zI!;jCi-!CrB^?Ng_;q2Sp*gal!VN4(L2wt7^U(8e`Isv_qw`m7bz{ynx;%NJ5&?rA zyScR-GVz^)fUNDDsRRbi)}uqFw!GWQAsc7Xl9F1KD{c2zhc=p#-Hr+F)R52m=&TQ# znrYKVUS9imrlyK@Y)ur(Hj=oF!LS6MY43TJbs@1a>2Z@1lX-(@M01ky1p3SW zT@;q?3)S?!pnBZNeCr|e+sx$J z6S1Bvb=B3!v5;P;S~nX($7X}`!^sLEBQECOZUHX*?Q!fBWAPhq&xFmxh)b~D*DkjJ z)9d=a;l@@BpJ8i)kwzp~pMp%bC_z8CFf@%X#vm5lQekE~x_>+#1#Z+~B<%P}I7Ow|Dsjg@I@N=7cm% zm(W8_D!*1(!{l@9zqiE~+uYorSK!k6>NL-f=PP$sD3FgHJ(^E*al9bnR57tnXeSR4 zZ|VM>`o^U&^<@kLyuxrn-mW7~<|GxJT~fDkH_P=V_?$@ z+R>v)PNRbG_hzlAD16XHFmR08&?vC&%=n(!YO|27IKA9;@Pd}@heOXjQnBkcw7;G$ z9Rm~gMDV>vFAH6tv+$(wX}?eM6Kulz4PZywO6;XtIReMhJ|PNoYTjI~q6}<@?euhnf1mL7~l~N0O)Dh zHb6lKV-}*KSoX-sPb@rv+!F8WZM&q@k4H?qy2wurXo8%hFAP8xAd*Zfn#}vWW*RMs z@L3GsHg`m&bia83SMt^2J5~FJbyZwk`yRHez9z!!aHfZP(qm?eMN@U>Dpo?C0Oo`m zwM4Z|Ew+CJ!Ibeo1qZ?<-A9fCDf@bYm^Jh^xO{J|F)aXW z8dl>4i+4_yFExX3BdlRwi(Oas^(mq3AI6^1gDtu;40(2Yw-0bT!@Wk{um(P&PbQ)A zyHOb7S*0~+0dEK;3^$LGdDfvlaQHnc{w{Bm5dkaxEda{`uMyz#;OM3k&oaB=Zkcxx zNHdJnM-yMy<9t6CS$ckb2Lu{bzcr8C5*ROVhA9c|6b3~&L6J-Aag}nH{5HSl2XhEK z9gm3=RSB9*)Xy%qO7~m8uR81W9;^5KeQL+&iP*N5mYtpwI8aeVH`+k9&iV`xE}@A> z*0J6s$*?;8;2{_{!JB*U-ATHVrvMCuash$usOK-PWsb?($Le?}G}C-VD45qNo#OVy zx!Q1UxlXHktOZ}wrrFt7t=oa z{Q7eilgC}&ye!sGX{c9Sjr(xQ*XFf1pt@>VFLJH~?+P1bed|8_WQ)#cUZRD7zpH@v z*$Bf@>!@6vl#&RL8pbkihpD?KVOqqf*`}r5^g<6CzanA!i<+^zP*b>H7MB6xbsIL< zqskxvsm225IKKB%$q2E&hVD$H&d=5HI~%mSl(j{)D4YcYBBmt8d3FOXZ^ zzCei4d2{?ialKkL+g{pur9fkMff;cElOe!oKH>*s-re~0Q}*M7Y=bPd)PkUt4xO(> zJ@L}L4&*o{+4prZUUm4v7yn!4HvUR;d-6PUd4GZhPL9CxX*yhUu~_)b&!j*4Dh8-Q7d^P64B4J>~0zHgmnp(d!judm0EXDNDqZ`(ZSe z;xCeaJ_K~WXd~E(Nz11CIDT)?=(efpkQC-j`(;kj|C>n8J=#?tICQYT`X2 z6YX>TKa%tRTQ>UjQdu}!oOG^v+8oL&Dvm7$Q_{)BI=H*bF}?B<=N=$IP}PM`G4E1dJDpKYtOX-c#mI52i9Q zFgWmskuGeME>mF^p_$qyC*f?XiAKaaJ5BHP_X~cA4;g+QClf&J|&W0$d=01-$4?bF8m(lJ1pi+ny~7VwDqgvzZn5O7<@>mlsh&BoWTrgzRxPTxR=)Q69%LEC9*XBR5a6xcxC=7xK0*TO_BGI1hg z!+-uX^WVIG^HmWLC#$g(4Z!Q@2BnHWcJ{TZI`#DMafg9CKwd-)+jv{Ecb$Gr#iMDL zV8X|qJh!=C;X z4arLkQCKDy+Fz#0Lh}WK4jUD?vd`P^BH-)&w^*c+c-An0M!4HzlOB2yLbD^_&*AjK z*7A%Kgwld3g+L6GCF{=h8wnA~Mj^C~iW1KJu~~TyunK~r=p1~(;oP8bOv{&zzzH`@ z+;?K##W`4QuQN*#B07QnRZz>?L5_f9m+YSny=$hX9BG4tEVoTw?Cm{wXv6b1%&VHi zem{EnCw1l<`Sw%;`;+{cKq#oxM{=|N*qx)T+sn%w)!VDa78@ZLnChlvGU8EpVOJh~4YDKsH44 zlmnhCASaVo#SB(I0NcblBy97x`$Su-6YO`Fni0^IePtdwj-(c!B)(W$g5`Ku2d!oL6hVX`Z}s5a)%kZk!&*YjhG?q$`7Sp|lj`BYay~FD{DPvOg(N>d&L?giWi{vaz2oTu*?`DY&LMmlLH4`yB7Hlqo?T z3sKnZr9)j!fE%PmMf+g6U%sru)AzS~ySo=a$Y=Rqi58*+c6b!(REv!yJ2BSs)(#V; zUF$ioV@6VLy<2X+_XymN!Q7?MP^!EQf<91O#Or_h`SYhmr>UF*=TmkMQvm{{$k{7A z_V%iUU~*jm*VNcRi-4>SL-~w0`1bZ2XW$&Bjet0I`#JU}`YhSpEHWu6M_ScKKk!Um z0G5Y`M|ZNNL4s6`5eHBeSc{DYJDfN#MIkB&cYFj<)Zy7^82N-|(r|+MO=xaSvsmOv z$@9$)`Cy0N8b2-;IR0V-0W2`T-5U%kW*O&;8UTe{@5gfV!yqiUT>&6m06+5EKJqf- zH6|ahHsi*4X*W^A3q|%=tug0QZ)FF_l4%lg7{SoDWcY7$?+sxEWkNil500JhyCw+r zh0va|eITf*hNp^*jJ)yuz<2LDk_jFMEiv(l65NdOmk5p%dzDP=L@k}!w!M4X^Z@C-G!m7waXUV7^IEHQG00%rWg#bzE>yx*0^xb|o=FvkfJNlvtV zb~AE)szUoR`IqjLh>yS83~)lD*zMkmp~}E*@WfE6oey7eBY&!PewZ|Zx54{xoTz5F z)+i+3g>8QEgRJ9Z&lmqoFvVsLnI+rIAg>XhC96|~B*em7p&FYx_}zOjQb_~z6Z~p! zN4$t?C&Wq?o{zn|7}v-B5T`7B`X{yhH}q|HmzaIkl*==`LdWl=ptz^8g2MQ-j_2qs zy^+j2r0NJx+>5)*!VPs1hbp)KD9d;6M>O4C(%%{6+u?g&PZi!%iO3bAkbx0$obu~D z{yN?2HA$b#h0XEtHZp^cQw;+Gw*&L})^)5KvN&2ScNf2R9mHrFjhAhR4Tx6QjvCv6 z1$=DM_fnr*j*QCQE*1IN38|bLkIVF_sg3uDM1;%1$q>1h_@SA;58B_#%Ko?}LysxS zC3pp4m|8#mV`qL7ek^v$RHM$-7gvfMx$_2;@{U+=!B|ohuIn)9Zr8(00 zPmI{JCO0>}tf)u4!aWbM2u+1(R<3~{P|Fh7M{SJgGy*({>{zkVPLLp-Z8_Nlq zZ!np)hnX^D$!=)gKD#7-8ZAxoxBrY?O%!(3)H|DW_KDlTAoi1=?8ZNlVwOyHDm(={ zmGqYRiow@Ih_~ob?~};uw#gf;lvn@zX#})5E_HBeb=61xrPpDaE{%3-s^%v|8oN$# zeoXy4nu`$)LS1Oa|0I;3^EFfKu&F8QQ(9*NSR<@jOl7F-4~&?ZvgtPBe)APyplMRS z2+@*EZ#1GWo-Ri|{(o3|%c!WL_I-G01SCYdQ9-0ZN>WlmO6ic2Zjp`wK|oTJZb9iz z$)UTHE{6u`W`JSlzj=PYXRZH-_sjdPch-WLIp@qdJMO*rz3;fL!*!_f#c$|1+bJlw zcA7BD-%H{q27ip1J&&1;L3?3m#odrQTQFPlziGmyhUemG8!X9H(2p-6^V@lT+Vs|Z zjO72nc`UIx*r(x3^IfT6Q`GW_!!}C&r3HrP8zL>358e0G{FAYxajbm_ydsm9Xi38M z3$9ZM>vS0Y?OC@ObEzf$L$rwPD9+J0SK#*CJZOcfrsGg!@_+VO~VI1jhojT&0Ys;pTMSXqKkg)yNp zg$xr}(~=F9XS=ZfRtQ>QMu3vCuYT`qY)Nc5^hrIi@q`(>2N_oMpNp#ex2AcqAui`7 zSUs@eiW@|AC#h|vd4Dd>z@B>o#o)^2N>bI>JLj%HOibDyu4ulfc&suP_FRe6+I-|{W|{&HH-L{&W}4W z&HU5{!m~g3@W!a(v&j1iZHyc98k`jd$jFo}YegCD78O=&b*{`=0+2uPXxOazSn{45 z6?7JbzkJrVSrUvO!(5x(d77k!Pilq^*wh`g!=c6!#iOOGb$pwaH-%cAr=g_{dR$!R z@GnG|+q{nYDZz4Yy?x#%XBGB7svsb{0li^wAQ0!p1+fpsQU8qvc#Hf{r6VpeGscfkA)evczr+X@^Ogo=}a^_|1gi7IT$vrx--i7Ft|(Hd_EQsM>ZK}9^8 z7!uBg!=q}pcm)S}h4|;JnyOm$ossN6iISXnKXjZ){ITm^#yf8}uVe-yFOJqb)(Zn=9K1MekK5AaChoz%m#=F#1xmXp}M72l(vn;WE34v$x3 zou?DwsB%(?R>>dZT*m5q(sjYh=OombXl?2eHH@ANof4g;OOsEx#~A0^f6P-6sQ^Cv z?_>oxDlCfK#f^DArLk3d zm0X$VmC53xV|5iUY!3&g-&X)J8ch`ni*yHV%*!nmYSQc@^e%~&fbQn%)0QLs19N>? z0868@z#buwI%Cv}ND9yqwY9Z~b$hWZ`?lo5ylyD?zhKh@B0Q+_lGsUftS+q6?DUvF z!@lh}FGGtFNTj%q>7$BLZL_V`*>? zMk=J-fb_5U#KaD#`c9|%`fBv@-D3PM7`=hcKDjj?3wj|l#EU8GDL`d(ltEtqK-Y9=H2WfoJW-2&(7DO~cc^arn zN1Ra?0Y%)t&iySfBJL=)+~jCozxhM0KG=*YM8R(6UMJPr!IM+f%8hk@G0Z}lcC|<_ zC}&~ZM!bji@@|3rPsG+o}VgK)00p6ZA3TwQ3kxcdElk z6!cXYuJlu45kI{^GI)1cE{>$3 zmFN|u4h>t}x<;=rA-zpMP|7Jh>fPcBy}_aPzs6KTHxlM1#U@!+1^f2|eu6o)pTM>e zGe(F(%C27f`F^WW*~85zvKpHGWE4NS0pGKH_EOL&%{kZFLX?1(=03+3oN0@kSY82x zB7uIil5|&p>&x~akXl)7cOhCjx+Bzu=gO34jVK8HZ${r_B%`h0TW4 zJb=ryNnq=_5+tvUG!Dx_20=hnadcq7`ZQ5N0 zJ(l6n)b3uIMO#7mZ2O6KXADCU-7kEulNinJ2UX$Zsf*uk%Duh48O|%cUd@-sz0_%= zVnJ}>o~T*MY9-o;B_gx5&6tW;cjqJ3mUFnGq`w`F5SWS|hK_ZJ^SOq(4TGi0k zFPw*Y9kBwcsC;J&5B-A5g*T?ncOWvdvY2cw^@G+~c|Z6wt-e(`=fk1>?$4CM_P%3I#OVZs`eo{=+d4f_t8q~C@HGjsh*!GHVTC!S$Zbt@O zABl@P%lB=^kXPb!AwI1Q$yw5hta+`$(g>v9s-wx!eXc1>vv< z549qAeJMYp;ZT|p`{iD1bTwUW2CIuHriSL7(>=mn^q$izbfiuMpf`&!G5X8;lgJfF zwh4n{HE)QzFk_OymN$Sa|8*T&Ko@HPWHzNEV5HQYenDGG3kd;M~OT|nWQv6SEgB^uS-V%J5@j3 zh;FW%M(i4ExH`}Ew;F*Laf@lF9t!H+p^B#>!tOI=jd{3M zcVu)~OXkkNYWq;C=>h@~vn&J(^9d|~uiE%}(5ZeEd3ge+J2`iEp`4r?FyWI@P~eP+ zmFRE+pWo+rfv#IE10x>jiJ?6Oyh1ost_LIRQEheQMNc65q7J%|2@>z zU!8QD)7BP|fq?;tO*B*SWCRdbpeOzw8_PC9_Tbt?FHdvO#3v;D6Y&BkfwogZlNPwW zZFfV(ZU)~f=K^@AMA>_{#wIcbhSG8>D%dQwzY7Hh&;^qp_K$ofXUBjD8xl$Rvd~6H zNB=s@r#kHWBPFWufpLK5*Qz(x_a!cnoSxlpRKO4Xr+(26L+LghUBtdCa9%-dW<5Q+ zXs@0tm-StrW}$bD_y+!&RzWYKgIqE}O> zeQ}5=v?mxrh+|;*!y01f8PLNQ@GQ2rJG*BV5)&Pblb%ytRafRH-d(egjQSMS6ayZ` z+&-m4z`4RiP8F6q_pGp$p8NM-@|B=}(EfI7*ra^6_>r!Dci_jJvsU7EaS*W?CBUAO6wgu;QegYoF&rS!r}<1 z8VeE9l`XGyP98ac?Fk+`Nl(APp1$aehTZhS%)1B#Rv?&vEoHF@e&e-umt(!YhBVfp zvCCFSG~g(5c!R>Ib#74+0mxwlF-*Tr^oO7Y5v6(_U(m~?Mv^Dn`?JLc$UAgcJ+ICX z$k@o}?$Q0ernN4((5x+y2K$889hEF>)7P)R&T}oz=(TC?HX+DU*p3tgg#}7=ihFS% zLrVG}ncVbTrBDBOy&)40rM|-KYyF2G5cO?$wxiweMo3QF5t*isd1aCQj;3!*3wsEq z{yBb^38+#K;Eu#<199btvxMfwV8xbE-J_{tC2}2cEVkcqQ8i%Nx2OE_oRj;#7qk)yRP6xti$ZZrggg%m&G!e9&?@dT&*;t-FDJC-KZB-3?g;t3X z6ci=CGqNv2;>S}@R9RHC=gfi|M(hrIOVN2Zr|J*3?_a(vW`S>=j|fcof2o*Qul{|E zjgvW*;cNqOO4JQ~JRpHlIw2@5JmpAJpq#^{V~n`dj#HChni~BZZ&^3Kd)xNJ>49R> z?#pX+B#evYkN$NmztzBr*NXuSm(4vcjV!d>>(`LA%l-!^F6=0^GFVV#)tG5JFfs#L zQ>$Gpn>B5F7gJfUKOa+?~n!PWjCOjgDM~PN5zf&Y_Ey*xt1GLnfwCmsAh&tc(^BLi5n-wQk2#CnhZ+|$y&-V7jR zqKX735_+Ur7`Nzf(w%L{p=B#!Cv`(hr?9nb=lhU57CF26_yK4($GJ}#>iazixQ)J| zr#bHv_Sb-5@4Zx**||en$qi^Mn}k6 zS+U)MNJol$>PzK5zCV8*p&8iI)3bfS;AyTtLp9$|nT^R(0m8)~kh|xK_3PPIe4^eJ zTJ4*}t0%DPYnUGUJ{orI%M*aYf`^1t8`o5yGg*uXhgILO3xq_P40J?T;=I0YH;x!Z z%XDQRu;#9?amkgHWpJ{z7ciHwfJ=C_M-KATRa-|V6rlVPvp;+AAefz0i1o#raPiUj_j@h>gl3E!`)@kPhwu$x=U~r zazEHH{qDj%!G29Nx0QLr8o0$8MoyQ67O$WMSO#JRO_%3( ztwO=n8P-8;QErnBeF=jem~Ih~99`JXW@NmQ?j%Bg#daaI~7w6|H0QuH()^2D$bw?~=m@%GGqNZl$MLT@*)f z3y9)iJ%{|_Whid_`X|q)ua;%G2IRw~vsK?wcjvVwd%x$tlb{gXQkk)2S7HCLtK?Wc z=rI<91HL)4#v z%6bZR+1V8pUlPDtKR=*|yoX~Wf;pX}=TzO#giB+ygEu)hM-bK-1h|NALRbH#7yJMh ze@=6I`SK1uv65lu#J}S5UySj-NBNbt2v$yUS4>D74OS9j9@l~hpcjNq+TmCbnY0WY zoe6~c56Xc6S3TATV{lsH&^p{W0&0s!>e9keL2cxnRtZct*Z5)X7!Efv8!OIc+D0h(18X+BIF}+zbayeK{ z17x5zFf(KXg*g(FSa4!Cp0oJN{SzC?L#lyJQ!|yX#(?JbV-){FqdC1W_uQVPdTXa_ zAnB&FAw|MQgmgRjq5KB_L#>mSLYs87E+-}WPO)bj`qeYun=+aLWad09EZ>b&zV8r@ zZD36(Vra8t8jI!4r?wDBh0U=w{LB{XaO7!CPxi@dVRTEXJ;zvXp8zF#VWn*Xe+K1ew1#!cIx&?gBTf}}w4*iI}FH*hA zu8skrHfZ>}s>W|Bi_)rRUfD zK5##!a~ZM;azn5n!E(co7KBVlb1uh5*u6oFiKV5b%kEZl`qu+wREC7DO?=;#6dMU1 z?T8(3FzGw^rTpO4?7hIQ`;I@xu4o;7DRWA{MHRX25n3T8QV`_3ye@qFrctj}R;itg zGVR9-m;%lD# zd;Bpv`RW9)uKldeqoXS(Y)(y0^~m94VZq>#3(c;o zdJPZ#()+n;wEzxl7)Q`4WS1zD_9XvBRnPD3g@C}nalruLw7bBv>3yxPrT6c`0Gep@ z%rWvBTKqBKU{N7~Zzme)Mh_u4?6mXhcYddlQZ>-P5cpl6ggu6-@@99RSWNq|w2;k^ zV^H<*GKbW&#+%59UR2V5s`R+fjXSz8;@?Bf%G$NWJ15D~HOmx=CD6#y@QXah+CW8l z(50vj!!W`S=^;4xdZ9yYQaJlZ&8yK@f+>ZN{V}FB;~Up@#L`6r8L3?#YrT$^~4$L%QM60bvIc~xbHsbn zlm1H~V^26Zo@-m;jChfCKM|{j3KkcY$b3FQ!40p`XF5lCkM9NgX86DRHgQfO91XIn zLA>e2T5BgTUgcL-YR)|lFB7FFeph~dFHm?UTDltg5l~+U&xU44t2)<|hnhjr(r0cFK*IQ?~*OBjj) zf3-B+ZtoJJR26R563FL-(4I3!_c7;J4SYYtFsdPpj;3egn!y`dTj|lCd=2VM;na5P)XZvG}NYw(6KmVA3G3f+Y3$ zRwX4|2Ya37p)20(b5KI(8*DViz(uhLRqZibeeR`!gy(v+if`GO33ldYHI|h(B`8@%JY+a{pPZtxT_=K5$_7KM7E39*^UuPab z21x@))gkIJxC0}XQaD|)u3sgunGSD_I1Ub60s;bF*81hZ*y)r`+@brQ?McfLu(dOD zaNKz#g-~WPwHm-P`FGG`ndaO;z^<15vF<*J&rX%7+8>`It zQO}Ueu4QP4N&xlD$?Yw$3AFZRIbVlVeipGKS*+nVNK_wl(eW)W|2+U~p|zHuIb@Ck z_MCD2Sw|8Xgp?OA+K2e3J#z}#wC1PU{(Hak;MNb=ehT?4$r`eCIsWez(0n^?4d)|Q7y-Y`u&7Qj2WUw*5(?=K!A|x| zO3ExxHM>B-ej)=PZtD*@g=iSQAv7%UUQ}z8D_v`NDfIiB^{;U8tZC=&Dlg*uGQRy) zurRFDrRyC$!83RDg+FY#(Swe4FSwGA7`2YB>&qr#p4N6n7!EpC#hl0km0Uh%VYQ2Y z&;!Jua#Y{SYf@++CdO9r)(-Js?C(SUzdtSQ40wQUe^E~Y0Wbvup841bQqPRuKYR0M ztdM!=Tl{ANv%Tx=hI2vFC45&Shorb=h%gn$R@N$4{o```o{^lB02sd`=d;nC{IKJo zBcqp*Pl@PRM!4Qki$;Boh|U@@R>BeL>92hAXDgX8L>PXCA4n@HSRl4Ag{QGWANWzD zEJ6P*mvm4n)@48}boehr$tcAvJr6>nSP?{!ko&MQiIH>}dYp1)6 zE^sn-#URm$CUlm}t2-0!y1ifDpt{ISsdneQ7pP+43cWx4{ZF35BZWS`^uE3(g)?&iWLn%+?_C~L|^^VQ2| z;Z9m&e-haUb4+FNzLFUBIc!5_3UjTW(Y7u;)Ni{@yV$3ZMGwOoiF9l zP1Rp}AH@#zBOC6~QI%U?MuFs@E@4+!HcZuNrJJ$nS=72K00(TIUyk<`pMsElprC-fJ%nP z-8!{|zS0(eO}M2QNWlO zlKpqjsa)!;zr&rU2Sh;>W0>Xs)n)(w_2vNF`Z9A?t9?Q2qDsu6@+%^eXlZtP98x6V zw3&(#uK=7jtlS2+M+d0P`Tj(M*-B&W8BF)ybCUb8lICL0Sx zFiqdnP@nIwfos2ue7Y>h93lPS335o);_6Z)(Y-M-@NL@E6y);HV0zGEmGnnf#~$&! zxF4v)gDTI>&jy__)qmh{lIfZZV(c}G>|MT=E-!nO?f*XSeVCy5{GXR5?fV_A?vi+( zHo+Y=bu~=%p(p37@UT$K^k8SSNVmy7MKiPe(%>h#)g6f9X%L*CmUmNjFPxQIkE~-Q zh9tixjc}|M`?T{e9l}t=8JD>pS;gMLMyg;?QPsiB6}8e^i#;*!A+YC}AamdL|5L0v zHtBQ0*T1VI)1^PueoV=GM7D)GQ+)mUwHIJ(fR8i~TnFRTGr69x^|vveP0~Gy4O?MC zXds*Ly0bu#312YjK^m#NDS-X`W54S>7e8=ql-N^jP^#C`NK#}_T3}b}VIzY>9*jq_ zu_D^Vf7ZYi4X%2!p6p|Y9Pj9CsI9tJta}jz-lhfyvSVSQ#ICPwmzVEDMO;R_K|V!! zSq(`0CNC(f$!QcoltW$VSCUyf#zi+JY+^q%b5Ac$lPPh+AbGLa7? zC0jw}e+o;Zg_^+)^f|gwd8&oT!Zc17eJ@cSLJ~a4O^b-BMBZRW=h4J4g;cjmczBUc zF;DsrvH82#lL_y4-A2R)8ySZG>E?*tDF5&M?bKlRxOP0g;Dc=WL*C~skfgn3zl)$7 ze3d-IP}2X#0yOo*%YHo?yV+4a1uX=vD#IDiW3Zr7qpG$YkEtX{$_UYC)tI6BxVI68 z+evjTi=-jD-sSfDwfk^^!9rbL#=uL|SYCx4ci%*F=H))}gm(Y`k# zx=Se}zM~|NQ9n`A{g_JjqgZ_PRaL5pHtO4l2=-9hH)>#4%V#^mIcD^x_71ySLAnO` zu!Q5RawI|u-a7aAK`aue104o0#QE29D5n7kS=)z}J|A?)Lhi*F4juE3RcG_IHU!n* zhyIudC583?8*ge5xRD>3gUDZs4OeeJ8w-t#6fy7Phmj zR*!o^Lb79_7P7MWy)(uk2tgil)-j?GguOMK1JhUbUDk)#!PR>o(O0o5HsB_=(N1X6 zF-(`43NsilH@E+lxdJ}{F=Lm?%Z;bUjh%Nz7F-nm{pCH{bB5A&U%+Fjt}k?1$3C(Q zQYU(ldoazE*APwA9vwI~IJ}FX$+<>|qhxC&PL|s|^cyq7X&#ha??m^BD(W6>f-6F7 zmT{cx2mf3?u`;@tru#R-pZDX(VSIdi;7w&UXWuj2$}Ce+rYgU?iK}}=5z=H^*fo&m zXZy%e;Lw~7lRmq@-*}>iyqboc*Q@N2V!DrIKmWCnYX9Ziw_v56orD>JQ?AF58Y2;z z6HQmjF?hU_FUimOzxEgUQz*YhUFPxmm^U7UR?eI^AC#P*DbD^(Z7Dq+XD}A)0Y*wG z`zbE2x6Rb;b6;M)e7PJ+#oJS&U;Tr=vp_TV-7iam)+^nC^T*3W?E>U#dC2Y!$puy2F>nAUjX>TwBWv(fk2*&-t4^=50L@LjNDh&TsluQOm^W}aByzmoHw#*zxj zz)=%q?Q>iFXZRk4KELy6-s%q`(~Ezqy)S6m_Qw+}B)krpl~q*qLD)UvJ2GZJ0W0sQ zXs9cZ0Bu*b)$p-5lhtx@`Tqt`e_%A`ODAExA2DxD(!KQjy9UeH?Gg19`p>sV;``&2 z9UvGykfaI%dpWtzR1hN#ZCatsm61H34}Q$Sp=q^KdF4~LKP-~4XF|F2*N;4Qa$05d zDxA(CYj7d9jy_cQD z9vk!oGlZAbP}{&@z=#grv)5&vu>DNZ9W5o{rgFTYOspo7)u#Wzcmx zC=);EY8QcbWqAJWzc_%$f^Nd?Qnj2Y(DXaq`t1b}*IcJFJTW6ewmV6rhtTKsum;Hu z!u-hD+pmDy+Tu|i2D6~xH*|d&;2{!3Wu&C^1BYExi%BJk=f~H((+Dw;2?ku*7-YWB zot${ei;C>(cL4|Lo|Lb+nlrX6(lCY|1JV-pTW@4$9N{~c2w-A3i+3x;Ti<$#q=)96tKyeTiRo zsr28g3rdb&+A$g#_Up)q2n_%k4-#0TXoa4bYApd1=-vYq`g~uqtmp}v32l#+^Zg^U z7qbFS#KW&^wH@t-YIZXP>!o>l6Y9eJXR3R`t4~w>r7lZTs#=-o?CnY}qsF^c%)Y73 zmB*$Kc@0lAhZJP9xyUFyL_++_{1XQ2TiSr+| zqHeBpucb##0k>Ofo##>;21G*&c__CIf~f~2FBUAkOaRN5WFs6V4hz6~>*5WO@ z2*?Juf?5Nd#bi;}9JW2I+jKoelBlMQL=rmGd)!>S9+qd%8i(ggo{ThYP*UC=)9&^r zfMDa{Jz!<+0B&pmFnkIa6n-&M(?0KEAwi{E+y#tpW5-f;q58*6B345}`FuRHrg96( z{Cfk?x9+toPQKoglW)JF6VEG!hQ6XTEmq3JK55b$1#4Q&iJ;20HaYg|Jb%vl_CQsx zXYP9wWGH^GPczDAQ`eRNan8W|aLb9(dtgJ+lw#FxRLDSga?t8nTVF^iX&xC%&|dWD zLdec~^6Ry{pH}#kDhLyj>$^a_`8UdXU54lK#K3?uz1VyC zIFbh>m;iT{H{GJJq$EUw6eLH2%RGkOKCO){wai0GOQ7(S$bP*G9(E-RKi_~A?s>mK zrOowD3A{mxtX%3>!EU`bThUq%ZV zijCf~UbhqZv-Eqd*_#ai;uBd7J?e^*C*{6amA>9p=TOl860hvp#oQ*tX0a%WMS#+fZ zs+fgy_Ci8JgeA*`FL9ZjQ9RBB@CiCO`v#}c1PO$jWZNq>HN{&%Q^2a=el3$M;a#-_ zTIYqDn$sz={~J3U17It#WissKx=f-HjLR4FNrg`DH5`W`>uX|5%@UD=ktu!Sw35TH zopU2^Ih5g?lI{pz!uxAQCPb!$_v<+O)^zKDwTmh~jn#qJk@Q&ZwcW43{V|M&YQ zo)Md)%8$E|BI_w4I-JA)2dV~FMjTwF@2}nM^~)e&h2?*S{pR;}yh?Q)0|muo-sWUt zdU}-9cZ`CDcfCKtd~-IwGWg44&ADGCX=$hDi#m^@B`bqzthCFa$+f~&g_rFvEFuSQx7|7)Lkbn~`d zx3_OuzM{`y(9W@^afnVSZ)@8aawK1*+fl!j5X>naS-) z%MvN#O?`&IOO4Uy9ztukCZfqz?~AEQIt$U9ToE+2xLfx{F$!xmuYXuhtDkcvqra_8 zCPvA&l+1;&za#G0Qq2XS;3XtVSb@355e)rJ}}`C~yDns3vnwfN39dAT_mRT?WUBp2n_AS|^YZ9EEJF zz6}~LIFJ5y&sI}YGc8m14RGYFnvxVqGY|!?W@|)_SKR+8)xvH3_HFEqv!kJa4owrI zqab<+HkFK?s{Lt+%J^rDEehW({qdu#a_VJl@GXvn$fe+etM3grjyyU-{OB{kM`&&e zZv(2Jo2yCq)%U8Zdo9uopJ_b1b1w29XzJ^K2K=?BJJXGXhC=MVy|!99IynG{rPBDa zg_7%nDiR<%Z>Dmpr?v}{5Z$9Y*Gk#=>-YD?+kXd#%bnAwu5QwAR9?M`q6SD;BN>vB zfq=6SAmsvYP;Oo$?P6zVrTsL|q%{6o0Dw?71GM3)PU0LKFKrqQ9Bu7EieJq2_d*)- zlToBdt?CB+`UD=INc>{brI*1I-@DDZ>y^6wxn^ttp9;NCeJ?VNlQuMgcJ6YR|b?71Ff* z`0?-!B^2UPw2hl9cX&sYL1W7`o9zDm5TJQ3BR-Rp$^u4ZT3LL0X;(~u#eQsaSL4mC z2feGS>!~3buHu)MhVJ)t&Cdy?Sm`Nh)g?c{m>e7$=fkvG`FCDB6mcf`2MfX`xi!nazv$;S|vj; zF+Gl{^Snsy`Sx|16pPyJQN8LX`nT^dvPi8nq=r#!qtDul z)-rwf%`gfoP0&}UCnQvPFa^zDd=vnG>UT2_U{_;Xq=1I6 z@1>8APqFnQb8~ZfK-MwEQu{fopFoh)Dk|Y}IyS-l(Jgl%@8ndlW;H`|PgfWICEv5e z#AJS*4HIddhy-wl|5vXUkEGnIJy@&qq+5@yE2Zr@k+KgCR~rD|!p2;!ANuxTb`Kb3 z$l}(y^nS@aZeP?eaOf?n*E#f$0?#Q(@LH0WPpmz>e8igLNyL+s(Mzb#wRTMd<_Jwf zWE62=ctJ~|ButM(()}J;i^Wl|2#PBzCJg+vZx=!3##+_7&(~WWM zn)dd$&!V?f>-p3}nN;eJCOKM`WL9jUKHilPj8Ws2`w5AE!TGT3*| z_a@`B{+X!Sq~d&&uTEuQy%4;Ebss{CBxOEkI9@uiwtavR17*$XID!kOmS7A4xrtKS z2?0}r`3Hl1#cpP@IGq*ThYz?bc?s;Xb5^cbx;N2n7mTb-%;iMLw%}?p)Mr1UUg&(` zTZq-r4%nL%bx)OKRcw62bQr$60|dSb{~@cYH zC)~In+>Cd+*81r}G}>e&eFRiuT@*F1R{KWAI!2xR{A69!CkGFB?Ojgg8&<7#VbXaz zZlNlws*a~Q1O5HWTGc`O^wi8!;u^WO#2YdAq~4a#XFL$BZjQ1^!et%jV|{7ZFTXziB^U zw&Gg3Ae(-dVIHn4Sw~p^)hq2Qzu2HK2MQz(M3IE zAEFyYRUnX8BG=bY2A0MTdl4P9D6+9MS7ci7Y!A9QN~!y7+9Vczov#}=fyO<$-b9a2 z+$imJ9yt?R(V?ZU@eQGviZ{EtLMH5I(3n-YLYg{;aqU`w(h)l>v6~6v0CYZkaj!o= zUYak=Xe|h=vCZ(%E1K`UynR!iK0&N6IpGr$Hd$F|aEp-a=672OnaP*CO{38~b`(3)=` z)e1QIpa(rs_$G}W9s77-ORa5M8Y8!Z5_Txm3$<|Mfe@+`F9ht30F`#0F%F05-|KC} z)w|`%a;Pvu5je#P|7KFoPoz>yF%YgDl&)l4e?7uH5%9Wl1klVx9Nt9sga zw24@L702V)9}Jroagdv)bMBTVLAwlxt%2eH7``_X^Reo^!|=!k9>hCj73K}vc?3{F zu*iM*9NA3O3q3idN8b{|jyLL>EjF~V^+I!5T?XzOuT(_{Qw9D<|C%zex1Op=4FY0L zvD%ZzT6z91chjOQw(XM&#nx1}hK!}Q>Ngl?q)fn-$kYbrVQH)g$B0QRqi}_GcML#Z z*;39{9DUq>PN*`n+VPVB(pE9cyW;yZ)`GIaaC&5GqO`bZkLPXkOqC#|PD~5O@zXD; z-^L0T`^#HJMs2W*bEv${2y5^<0r}np}|eAJtZ&4lcF12mr<_V`XJkE#@V!sfg94E9-(3 zIYbDP?oT1z{Vpo)TX}hTdx8EnZ;YKO4Q=Y&0OS%<$G#x_gB33LD$QNhCOSo_f(PX z{zRZ{0TlLN*7+&|n&K#9?vcpy=q10oFbN9z^5nJ2-V&K&J*p^%hoLGh4vaEGtLX@{gx;ut0;PseYjk_i|oAPoXm^ky_}Oa^n1w z=Kal0kkgsSNAyJ^y^Z?=FUXAdQUPV!q`ZI0HmpWUJo{i+!T81(UJGs0OEJzJV$kFm zJKQK)Z}9=MXQgU!bg_IS^`zfP(lLp?jiw~Ve@f(xq@tuOBBT8mzM8daQhEfxgD{Am zDN(DYDn99cJLfx>p8^=k2)r#dxCy0arw$o~y!>x?R8Cj_ccD?e?sB+YD`jr*KK`!s zBHt8&LP{IwOzfMl_m%mrM~pTiwAzo#@0RvR$EAv*YQbl24>q!tuP6Sk6IX*wWcpaW z(s2i0MZ7l=(=lvRK`gAtT|nr(4wcq&MS)6?#D$v5Ae0Al<2qtGTv(*y0jpg;Sl)RY zYOTG&MZvchP4Csid7RE+f$p1)7?3B$c0@6KzDLms;jb*(XP#rqG##8M$WL_xji6}_ z!HfSH2co5=RddC5FySGA6CeJ{3|!SgITeium6rky(dYS}(M3QBeP+6OFK+p5s<0yD z5W!Y1|4xz~E#Dfs3a3uTc*rW(KQ4vXP+#-CEdy1rG+7)89p$VxQRMCu1C%Q3vGD&~ zob~^pF81xjrz2)2^21UkTk{TC`Q-oelKOb7^nzE4nz1`ggd5s!PG4AZW!yY5?!PCL z`#;AjcVxfoi<47M^DTEZ>Yf7E}^QR=7@4H9q zI~E(EEGY5O<)+4?bKL{l$8THgv;SSUKXLu)UgBpFv;J0HCu+9jm=1;7^xWLTRr>Rk zJ5pMvNnepNQ2w1VjW>J3nUatB{3jKVcTzopw;d5eef!L)-6`#ay}|}=?*1I(yYDv+ zhOcqk>=Zs3e99^(Bq5;!1XzhXD#bmHioGW)+}awY;8~)XCUzgF-&)L8%07axu?MY9 zKN0or^%|~YNwKJ{PG>ZQxlaV)Ui zTG9fc{Pb``mW?`dR9c<~O7K|i2}nCw0rNR71d#hUUrB+&lF#$RV=4I*d0Z87g$z4^ z8nne_Lez??TC%eZ)+d{`BMWcaBNMR}`0oV0ZH(2u>>2nYjM#KVK3VFmpt$dO$vs-y zCmo%g-2j({`*#wkQchhRB?x6??6v=S=O)E`%K;WvGzh%0L=_QBwZwc zE0*sA*t72CtEWF<^gDe1Dj8|Er+E3|;A|-v@=!0J|#$%BhjC}2zjRuzWwe@weOkN(I&|#}i zP`&7t*PVH)X&OdGM39*(OF}?DObqebNU?@QU(^e|i#rAiH5LTyzM}vovB|iSU2Qk= z+6r}Ya*_ZNO10P43g%&U0Bn^USWjje+}LYU3!4EK3jE`}D2vN4I{n6hBh=F>mcrn?W%kUVjx6kH>x<#Q zOY$$5Gf(;mM@SFc@LE<7 ziYnv3{6jI_svou>QhIzaM0Z@CNFs%hape&nlBa|M?IQI)6wu3IYQXW1%|cs$fwuYN z_Nr}CZ}Pm09q)eiTT;bXz{16Qwbt2iD4+})#wDhI%PZ<0BO?#;=0=D^YxwPHL$2pg zd&aY^sYEX9N2Ti5Pdj(5-S|ra-ZkUzPb{YfXpRHf)_&`~=R9!S^|%v$vT$i;_H5-T z%I4YoX5zsZiYKe;GYP%#BjbmUgk$MyCWw|mBYgS#6%%4US7X~ZF!2694iH?udZ!F4 zNAau`>-zb)gan)hVh3O+u9$Twx{pz|GYA06DuB5eB7^ET>ZNfhP*tWUggU zB(dwyBApWtMjz+Ms;jso%mQ8?tJVhn-}b{M_I2fFThKaacBcOik% zS=N{k2jS7;<-EQ(*MHd6D5|pK@UGuay`;pj`+_$LYQ!H2c;YGRVLNk72J;B-yg#W@ z>MvhDmzDi!VFI{!^Oe!manP3=#`|f4LMI19+m}iCJ!Z9 zC#Z+H5i%ycD3ItvXS~!!kYC`FI~-{hF$lP;djI4?QZ6^F6euNkm|$|d0{u89I?@7f zjgW-~)50RWsT`1{_uY?%{M@Q}{Ik#YDCc&zTrJA3wr!s~6k?89RkH{PRQ-+$J8=ln z$*i3{RFgZxGs>8(n%|4jXQwd)(--6L`+niI^XjUq)O7v#(@Z|25Fty@`7y!hFo>VD zV`{J92gP+J8wtUkX6Lra>0sJR&yBm6)7ukzg7AYi zgnsXU!(qRD>OquhJFA9C6$B&O5CapEFXA5=;2DbziNdVVDi2L#wtjRbao6K!)iZpM zBFV*gvn=@-jrwT_Pjd$*<4nq~L=MP!20=xhRp72iQxV?MpZHP1gobJ+*P1Ml;^nqbM7VoE~NzS?YbmZ_rfdjW`U;)7)SUhMaIHdHk>{h!*tGpMQH-8*yyk=|7> zNKrZnqEwM$0RaW+y_bNBNGFH_kszobU7FHFhzNvUr1xGFgh+tUOQ-=tco+Y7-nldP z%l&dQ!yb}7$vL~{+27OmAq}LgoPAeAK?FE93w8=t@LfOu;lqbb>lccDZSl?yB(iH} z!%h{Gs4E_2CfjIduNW52I1$JS4s%duRL*TmnUX_@+gYZUWrKfsubF8YrFs_y9T-P8 zFbik_sh!Ty$cPLA(pZ2jb^Qh>Jb;70oAt9s!}3iJtGIBy>~cTJ?1XSZy`L+s6U#V& zqP05i@B@U*ae?AkI%LVsa)0uhY$&K36-z4dH)BezxNg~Dnvi>L{W{>UF6HOwA&=|# zbIC0%DH1?Vh{F8F(A7?>^2G>h^fJrl@W=2Ljw$D6wycUb)iwl$pu7cQ^8) zLq^SqaLlg~d){7`fTptt{oUQS0ow+c9|2+;+U>#m7m+yK@H4&rz*inHxbFd^@=E0h z*>Pl6PZaI&w>tJS(&SRsc;O|3q+~D$4$S$^sZOG#%gS`J))J&Id?5s~R}1x{`Gnck zjF7q2;rXch)&EBSx|Y#At)USoXBv~izCbeCN5*kUQ!HCN;W5}r@uwa@9I*wMF`4H= zg3#ybOfDzT@_jf1ublBQI4MBy4 zxq=s381l?2E~tRORJzb_tH3>+h}HspKG5qb*fik>Q+zDg-wl%>2@iRXtxdL; zeyG6vcL~%Ej#cj6J2V$$v<^^Xc@Umk{YoavCjrlV1F%431p^VDJdYIPF}~b_fN^$} zl+son;8II~(Da9Bex5V!sx>Hcyne~iLD@#V{om6oxbQd>Q zd9(ZBu4HCI>D141bgvgbC0<0TVg!&4uU}JoOrjYen@f2aTRt`r0Z)Z>5#lt7y$!NB zpic~cy$691d}v1%FW=_!FWm=xz^<0=y6U+4yca1V=&cteimET~tIa7{Jre?G>hCx> zdq&(dR&9i5Qo_P*{3NawbK9Phgs-s1F7~^h-Zc>QY@HLC7LAC#QM9b5bmr)obFsG| z`^S$V=8D0Rvpn(i4WVid#T!B@1nqXA+2nYYTS^rQ^l|HHNQ{aKJ2E{4k^w_#FG#dj zTKJ!5tn;OYAXTl|fLs9hus*2YD?+No>A@N6Dm10PLj1)l?wG##roS{GO-KPdp9ZvG ziu^6ird_7!l$56o?%#rkFopO|dp_raIVF>C=Hzti9AgtX&)~~w#Uv!!fH-iiCh5%k z>v5cJWTDIcb*ThXpVUgyFq4{J#`CE{Z?_;`g+P3ZMV~k+7b;h~x;d{4&g6K%Qrr#$0Qw(Zh@Qxsvtq1aHX#X=8rd8$# zUrvDGe>BPnx#~uS06VP$MGkLZRlj8zY@7SAMYpC}a{kxv%`{UzRi73xVBo%tXuHy4 z^R#M9fpq98`6c#Ztjcu>cjL1a(F8pzNDRC}fAyDZbIaXSrr+M7NezGBUa%t_ z<&}9n^vMWPx=S=M4f{SIlh(o5@-c%PKk^8(yk|xWG&SXb9SCG_8d=r>b8vPx$Er&T zXho}mVsth86@ovwNFb)H{8w#GN48#UvT8xj?|x}7)zCQu$z+nxy%9G_aZ4dwUr5VC z_-K;i5%WxEv?Jj5O{otAF5FZw`V#2pW0*Zwxn-BXj4B0suX>+@e}K^-`W@^a**f)p zg(v+j>&mS}KI$itFVn{keMrYPBr-C|8F?GJ2M#xQvRK2;u%H?eGM7lJQ`^}lM2k?u zRCci)emf-lN0VNB!VVi)jWmpuDf0V6KPg_SBYtL=eaXxJw#kaj*e}E+E|9l?MZC-d z_w%c~bMGF@T5|c;+zF51wQGht=}M+?NzFjR1EC6z=LtfSij zirA5wep0<#<>^g;Fj;oRA19e+lQ*mxnUhy)T&pGHhJ+D!msnfYrx=mXj!-QhyMEj4 zF4uzuZfnEGuMx=kDcwY0W6tgxWLFfEf$5UuW7N86v0)#_{GRojsTw|xXD2(+dCK8w z>`2usU>v37Ku}PXmBp&Oer`0j(ElBB84BI)!0L^VL^Rf7W3XL|l@`f@eGI%TE!c(Q z)9Zaj*9kcLm2$ox?21`cMWlSa0aXl4$}e8N6ms+k(XGYf3XCdCG zJeUyH*VUTw#fU6_PyVj*KRZWl^h!_4ApTmbPwo(cixhYO!PjV7YE~T^e?_05`t2C5 zKyqd=;%ug-aV_KKyUID}aw|A2ln~$^+R>GA84&Kkb7^$$_w5L5>_4kX9&t(U6}U?clAD;Em9i*!h!1WZpySt?f`?N7679hcsMBB!m1F<7ejX?V{>J3b>N3?-BdAA# zWmQ$h_rAMyden_-)C}#2K`>#?azlRzK*fwG-I!~V8S^ddWxc;WcEqVTlFFTND&@~e zM#rMhz;Z$Kv_G~5MyW@~J}I^Bl{1~#Zc7@Jf3VzcEyo(8E_$Z6?yN0ZA2?9XO=M{v z6|b$`aPcMT#2&*K7VP@v9xL0gUQpF1P!Y1wxzwZ!ME!S#>jja@_8(f3<05@Fwtuy} z%tlwABaxBi7Zx-Zu;P?*WY8F0yY4{zotphX0u5ni1plgQV%NQO=gP1yw^yJN1ELht zM3%`4;eCP@WxB{n#AhrArAv@&+@;CXrezvn&tIaACy*&aU*?#P9QQn)%r0RPY*mZB z$^Vy5-}{Wn6`BA;iu=k+(<0q599aSnQaw*T%|2ArDqSyS?wR21X;1;}l3k%G0K-f_d8Op7+<*J%=%JgAC?$_u{gpLmN~otkX%7OyWJP4dVH%SgEH zXYn%e$y;x8wMW+)b+iZX_ckW%V-1YWBdb$xLK?yNja(b#+_&05_h|6PlJU`ztYY*z z^J(Pixh`e>Zs>(K(gI%WRNDJj@B%6ZKU6BSs3GaZweD~AFk$_S=YCbe!YBvt z#TYB*#@9z!sr}gNv+F0(>ZpQ7AJ!%#_s_#FHbbbI%;El*-#gXv?lz7jqHeFb{N1}$ zf_-xXcSOI<>Yd%XcH2&KZSl}VQP&M|yuffIGqEk-%z*CFM2gfiHrGN= z=yuLvVpwyGXiLN8uZE7eZL}PW4+;m>*lVqs{Jf&Mjv7R1CI=?R*;D1kE7Poj)5i9@ z55|o)SRo2QQscl1bhCZ}ZTUVnM^dTq&q?G}7lTlu>j|0TNi{jZjqvW2+TlLwf&%wM z3BRohNqR`f;opdqqZ9q`(=RA&l!}p;yEN2!rlw{*Unbm|Ck5u&G*!O&8p7YE9c}|+ zH+kxC#^P0aE!yGvzoX4XJsCJFj&m8MSO_k2n3C*qmTyE?2J}_68CWn=4b3=QnPW?w#U)%$vc(n zx{@jJMIWr`z+ZVHWTmL0#cSaY&aZZN%=~Nnz;$#5IN|qTLd|$;4M`ttCs>x-KfiI> zYxifz7tv8YBuaYXH?<7>7f7k>u$!HH%@7L;il-9j}b3g zev!>o7b&{Gv69WyEiW*}P&B?7x_VwzA*Xg{{R*TpvF04$5rLHMHy1%`-IYZFQrzJ#YXD+DCLGpg&OzzW78dEG|1U&T(D~e>Sixf$(0cmnh$4K4TB_S~M;5w-27n^XU z!%Ae6IRc?=iUZ2p*PZx7KRC4Da#?ntPG9zvghiHpbxqv0B6)Y=X9 zh_wNj+B9|627vA974Ktop~ZHUy)S^Nq)}BD~aT z_n#i6{wJ#8Ug3md;zK^!^+@a8egkk8q|Jg?4c6C+IcgjQ)~IiUxKcVf-@3e3T)|rh z{JzSQa>8)srZcHm6M_wHG$6W8Bt#rk%$@yPyYmyf_BN3H0L3ibk=zK7>@2bw5hC?< zqn$yIV^`Mpr*0pFBi>@f;V~MJ&XdjMec^kBJVn>zjdAfO0oCih<;uSk{)}riEDZ6P zd4D2%UV)OC4io1zT4C+X$1+w{3wiZU7y)3T{xWr>EHriF0^ACHXK6^TV{=$#XO;Ie z9UcUoUeHxW<=S1oMArb(e;qPUKJLR*8B}o2yyB1y1G)G3)55-Dhsoux{qQVfLH!Eh zvz2p^DJaEkJ+XK5TZNw^8Q8pnYdhal0L;QpOfT9}w2n=^MctcRxcsiXT!5dbpU4|w zHPhJl*+8ug`jY*=xZBB+N5ya4*L};(yoAP&JLSA&I1b+R_ul7QHDSzm3e>d> z9$WmqkZbp3owNL~MGQz#MgA}FaAYMf^_wmvXG?Re1c$8iNt@_ikz91`q04>QpcLyf zJ5?A&{lq+i)x%`*RvojME;(D!o){jP%1s-WQo2<^$p{1 zwD9K7<7y%tZ+I1ht{%?ZeIJ$BvgUWIHrTt^4)p;5>i=3WkStE(@m3%9@s zb#9DWF)mF!2CH{?;bgg>dSVwjcq-5kkNNoct9{eRA(LnvVt*Xg79Ledpq?49L`k|va31keZqt!66zB0t4ZW!x(=hsXZ*fa~MmywMP!QaUo*>eC1 z(Zv`;FH~I&3Q(Y!!@mg9_4&=itPg+W(d^Wd=AEZSN|@I zgfl7X>Iv>5y7&LL){FG%jNReRQtrk$2oOZRrsRNYXnd7fp(*sXaBFuN3ziQvJqkM* zkNj_~wt83akr4H3N@Z^5D{F;6SMkiQ z>JV(K!etairR zzBvtAW$>|l1jLSmKf=W@v$M(TPV?=xwZdMy@T>3LDEUcb2yHS0OSBf^<0m;~CVp?` zP{NbsCgKsl|E9I?wWNc6>AqHLKqWYg+9UW4tqO7t4n^152>M0~canonK+0jawEAAd zH0*u=8(g81JkXC) zDmsa&VKrDil|0v)o)b9^v9zK>+!5rzq%?@jE{_dq%KZBi^sJifO1EW7J&j^_(21zv z7zYyUdLlG+AX}FL`ykfX1pDLzD{ZubWY()bcmLH1s<#54=dcA#6>eGOF3H$IuO{Fvg_qber4cJS~M%>v>m*! zu71oe#r|G$`l3(^Q4v*qJiHCP);Gtaq&yjoyzAkEaW7FBLde0_6|9ekJCdT^CdK^u zhp2$Zqz&8eTSC~j6eIO~E|`>B1UW8eVzB=fDo9ZUzP8(t!#@$(l=;?V5+{o=hFpSiFj{x!B?JW+KKjmJi+y)1mp z1+QsN>fg%3$8eoLMF8}->l}a4BHh>?m!F>21IxzADc3WDzDRj@Yt6Q4p#N(-^mP_h z{@Ax?;IJ)>OjLX02-i+ zm3lAHy9S_&QlIMSTdQenkmVSI)$1cIW#yE|QhfNJW8jy3i5e=?5!uaVoA63)2&1~p z2uXtTIY!_&o*$;?$*Nfe@)v%LXqp^=>aP*EU168t}g(EnANeZp7ECYSM6yNw$HUUxMg KXcVj4g#AB#toVEY diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index db9af2a791bd5e874d6220e6721f84a7fda0c17b..3f5321ad5e93b2ae4c6ca79ad662044c121cfdc7 100644 GIT binary patch literal 159869 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�Yx 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 L(wia)qwoJ0i5*rv literal 154044 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�RDs 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

9VTYbtP2;pK*PWLzGPQcV(`ssa`1Bp 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 LR+g%iFb@1b+zvtv diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 01a368a92f527d6c790edd14f1b7582022380f52..1be698b603cf958f83a032b584f7bf073cd0b5bd 100644 GIT binary patch literal 103293 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